mirror of
https://github.com/flarum/framework.git
synced 2024-11-24 06:19:58 +08:00
db7a03fbe5
This will make it much easier for extension developers (and also less error-prone) to create migrations for things like creating tables, renaming columns and so on...
85 lines
2.5 KiB
JSON
85 lines
2.5 KiB
JSON
{
|
|
"name": "flarum/core",
|
|
"description": "Delightfully simple forum software.",
|
|
"keywords": ["forum", "discussion"],
|
|
"homepage": "http://flarum.org",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Toby Zerner",
|
|
"email": "toby.zerner@gmail.com"
|
|
},
|
|
{
|
|
"name": "Franz Liedke",
|
|
"email": "franz@develophp.org"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/flarum/core/issues",
|
|
"source": "https://github.com/flarum/core",
|
|
"docs": "http://flarum.org/docs"
|
|
},
|
|
"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.31",
|
|
"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.*",
|
|
"league/flysystem": "^1.0.11",
|
|
"league/oauth2-client": "~1.0",
|
|
"tobscure/json-api": "^0.2.0",
|
|
"oyejorge/less.php": "~1.5",
|
|
"intervention/image": "^2.3.0",
|
|
"s9e/text-formatter": "^0.4.8",
|
|
"psr/http-message": "^1.0",
|
|
"zendframework/zend-diactoros": "^1.1",
|
|
"zendframework/zend-stratigility": "^1.1",
|
|
"nikic/fast-route": "^0.6",
|
|
"dflydev/fig-cookies": "^1.0",
|
|
"symfony/console": "^2.7",
|
|
"symfony/http-foundation": "^2.7",
|
|
"symfony/yaml": "^2.7",
|
|
"symfony/translation": "^2.7",
|
|
"doctrine/dbal": "^2.5",
|
|
"monolog/monolog": "^1.16.0",
|
|
"franzl/whoops-middleware": "^0.2.0",
|
|
"matthiasmullie/minify": "^1.3"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "^0.9.4",
|
|
"squizlabs/php_codesniffer": "2.*",
|
|
"phpunit/phpunit": "^4.8"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Flarum\\": "src/"
|
|
},
|
|
"files": [
|
|
"src/helpers.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit -c tests/phpunit.xml",
|
|
"style": "vendor/bin/phpcs --standard=PSR2 -np src"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "0.1.x-dev"
|
|
}
|
|
}
|
|
}
|