xiaowang/kirby/composer.json

91 lines
2.3 KiB
JSON
Raw Normal View History

2021-10-29 18:05:46 +02:00
{
"name": "getkirby/cms",
"description": "The Kirby 3 core",
2022-03-22 15:39:39 +01:00
"license": "proprietary",
"type": "kirby-cms",
"version": "3.6.3",
2021-10-29 18:05:46 +02:00
"keywords": [
"kirby",
"cms",
"core"
],
"authors": [
{
"name": "Kirby Team",
"email": "support@getkirby.com",
"homepage": "https://getkirby.com"
}
],
2022-03-22 15:39:39 +01:00
"homepage": "https://getkirby.com",
"support": {
"email": "support@getkirby.com",
"issues": "https://github.com/getkirby/kirby/issues",
"forum": "https://forum.getkirby.com",
"source": "https://github.com/getkirby/kirby"
},
"_comment": "TODO: psr/log is not used by Kirby; drop pinned version when Kirby no longer supports PHP 7",
2021-10-29 18:05:46 +02:00
"require": {
2022-03-22 15:39:39 +01:00
"php": ">=7.4.0 <8.2.0",
2021-10-29 18:05:46 +02:00
"ext-ctype": "*",
"ext-mbstring": "*",
2022-03-22 15:39:39 +01:00
"claviska/simpleimage": "3.6.5",
"filp/whoops": "2.14.5",
2021-11-18 17:44:47 +01:00
"getkirby/composer-installer": "^1.2.1",
"laminas/laminas-escaper": "2.9.0",
2021-10-29 18:05:46 +02:00
"michelf/php-smartypants": "1.8.1",
2022-03-22 15:39:39 +01:00
"phpmailer/phpmailer": "6.5.4",
2021-11-18 17:44:47 +01:00
"psr/log": "1.1.4",
2022-03-22 15:39:39 +01:00
"symfony/polyfill-intl-idn": "1.24.0",
"symfony/polyfill-mbstring": "1.24.0"
2021-10-29 18:05:46 +02:00
},
2022-03-22 15:39:39 +01:00
"replace": {
"symfony/polyfill-php72": "*"
2021-10-29 18:05:46 +02:00
},
"autoload": {
"psr-4": {
"Kirby\\": "src/"
},
"classmap": [
"dependencies/"
],
"files": [
"config/setup.php",
"config/helpers.php"
]
},
2022-03-22 15:39:39 +01:00
"config": {
"allow-plugins": {
"getkirby/composer-installer": true
},
"optimize-autoloader": true,
"platform-check": false
},
"extra": {
"unused": [
"symfony/polyfill-intl-idn"
]
},
2021-10-29 18:05:46 +02:00
"scripts": {
"post-update-cmd": "curl -o cacert.pem https://curl.se/ca/cacert.pem",
"analyze": [
"@analyze:composer",
"@analyze:psalm",
"@analyze:phpcpd",
"@analyze:phpmd"
],
"analyze:composer": "composer validate --strict --no-check-version --no-check-all",
"analyze:phpcpd": "phpcpd --fuzzy --exclude tests --exclude vendor .",
"analyze:phpmd": "phpmd . ansi phpmd.xml.dist --exclude 'dependencies/*,tests/*,vendor/*'",
"analyze:psalm": "psalm",
"build": "./scripts/build",
"ci": [
"@fix",
"@analyze",
"@test"
],
"fix": "php-cs-fixer fix",
"test": "phpunit --stderr --coverage-html=tests/coverage",
"zip": "composer archive --format=zip --file=dist"
2022-03-22 15:39:39 +01:00
}
2021-10-29 18:05:46 +02:00
}