ORIENT/composer.json

104 lines
3.1 KiB
JSON
Raw Normal View History

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"
2018-04-16 08:33:08 +00:00
},
{
"name": "Luke Towers",
"email": "octobercms@luketowers.ca",
"homepage": "https://luketowers.ca",
2018-04-16 08:33:08 +00:00
"role": "Maintainer"
2013-12-27 10:27:05 +00:00
}
],
2014-05-14 13:21:18 +00:00
"support": {
"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"
},
"repositories": [
{
"type":"vcs",
"url":"https://github.com/octoberrain/composer-merge-plugin"
}
],
2013-12-27 10:22:42 +00:00
"require": {
2020-02-27 09:02:52 +00:00
"php": ">=7.2",
2020-09-07 03:43:20 +00:00
"october/rain": "1.1.*",
"october/system": "1.1.*",
"october/backend": "1.1.*",
"october/cms": "1.1.*",
"laravel/framework": "~6.0",
2023-02-27 04:39:19 +00:00
"wikimedia/composer-merge-plugin": "dev-feature/composer-v2 as 1.5.0",
"laravel/scout": "^8.6",
"meilisearch/meilisearch-laravel-scout": "^0.12.5",
"guzzlehttp/guzzle": "^7.5",
"php-http/guzzle7-adapter": "^1.0"
2013-12-27 10:22:42 +00:00
},
"require-dev": {
"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",
"squizlabs/php_codesniffer": "3.*",
"php-parallel-lint/php-parallel-lint": "^1.0",
2020-02-27 09:02:52 +00:00
"meyfa/phpunit-assert-gd": "^2.0.0",
"dms/phpunit-arraysubset-asserts": "^0.1.0"
},
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/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": [
"php artisan key:generate",
"php artisan package:discover"
],
"post-update-cmd": [
"php artisan october:version",
"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": {
2023-02-27 04:39:19 +00:00
"preferred-install": "dist"
2013-12-27 10:22:42 +00:00
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"merge-plugin": {
"include": [
"plugins/*/*/composer.json"
],
"recurse": true,
"replace": false,
"merge-dev": false
}
}
2013-12-27 10:22:42 +00:00
}