framework/composer.json

113 lines
3.5 KiB
JSON
Raw Normal View History

{
"name": "flarum/core",
2015-10-11 08:48:30 +08:00
"description": "Delightfully simple forum software.",
"keywords": ["forum", "discussion"],
"homepage": "https://flarum.org/",
2015-10-11 08:48:30 +08:00
"license": "MIT",
"authors": [
{
"name": "Toby Zerner",
2015-10-11 08:48:30 +08:00
"email": "toby.zerner@gmail.com"
},
{
"name": "Franz Liedke",
2015-10-14 13:50:42 +08:00
"email": "franz@develophp.org"
2019-09-16 16:37:51 +08:00
},
{
"name": "Daniel Klabbers",
"email": "daniel@klabbers.email"
}
],
2015-10-11 08:48:30 +08:00
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/core",
"docs": "https://flarum.org/docs/"
2015-10-11 08:48:30 +08:00
},
"require": {
"php": ">=7.1",
"axy/sourcemap": "^0.1.4",
"components/font-awesome": "5.9.*",
"dflydev/fig-cookies": "^1.0.2",
"doctrine/dbal": "^2.7",
2016-04-18 09:55:40 +08:00
"franzl/whoops-middleware": "^0.4.0",
2018-12-20 05:50:52 +08:00
"illuminate/bus": "5.7.*",
"illuminate/cache": "5.7.*",
"illuminate/config": "5.7.*",
"illuminate/container": "5.7.*",
"illuminate/contracts": "5.7.*",
"illuminate/database": "5.7.*",
"illuminate/events": "5.7.*",
"illuminate/filesystem": "5.7.*",
"illuminate/hashing": "5.7.*",
"illuminate/mail": "5.7.*",
"illuminate/queue": "5.7.*",
2018-12-20 05:50:52 +08:00
"illuminate/session": "5.7.*",
"illuminate/support": "5.7.*",
"illuminate/validation": "5.7.*",
"illuminate/view": "5.7.*",
"intervention/image": "^2.3.0",
"laminas/laminas-diactoros": "^1.8.4",
"laminas/laminas-httphandlerrunner": "^1.0",
"laminas/laminas-stratigility": "^3.0",
"laminas/laminas-zendframework-bridge": "^1.0",
2015-08-25 18:02:15 +08:00
"league/flysystem": "^1.0.11",
"matthiasmullie/minify": "^1.3",
"middlewares/base-path": "^1.1",
"middlewares/base-path-router": "^0.2.1",
"middlewares/request-handler": "^1.2",
"monolog/monolog": "^1.16.0",
"nikic/fast-route": "^0.6",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
2020-02-25 05:46:12 +08:00
"s9e/text-formatter": "^2.3.6",
2017-12-14 08:00:16 +08:00
"symfony/config": "^3.3",
"symfony/console": "^4.2",
"symfony/event-dispatcher": "^4.3.2",
2017-10-05 19:39:41 +08:00
"symfony/translation": "^3.3",
"symfony/yaml": "^3.3",
"tobscure/json-api": "^0.3.0",
"wikimedia/less.php": "^2.0"
},
"require-dev": {
2019-07-06 07:49:55 +08:00
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"Flarum\\": "src/"
},
"files": [
"src/helpers.php"
]
2015-08-30 20:59:10 +08:00
},
"autoload-dev": {
"psr-4": {
"Flarum\\Tests\\": "tests/"
}
},
2018-06-02 21:04:19 +08:00
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"scripts": {
"test": [
"@test:unit",
"@test:integration"
],
"test:unit": "phpunit -c tests/phpunit.unit.xml",
"test:integration": "phpunit -c tests/phpunit.integration.xml",
"test:setup": "@php tests/integration/setup.php"
},
"scripts-descriptions": {
"test": "Runs all tests.",
"test:unit": "Runs all unit tests.",
"test:integration": "Runs all integration tests.",
"test:setup": "Sets up a database for use with integration tests. Execute this only once."
}
}