julienmonnerie/kirby/composer.json

117 lines
3 KiB
JSON
Raw Permalink Normal View History

2022-06-17 17:51:59 +02:00
{
2022-08-31 15:02:43 +02:00
"name": "getkirby/cms",
2025-04-21 18:57:21 +02:00
"description": "The Kirby core",
2022-08-31 15:02:43 +02:00
"license": "proprietary",
"type": "kirby-cms",
2025-07-11 14:41:34 +02:00
"version": "5.0.1",
2022-08-31 15:02:43 +02:00
"keywords": [
"kirby",
"cms",
"core"
],
"authors": [
{
"name": "Kirby Team",
"email": "support@getkirby.com",
"homepage": "https://getkirby.com"
}
],
"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"
},
"require": {
2025-07-11 14:41:34 +02:00
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
2022-08-31 15:02:43 +02:00
"ext-SimpleXML": "*",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
2025-04-21 18:57:21 +02:00
"christian-riesen/base32": "1.6.0",
"claviska/simpleimage": "4.2.1",
"composer/semver": "3.4.3",
2025-07-11 14:41:34 +02:00
"filp/whoops": "2.18.3",
2022-08-31 15:02:43 +02:00
"getkirby/composer-installer": "^1.2.1",
"laminas/laminas-escaper": "2.17.0",
2022-08-31 15:02:43 +02:00
"michelf/php-smartypants": "1.8.1",
"phpmailer/phpmailer": "6.10.0",
"symfony/polyfill-intl-idn": "1.32.0",
"symfony/polyfill-mbstring": "1.32.0",
2025-07-11 14:41:34 +02:00
"symfony/yaml": "7.3.1"
2022-08-31 15:02:43 +02:00
},
"replace": {
"symfony/polyfill-php72": "*"
},
"suggest": {
"ext-PDO": "Support for using databases",
"ext-apcu": "Support for the Apcu cache driver",
"ext-exif": "Support for exif information from images",
"ext-fileinfo": "Improved mime type detection for files",
"ext-intl": "Improved i18n number formatting",
"ext-memcached": "Support for the Memcached cache driver",
2025-07-11 14:41:34 +02:00
"ext-redis": "Support for the Redis cache driver",
2024-12-20 12:37:52 +01:00
"ext-sodium": "Support for the crypto class and more robust session handling",
2022-08-31 15:02:43 +02:00
"ext-zip": "Support for ZIP archive file functions",
"ext-zlib": "Sanitization and validation for svgz files"
},
"autoload": {
"psr-4": {
"Kirby\\": "src/"
},
"classmap": [
"dependencies/"
],
"files": [
"config/setup.php",
"config/helpers.php"
]
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true
},
"optimize-autoloader": true,
"platform": {
2025-07-11 14:41:34 +02:00
"php": "8.2.0"
2022-08-31 15:02:43 +02:00
},
"platform-check": false
},
"extra": {
"unused": [
"symfony/polyfill-intl-idn"
]
},
"scripts": {
"post-update-cmd": "curl -o cacert.pem https://curl.se/ca/cacert.pem",
"analyze": [
"@analyze:composer",
"@analyze:psalm",
"@analyze:phpmd"
],
"analyze:composer": "composer validate --strict --no-check-version --no-check-all",
"analyze:phpmd": "phpmd . ansi phpmd.xml.dist --exclude 'dependencies/*,tests/*,vendor/*'",
"analyze:psalm": "psalm",
2025-04-21 18:57:21 +02:00
"bench": "phpbench run --report=aggregate --ref baseline",
"bench:baseline": "phpbench run --report=aggregate --tag baseline",
2022-08-31 15:02:43 +02:00
"build": "./scripts/build",
"ci": [
"@fix",
"@analyze",
"@test"
],
"fix": "php-cs-fixer fix",
2025-04-21 18:57:21 +02:00
"test": "phpunit",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-html=tests/coverage",
2022-08-31 15:02:43 +02:00
"zip": "composer archive --format=zip --file=dist"
}
2022-06-17 17:51:59 +02:00
}