2013-12-27 10:22:42 +00:00
|
|
|
{
|
|
|
|
|
"name": "october/october",
|
2020-08-09 09:31:32 +00:00
|
|
|
"description": "October CMS",
|
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"
|
2013-12-27 10:27:05 +00:00
|
|
|
}
|
|
|
|
|
],
|
2014-05-14 13:21:18 +00:00
|
|
|
"support": {
|
2020-07-19 07:42:58 +00:00
|
|
|
"paid": "https://octobercms.com/premium-support",
|
2014-05-14 13:21:18 +00:00
|
|
|
"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
|
|
|
"source": "https://github.com/octobercms/october"
|
|
|
|
|
},
|
2013-12-27 10:22:42 +00:00
|
|
|
"require": {
|
2021-03-05 07:20:44 +00:00
|
|
|
"php": ">=7.2.9",
|
2020-09-07 03:43:20 +00:00
|
|
|
"october/rain": "1.1.*",
|
|
|
|
|
"october/system": "1.1.*",
|
|
|
|
|
"october/backend": "1.1.*",
|
|
|
|
|
"october/cms": "1.1.*",
|
2022-01-29 07:29:14 +00:00
|
|
|
"laravel/framework": "~6.0",
|
2022-02-11 09:55:33 +00:00
|
|
|
"franzose/laravel-smpp": "^1.4",
|
|
|
|
|
"predis/predis": "^1.1"
|
2013-12-27 10:22:42 +00:00
|
|
|
},
|
2015-03-02 09:18:24 +00:00
|
|
|
"require-dev": {
|
2020-11-03 01:51:23 +00:00
|
|
|
"phpunit/phpunit": "^8.4|^9.3.3",
|
|
|
|
|
"mockery/mockery": "~1.3.3|^1.4.2",
|
2020-02-27 09:02:52 +00:00
|
|
|
"fzaninotto/faker": "~1.9",
|
2019-06-23 23:38:41 +00:00
|
|
|
"squizlabs/php_codesniffer": "3.*",
|
2020-03-27 06:52:15 +00:00
|
|
|
"php-parallel-lint/php-parallel-lint": "^1.0",
|
2021-03-05 07:20:44 +00:00
|
|
|
"dms/phpunit-arraysubset-asserts": "^0.1.0|^0.2.1"
|
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",
|
2021-01-13 02:13:27 +00:00
|
|
|
"tests/PluginTestCase.php"
|
2020-02-13 07:39:42 +00:00
|
|
|
]
|
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": [
|
2020-09-02 06:48:08 +00:00
|
|
|
"php artisan october:version",
|
2019-04-19 22:38:55 +00:00
|
|
|
"php artisan package:discover"
|
2020-01-20 08:15:20 +00:00
|
|
|
],
|
|
|
|
|
"test": [
|
2020-02-27 09:02:52 +00:00
|
|
|
"phpunit --stop-on-failure"
|
2020-01-20 08:15:20 +00:00
|
|
|
],
|
|
|
|
|
"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": {
|
2022-09-02 03:05:18 +00:00
|
|
|
"preferred-install": "dist",
|
|
|
|
|
"allow-plugins": {
|
|
|
|
|
"composer/installers": true
|
|
|
|
|
}
|
2013-12-27 10:22:42 +00:00
|
|
|
},
|
2014-06-27 08:00:25 +00:00
|
|
|
"minimum-stability": "dev",
|
2021-03-12 23:44:47 +00:00
|
|
|
"prefer-stable": true
|
2013-12-27 10:22:42 +00:00
|
|
|
}
|