mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 09:41:49 +08:00
d3606b7f7e
This fixes some minor issues with emojis working correctly in the dropdown, but not when rendered in the live preview or from the server.
84 lines
2.4 KiB
JSON
84 lines
2.4 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",
|
|
"dflydev/fig-cookies": "^1.0.2",
|
|
"doctrine/dbal": "^2.5",
|
|
"fortawesome/font-awesome": "^4.6",
|
|
"franzl/whoops-middleware": "^0.4.0",
|
|
"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.*",
|
|
"intervention/image": "^2.3.0",
|
|
"league/flysystem": "^1.0.11",
|
|
"league/oauth2-client": "~1.0",
|
|
"matthiasmullie/minify": "^1.3",
|
|
"monolog/monolog": "^1.16.0",
|
|
"nikic/fast-route": "^0.6",
|
|
"oyejorge/less.php": "~1.5",
|
|
"psr/http-message": "^1.0",
|
|
"symfony/console": "^2.7",
|
|
"symfony/http-foundation": "^2.7",
|
|
"symfony/translation": "^2.7",
|
|
"symfony/yaml": "^2.7",
|
|
"s9e/text-formatter": "^0.5.1",
|
|
"tobscure/json-api": "^0.3.0",
|
|
"zendframework/zend-diactoros": "^1.1",
|
|
"zendframework/zend-stratigility": "^1.1"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "^0.9.4",
|
|
"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"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "0.1.x-dev"
|
|
}
|
|
}
|
|
}
|