-
-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathcomposer.json
More file actions
115 lines (115 loc) · 3.03 KB
/
Copy pathcomposer.json
File metadata and controls
115 lines (115 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "getkirby/cms",
"description": "The Kirby core",
"license": "proprietary",
"type": "kirby-cms",
"version": "5.5.3",
"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": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"christian-riesen/base32": "1.6.0",
"claviska/simpleimage": "4.4.0",
"composer/semver": "3.4.4",
"erusev/parsedown": "1.8.0",
"erusev/parsedown-extra": "0.9.0",
"filp/whoops": "2.18.4",
"getkirby/composer-installer": "^1.2.1",
"laminas/laminas-escaper": "2.18.0",
"michelf/php-smartypants": "1.8.1",
"phpmailer/phpmailer": "7.1.1",
"symfony/polyfill-intl-idn": "1.38.1",
"symfony/polyfill-mbstring": "1.38.2",
"symfony/yaml": "7.4.14"
},
"replace": {
"symfony/polyfill-php72": "*"
},
"suggest": {
"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-imagick": "Improved thumbnail generation",
"ext-intl": "Improved i18n number formatting",
"ext-memcached": "Support for the Memcached cache driver",
"ext-pdo": "Support for using databases",
"ext-redis": "Support for the Redis cache driver",
"ext-sodium": "Support for the crypto class and more robust session handling",
"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": {
"php": "8.3.0"
},
"platform-check": false
},
"scripts": {
"post-update-cmd": "curl -o cacert.pem https://curl.se/ca/cacert.pem",
"analyze": [
"@analyze:composer",
"@analyze:composer:unused",
"@analyze:psalm"
],
"analyze:composer": "composer validate --strict --no-check-version --no-check-all",
"analyze:composer:unused": "./scripts/cpx icanhazstring/composer-unused:0.9.6 --no-progress",
"analyze:psalm": "./scripts/cpx vimeo/psalm:6.16.1",
"build": "./scripts/build",
"ci": [
"@fix",
"@analyze",
"@test"
],
"fix": "./scripts/cpx friendsofphp/php-cs-fixer:3.95.1 fix",
"test": "./scripts/cpx phpunit/phpunit:11.5.55",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"@test --coverage-html=tests/coverage"
],
"zip": "composer archive --format=zip --file=dist"
}
}