winter/composer.json

90 lines
2.5 KiB
JSON
Raw Permalink Normal View History

2013-12-27 21:22:42 +11:00
{
"name": "october/october",
2019-08-15 09:39:49 -06:00
"description": "OctoberCMS",
2018-04-16 02:33:08 -06:00
"homepage": "https://octobercms.com",
2019-08-15 09:39:49 -06:00
"type": "project",
2013-12-27 21:22:42 +11:00
"keywords": ["october", "cms", "octobercms", "laravel"],
2015-07-25 13:23:21 +10:00
"license": "MIT",
2013-12-27 21:27:05 +11:00
"authors": [
{
"name": "Alexey Bobkov",
2014-05-14 23:21:18 +10:00
"email": "aleksey.bobkov@gmail.com",
"role": "Co-founder"
2013-12-27 21:27:05 +11:00
},
{
"name": "Samuel Georges",
2014-05-14 23:21:18 +10:00
"email": "daftspunky@gmail.com",
"role": "Co-founder"
2018-04-16 02:33:08 -06:00
},
{
"name": "Luke Towers",
"email": "octobercms@luketowers.ca",
"homepage": "https://luketowers.ca",
"role": "Maintainer"
2013-12-27 21:27:05 +11:00
}
],
2014-05-14 23:21:18 +10:00
"support": {
"issues": "https://github.com/octobercms/october/issues",
2018-04-16 02:33:08 -06:00
"forum": "https://octobercms.com/forum/",
"docs": "https://octobercms.com/docs/",
2014-05-14 23:21:18 +10:00
"irc": "irc://irc.freenode.net/october",
"source": "https://github.com/octobercms/october"
},
2013-12-27 21:22:42 +11:00
"require": {
"php": ">=7.0.8",
"ext-mbstring": "*",
"ext-openssl": "*",
2017-08-31 20:57:00 +10:00
"october/rain": "~1.0",
"october/system": "~1.0",
"october/backend": "~1.0",
"october/cms": "~1.0",
"laravel/framework": "5.5.*",
"wikimedia/composer-merge-plugin": "dev-master"
2013-12-27 21:22:42 +11:00
},
"require-dev": {
"fzaninotto/faker": "~1.7",
"phpunit/phpunit": "~6.5",
"phpunit/phpunit-selenium": "~1.2",
"meyfa/phpunit-assert-gd": "1.1.0",
"squizlabs/php_codesniffer": "3.*",
"jakub-onderka/php-parallel-lint": "^1.0"
},
2014-07-28 23:55:46 +01:00
"autoload-dev": {
2013-12-27 21:22:42 +11:00
"classmap": [
"tests/concerns/InteractsWithAuthentication.php",
"tests/fixtures/backend/models/UserFixture.php",
"tests/TestCase.php",
"tests/UiTestCase.php",
"tests/PluginTestCase.php"
2014-05-08 20:41:17 +10:00
]
2013-12-27 21:22:42 +11:00
},
2014-11-21 17:39:51 +11:00
"scripts": {
2013-12-27 21:22:42 +11:00
"post-create-project-cmd": [
"php artisan key:generate",
"php artisan package:discover"
],
"post-update-cmd": [
"php artisan october:util set build",
"php artisan package:discover"
2013-12-27 21:22:42 +11:00
]
},
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.0.8"
}
2013-12-27 21:22:42 +11:00
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"merge-plugin": {
"include": [
"plugins/*/*/composer.json"
],
"recurse": true,
"replace": false,
"merge-dev": false
}
}
2013-12-27 21:22:42 +11:00
}