mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
88 lines
2.6 KiB
JSON
88 lines
2.6 KiB
JSON
{
|
|
"name": "winter/winter",
|
|
"description": "Free, open-source, self-hosted CMS platform based on the Laravel PHP Framework. Originally known as October CMS.",
|
|
"homepage": "https://wintercms.com",
|
|
"type": "project",
|
|
"keywords": ["winter", "cms", "wintercms", "laravel", "cmf"],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Alexey Bobkov",
|
|
"email": "aleksey.bobkov@gmail.com",
|
|
"role": "Original Author"
|
|
},
|
|
{
|
|
"name": "Samuel Georges",
|
|
"email": "daftspunky@gmail.com",
|
|
"role": "Original Author"
|
|
},
|
|
{
|
|
"name": "Luke Towers",
|
|
"email": "wintercms@luketowers.ca",
|
|
"role": "Lead Maintainer"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/wintercms/winter/issues",
|
|
"docs": "https://wintercms.github.io/docs/",
|
|
"discord": "https://discord.gg/D5MFSPH6Ux",
|
|
"source": "https://github.com/wintercms/winter"
|
|
},
|
|
"require": {
|
|
"php": ">=7.2.9",
|
|
"winter/system": "1.1.*",
|
|
"laravel/framework": "~6.0",
|
|
"wikimedia/composer-merge-plugin": "~2.0.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^8.4|^9.3.3",
|
|
"mockery/mockery": "~1.3.3|^1.4.2",
|
|
"fzaninotto/faker": "~1.9",
|
|
"squizlabs/php_codesniffer": "3.*",
|
|
"php-parallel-lint/php-parallel-lint": "^1.0",
|
|
"dms/phpunit-arraysubset-asserts": "^0.1.0|^0.2.1"
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/concerns/InteractsWithAuthentication.php",
|
|
"tests/fixtures/backend/models/UserFixture.php",
|
|
"tests/TestCase.php",
|
|
"tests/PluginTestCase.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-create-project-cmd": [
|
|
"php artisan key:generate",
|
|
"php artisan package:discover"
|
|
],
|
|
"post-update-cmd": [
|
|
"php artisan winter:version",
|
|
"php artisan package:discover"
|
|
],
|
|
"test": [
|
|
"phpunit --stop-on-failure"
|
|
],
|
|
"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
|
|
}
|
|
}
|
|
}
|