From 7269c804688d26b1f6b9e690102bcfce167ff285 Mon Sep 17 00:00:00 2001 From: Nick Liu Date: Tue, 6 Nov 2018 08:03:40 -0600 Subject: [PATCH] Initialized composer.json --- .gitignore | 13 ++++++++++--- composer.json | 22 ++++++++++++++++++++++ composer.lock | 19 +++++++++++++++++++ 3 files changed, 51 insertions(+), 3 deletions(-) create mode 100644 composer.json create mode 100644 composer.lock diff --git a/.gitignore b/.gitignore index 4ec907cd9..0c0a76191 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/composer.json b/composer.json new file mode 100644 index 000000000..4d3dd6ce2 --- /dev/null +++ b/composer.json @@ -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" + } +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 000000000..474d9469a --- /dev/null +++ b/composer.lock @@ -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": [] +}