framework/composer.json

55 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "flarum/core",
"description": "",
"authors": [
{
"name": "Toby Zerner",
"email": "toby@flarum.org"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/bus": "5.1.*",
"illuminate/cache": "5.1.*",
"illuminate/config": "5.1.*",
"illuminate/container": "5.1.*",
"illuminate/contracts": "5.1.*",
"illuminate/database": "5.1.*",
"illuminate/events": "5.1.*",
"illuminate/filesystem": "5.1.*",
"illuminate/hashing": "5.1.*",
"illuminate/mail": "5.1.*",
"illuminate/support": "5.1.*",
"illuminate/validation": "5.1.*",
"illuminate/view": "5.1.*",
2015-08-25 18:02:15 +08:00
"league/flysystem": "^1.0.11",
2015-08-12 06:23:27 +08:00
"tobscure/json-api": "^0.1.1",
"oyejorge/less.php": "~1.5",
"intervention/image": "^2.3.0",
2015-09-14 17:15:49 +08:00
"s9e/text-formatter": "^0.3.2",
"psr/http-message": "^1.0",
"zendframework/zend-diactoros": "^1.1",
"nikic/fast-route": "^0.6",
2015-08-13 08:42:39 +08:00
"dflydev/fig-cookies": "^1.0",
2015-08-17 13:02:38 +08:00
"symfony/console": "^2.7",
"symfony/yaml": "^2.7",
"doctrine/dbal": "^2.5"
},
"require-dev": {
2015-07-16 05:47:30 +08:00
"squizlabs/php_codesniffer": "2.*",
"phpspec/phpspec": "^2.2"
},
"autoload": {
"psr-4": {
"Flarum\\": "src/"
},
"files": [
"src/helpers.php"
]
2015-08-30 20:59:10 +08:00
},
"scripts": {
"test": "phpspec run",
"style": "phpcs --standard=PSR2 -np src"
}
}