1
0
mirror of https://github.com/flarum/core.git synced 2025-01-17 22:29:15 +01:00
php-flarum/composer.json

89 lines
2.6 KiB
JSON
Raw Normal View History

{
"name": "flarum/core",
2015-10-11 11:18:30 +10:30
"description": "Delightfully simple forum software.",
"keywords": ["forum", "discussion"],
"homepage": "http://flarum.org",
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
2015-10-11 11:18:30 +10:30
"email": "toby.zerner@gmail.com"
},
{
"name": "Franz Liedke",
2015-10-14 07:50:42 +02:00
"email": "franz@develophp.org"
}
],
2015-10-11 11:18:30 +10:30
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/core",
"docs": "http://flarum.org/docs"
},
"require": {
"php": ">=7.1",
"axy/sourcemap": "^0.1.4",
2018-06-02 15:04:19 +02:00
"components/font-awesome": "^5.0.6",
"dflydev/fig-cookies": "^1.0.2",
"doctrine/dbal": "^2.7",
2016-04-18 10:55:40 +09:00
"franzl/whoops-middleware": "^0.4.0",
2017-10-05 13:39:41 +02:00
"illuminate/bus": "5.5.*",
"illuminate/cache": "5.5.*",
"illuminate/config": "5.5.*",
"illuminate/container": "5.5.*",
"illuminate/contracts": "5.5.*",
"illuminate/database": "5.5.*",
"illuminate/events": "5.5.*",
"illuminate/filesystem": "5.5.*",
"illuminate/hashing": "5.5.*",
"illuminate/mail": "5.5.*",
"illuminate/session": "5.5.*",
2017-10-05 13:39:41 +02:00
"illuminate/support": "5.5.*",
"illuminate/validation": "5.5.*",
"illuminate/view": "5.5.*",
"intervention/image": "^2.3.0",
2015-08-25 19:32:15 +09:30
"league/flysystem": "^1.0.11",
2015-12-05 15:25:10 +10:30
"league/oauth2-client": "~1.0",
"matthiasmullie/minify": "^1.3",
"monolog/monolog": "^1.16.0",
"nikic/fast-route": "^0.6",
"oyejorge/less.php": "^1.7",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"s9e/text-formatter": "^1.2.0",
2017-12-14 01:00:16 +01:00
"symfony/config": "^3.3",
2017-10-05 13:39:41 +02:00
"symfony/console": "^3.3",
"symfony/http-foundation": "^3.3",
"symfony/translation": "^3.3",
"symfony/yaml": "^3.3",
2016-03-31 20:02:42 +10:30
"tobscure/json-api": "^0.3.0",
"zendframework/zend-diactoros": "^1.7",
"zendframework/zend-stratigility": "^3.0"
},
"require-dev": {
"mockery/mockery": "^0.9.4",
2017-10-05 13:39:41 +02:00
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"Flarum\\": "src/"
},
"files": [
"src/helpers.php"
]
2015-08-30 14:59:10 +02:00
},
"autoload-dev": {
"psr-4": {
"Flarum\\Tests\\": "tests/"
}
},
2018-06-02 15:04:19 +02:00
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}