diff options
author | Maurice Svay <maurice@svay.com> | 2015-08-11 07:45:48 +0200 |
---|---|---|
committer | Maurice Svay <maurice@svay.com> | 2015-08-11 07:45:48 +0200 |
commit | e47418ee75998ae22a506b8fd596dbba58388266 (patch) | |
tree | ce1761ec71aed8ffcc06f6ef2d1ab7cdb8e48e67 /composer.json | |
parent | d477e4492370304f3db94ca6ccd831d161e16efd (diff) | |
parent | 6114a3b5c070a0247cd672702f8b81c0207012d4 (diff) | |
download | planet-e47418ee75998ae22a506b8fd596dbba58388266.tar planet-e47418ee75998ae22a506b8fd596dbba58388266.tar.gz planet-e47418ee75998ae22a506b8fd596dbba58388266.tar.bz2 planet-e47418ee75998ae22a506b8fd596dbba58388266.tar.xz planet-e47418ee75998ae22a506b8fd596dbba58388266.zip |
Merge pull request #74 from nashe/patch-composer
Package the project with Composer
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..32602f6 --- /dev/null +++ b/composer.json @@ -0,0 +1,31 @@ +{ + "name": "mauricesvay/moonmoon", + "description": "Moonmoon is a simple feed agregator.", + "homepage": "http://moonmoon.org/", + "type": "project", + "license": "BSD", + "authors": [ + { + "name": "Maurice Svay", + "email": "maurice@svay.com" + } + ], + "minimum-stability": "stable", + "require": { + "simplepie/simplepie": "1.3.1", + "php": ">= 5.4", + "mustangostang/spyc": "0.5.1" + }, + "require-dev": { + "codeception/codeception": "2.1", + "guzzlehttp/guzzle": "5.*" + }, + "scripts": { + "test": "./vendor/bin/codecept" + }, + "autoload": { + "psr-4": { + "": "app/classes" + } + } +} |