2013-12-27 10:22:42 +00:00
|
|
|
{
|
|
|
|
|
"name": "october/october",
|
2019-08-15 15:39:49 +00:00
|
|
|
"description": "OctoberCMS",
|
2018-04-16 08:33:08 +00:00
|
|
|
"homepage": "https://octobercms.com",
|
2019-08-15 15:39:49 +00:00
|
|
|
"type": "project",
|
2013-12-27 10:22:42 +00:00
|
|
|
"keywords": ["october", "cms", "octobercms", "laravel"],
|
2015-07-25 03:23:21 +00:00
|
|
|
"license": "MIT",
|
2013-12-27 10:27:05 +00:00
|
|
|
"authors": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Alexey Bobkov",
|
2014-05-14 13:21:18 +00:00
|
|
|
"email": "aleksey.bobkov@gmail.com",
|
|
|
|
|
"role": "Co-founder"
|
2013-12-27 10:27:05 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Samuel Georges",
|
2014-05-14 13:21:18 +00:00
|
|
|
"email": "daftspunky@gmail.com",
|
|
|
|
|
"role": "Co-founder"
|
2018-04-16 08:33:08 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Luke Towers",
|
|
|
|
|
"email": "octobercms@luketowers.ca",
|
|
|
|
|
"homepage": "https://luketowers.ca",
|
|
|
|
|
"role": "Maintainer"
|
2013-12-27 10:27:05 +00:00
|
|
|
}
|
|
|
|
|
],
|
2014-05-14 13:21:18 +00:00
|
|
|
"support": {
|
|
|
|
|
"issues": "https://github.com/octobercms/october/issues",
|
2018-04-16 08:33:08 +00:00
|
|
|
"forum": "https://octobercms.com/forum/",
|
|
|
|
|
"docs": "https://octobercms.com/docs/",
|
2014-05-14 13:21:18 +00:00
|
|
|
"irc": "irc://irc.freenode.net/october",
|
2020-01-21 00:50:44 +00:00
|
|
|
"chat": "https://discord.gg/gEKgwSZ",
|
2014-05-14 13:21:18 +00:00
|
|
|
"source": "https://github.com/octobercms/october"
|
|
|
|
|
},
|
2013-12-27 10:22:42 +00:00
|
|
|
"require": {
|
2020-01-19 08:28:20 +00:00
|
|
|
"php": "^7.2",
|
2017-05-12 23:04:22 +00:00
|
|
|
"ext-mbstring": "*",
|
|
|
|
|
"ext-openssl": "*",
|
2020-01-27 18:06:19 +00:00
|
|
|
"october/rain": "dev-wip/laravel-6 as 1.0",
|
|
|
|
|
"october/system": "dev-wip/laravel-6",
|
|
|
|
|
"october/backend": "dev-wip/laravel-6",
|
|
|
|
|
"october/cms": "dev-wip/laravel-6",
|
|
|
|
|
"laravel/framework": "~6.0",
|
2017-06-06 15:28:50 +00:00
|
|
|
"wikimedia/composer-merge-plugin": "dev-master"
|
2013-12-27 10:22:42 +00:00
|
|
|
},
|
2015-03-02 09:18:24 +00:00
|
|
|
"require-dev": {
|
2020-01-19 08:28:20 +00:00
|
|
|
"fzaninotto/faker": "^1.9",
|
|
|
|
|
"phpunit/phpunit": "^8.0|^9.0",
|
|
|
|
|
"dms/phpunit-arraysubset-asserts": "^0.1.0",
|
|
|
|
|
"meyfa/phpunit-assert-gd": "^2.0",
|
2019-06-23 23:38:41 +00:00
|
|
|
"squizlabs/php_codesniffer": "3.*",
|
2020-02-03 04:21:04 +00:00
|
|
|
"jakub-onderka/php-parallel-lint": "^1.0",
|
|
|
|
|
"laravel/dusk": "^5.8"
|
2015-03-02 09:18:24 +00:00
|
|
|
},
|
2014-07-28 22:55:46 +00:00
|
|
|
"autoload-dev": {
|
2020-02-13 07:39:42 +00:00
|
|
|
"classmap": [
|
|
|
|
|
"tests/concerns/InteractsWithAuthentication.php",
|
|
|
|
|
"tests/fixtures/backend/models/UserFixture.php",
|
|
|
|
|
"tests/TestCase.php",
|
|
|
|
|
"tests/UiTestCase.php",
|
|
|
|
|
"tests/PluginTestCase.php"
|
|
|
|
|
]
|
2013-12-27 10:22:42 +00:00
|
|
|
},
|
2014-11-21 06:39:51 +00:00
|
|
|
"scripts": {
|
2013-12-27 10:22:42 +00:00
|
|
|
"post-create-project-cmd": [
|
2019-04-19 22:38:55 +00:00
|
|
|
"php artisan key:generate",
|
|
|
|
|
"php artisan package:discover"
|
2017-07-14 12:01:11 +00:00
|
|
|
],
|
|
|
|
|
"post-update-cmd": [
|
2019-04-19 22:38:55 +00:00
|
|
|
"php artisan october:util set build",
|
|
|
|
|
"php artisan package:discover"
|
2020-01-20 08:15:20 +00:00
|
|
|
],
|
|
|
|
|
"test": [
|
|
|
|
|
"phpunit --stop-on-failure --prepend ./vendor/october/rain/src/Support/helpers.php"
|
|
|
|
|
],
|
|
|
|
|
"lint": [
|
|
|
|
|
"parallel-lint --exclude vendor --exclude storage --exclude tests/fixtures/plugins/testvendor/goto/Plugin.php ."
|
|
|
|
|
],
|
|
|
|
|
"sniff": [
|
|
|
|
|
"phpcs --colors -nq --report=\"full\" --extensions=\"php\""
|
2013-12-27 10:22:42 +00:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"config": {
|
2020-01-19 08:28:20 +00:00
|
|
|
"preferred-install": "dist"
|
2013-12-27 10:22:42 +00:00
|
|
|
},
|
2014-06-27 08:00:25 +00:00
|
|
|
"minimum-stability": "dev",
|
2016-02-22 14:12:37 +00:00
|
|
|
"prefer-stable": true,
|
|
|
|
|
"extra": {
|
|
|
|
|
"merge-plugin": {
|
|
|
|
|
"include": [
|
|
|
|
|
"plugins/*/*/composer.json"
|
|
|
|
|
],
|
|
|
|
|
"recurse": true,
|
|
|
|
|
"replace": false,
|
|
|
|
|
"merge-dev": false
|
2020-02-03 04:21:04 +00:00
|
|
|
},
|
|
|
|
|
"laravel": {
|
|
|
|
|
"dont-discover": [
|
|
|
|
|
"laravel/dusk"
|
|
|
|
|
]
|
2016-06-11 03:36:54 +00:00
|
|
|
}
|
2016-02-22 14:12:37 +00:00
|
|
|
}
|
2013-12-27 10:22:42 +00:00
|
|
|
}
|