mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
# Conflicts: # .github/workflows/code-quality-pr.yaml # .github/workflows/code-quality-push.yaml # .github/workflows/tests.yml # README.md # composer.json # modules/backend/behaviors/ImportExportController.php # modules/backend/behaviors/ReorderController.php # modules/backend/composer.json # modules/backend/models/ExportModel.php # modules/cms/ServiceProvider.php # modules/cms/classes/Asset.php # modules/cms/classes/CmsObject.php # modules/cms/classes/CmsObjectCollection.php # modules/cms/composer.json # modules/system/ServiceProvider.php # modules/system/aliases.php # modules/system/assets/js/lang/lang.es.js # modules/system/assets/js/lang/lang.it.js # modules/system/assets/js/lang/lang.zh-tw.js # modules/system/assets/ui/storm-min.js # modules/system/classes/CombineAssets.php # modules/system/classes/ErrorHandler.php # modules/system/classes/SystemController.php # modules/system/classes/UpdateManager.php # modules/system/composer.json # modules/system/console/WinterFresh.php # modules/system/console/WinterUtil.php # modules/system/controllers/updates/_list_toolbar.htm # modules/system/providers.php # tests/UiTestCase.php # tests/functional/backend/AuthTest.php # tests/functional/phpunit.xml # tests/unit/backend/classes/NavigationManagerTest.php # tests/unit/cms/classes/CmsObjectTest.php # tests/unit/cms/classes/ControllerTest.php # tests/unit/cms/classes/ThemeTest.php # tests/unit/plugins/database/PluginModelTest.php # tests/unit/plugins/database/ValidationModelTest.php # tests/unit/system/console/WinterEnvTest.php
85 lines
2.6 KiB
JSON
85 lines
2.6 KiB
JSON
{
|
|
"name": "wintercms/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/storm": "dev-develop as 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\""
|
|
]
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"extra": {
|
|
"merge-plugin": {
|
|
"include": [
|
|
"plugins/*/*/composer.json"
|
|
],
|
|
"recurse": true,
|
|
"replace": false,
|
|
"merge-dev": false
|
|
}
|
|
}
|
|
}
|