-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.38 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.38 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
{
"name": "kanti/letsencrypt-client",
"license": "MIT",
"type": "project",
"require": {
"php": "~8.3.0",
"ext-curl": "*",
"ext-yaml": "*",
"sentry/sdk": "^3.6",
"symfony/config": "^5.4.46",
"symfony/console": "^5.4.47",
"symfony/dependency-injection": "^5.4.48",
"symfony/error-handler": "^5.4.46",
"symfony/finder": "^5.4.45",
"symfony/lock": "^5.4.45",
"symfony/process": "^5.4.47",
"symfony/var-dumper": "^5.4.48",
"symfony/yaml": "^5.4.45",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"phpunit/phpunit": ">=12.4.3",
"pluswerk/grumphp-config": "^10.1.5",
"spatie/phpunit-watcher": ">=1.23.6"
},
"autoload": {
"psr-4": {
"Kanti\\LetsencryptClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kanti\\LetsencryptClient\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"php-http/discovery": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.3.12"
},
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"post-update-cmd": [
"composer bump"
],
"test": "./vendor/bin/phpunit tests",
"test:watch": "./vendor/bin/phpunit-watcher watch tests"
}
}