mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
94 lines
2.8 KiB
JSON
94 lines
2.8 KiB
JSON
{
|
|
"name": "october/october",
|
|
"description": "OctoberCMS",
|
|
"homepage": "https://octobercms.com",
|
|
"type": "project",
|
|
"keywords": ["october", "cms", "octobercms", "laravel"],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Alexey Bobkov",
|
|
"email": "aleksey.bobkov@gmail.com",
|
|
"role": "Co-founder"
|
|
},
|
|
{
|
|
"name": "Samuel Georges",
|
|
"email": "daftspunky@gmail.com",
|
|
"role": "Co-founder"
|
|
},
|
|
{
|
|
"name": "Luke Towers",
|
|
"email": "octobercms@luketowers.ca",
|
|
"homepage": "https://luketowers.ca",
|
|
"role": "Maintainer"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/octobercms/october/issues",
|
|
"forum": "https://octobercms.com/forum/",
|
|
"docs": "https://octobercms.com/docs/",
|
|
"irc": "irc://irc.freenode.net/october",
|
|
"source": "https://github.com/octobercms/october"
|
|
},
|
|
"require": {
|
|
"php": "^7.2",
|
|
"ext-mbstring": "*",
|
|
"ext-openssl": "*",
|
|
"october/rain": "dev-wip/laravel-6",
|
|
"laravel/framework": "^6.0",
|
|
"wikimedia/composer-merge-plugin": "dev-master"
|
|
},
|
|
"require-dev": {
|
|
"fzaninotto/faker": "^1.9",
|
|
"phpunit/phpunit": "^8.0|^9.0",
|
|
"phpunit/phpunit-selenium": "dev-master",
|
|
"dms/phpunit-arraysubset-asserts": "^0.1.0",
|
|
"meyfa/phpunit-assert-gd": "^2.0",
|
|
"squizlabs/php_codesniffer": "3.*",
|
|
"jakub-onderka/php-parallel-lint": "^1.0"
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/concerns/InteractsWithAuthentication.php",
|
|
"tests/fixtures/backend/models/UserFixture.php",
|
|
"tests/TestCase.php",
|
|
"tests/UiTestCase.php",
|
|
"tests/PluginTestCase.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"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"
|
|
],
|
|
"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\""
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"extra": {
|
|
"merge-plugin": {
|
|
"include": [
|
|
"plugins/*/*/composer.json"
|
|
],
|
|
"recurse": true,
|
|
"replace": false,
|
|
"merge-dev": false
|
|
}
|
|
}
|
|
}
|