1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Initialized composer.json

This commit is contained in:
Nick Liu
2018-11-06 08:03:40 -06:00
parent 15c97cf73a
commit 7269c80468
3 changed files with 51 additions and 3 deletions

13
.gitignore vendored
View File

@@ -1,11 +1,20 @@
# Ignore PhpStorm IDE files
# Ignore IDE files
.idea
.project
composer.phar
# Ignore third-party files
phpDocumentor.phar
e107_handlers/vendor/
# Ignore user files
.htaccess
e107.htaccess
e107_config.php
e107_config_*.php
e107_media/*
e107_system/*
e107InstallLog.log
/.settings
e107_core/override
test/*
@@ -15,5 +24,3 @@ phpunit/
# Ignore Vim swap files
*.swp
*.swo
e107.htaccess
e107InstallLog.log

22
composer.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "e107inc/e107",
"description": "e107 is a free (open-source) content management system which allows you to easily manage and publish your content online. Developers can save time in building websites and powerful online applications. Users can avoid programming completely! Blogs, Websites, Intranets - e107 does it all.",
"type": "project",
"keywords": ["e107", "cms"],
"homepage": "https://e107.org/",
"readme": "README.md",
"license": "GPL-3.0-or-later",
"support": {
"issues": "https://github.com/e107inc/e107/issues",
"forum": "https://e107help.org/",
"wiki": "https://github.com/e107inc/e107/wiki",
"irc": "https://gitter.im/e107inc/e107",
"source": "https://github.com/e107inc/e107"
},
"require": {
"php": ">=5.6"
},
"config": {
"vendor-dir": "e107_handlers/vendor"
}
}

19
composer.lock generated Normal file
View File

@@ -0,0 +1,19 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "1dadee7abff6964f19b82dc2c88be589",
"packages": [],
"packages-dev": [],
"aliases": [],
"minimum-stability": "stable",
"stability-flags": [],
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
"php": ">=5.6"
},
"platform-dev": []
}