1
0
mirror of https://github.com/flarum/core.git synced 2025-07-20 00:01:17 +02:00

Add more info to composer.json

This commit is contained in:
Toby Zerner
2015-10-11 11:18:30 +10:30
parent a48f396649
commit ae3a0d2ef3

View File

@@ -1,12 +1,24 @@
{ {
"name": "flarum/core", "name": "flarum/core",
"description": "", "description": "Delightfully simple forum software.",
"keywords": ["forum", "discussion"],
"homepage": "http://flarum.org",
"license": "MIT",
"authors": [ "authors": [
{ {
"name": "Toby Zerner", "name": "Toby Zerner",
"email": "toby@flarum.org" "email": "toby.zerner@gmail.com"
},
{
"name": "Franz Liedke",
"email": "franz.liedke@gmail.com"
} }
], ],
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/core",
"docs": "http://flarum.org/docs"
},
"require": { "require": {
"php": ">=5.5.9", "php": ">=5.5.9",
"illuminate/bus": "5.1.*", "illuminate/bus": "5.1.*",
@@ -59,6 +71,6 @@
}, },
"scripts": { "scripts": {
"test": "vendor/bin/phpunit -c tests/phpunit.xml", "test": "vendor/bin/phpunit -c tests/phpunit.xml",
"style": "phpcs --standard=PSR2 -np src" "style": "vendor/bin/phpcs --standard=PSR2 -np src"
} }
} }