-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.36 KB
/
composer.json
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.0.*",
"ext-curl": "*",
"ext-yaml": "*",
"sentry/sdk": "^3.5",
"symfony/config": "^5.4.21",
"symfony/console": "^5.4.24",
"symfony/dependency-injection": "^5.4.25",
"symfony/error-handler": "^5.4.24",
"symfony/finder": "^5.4.21",
"symfony/lock": "^5.4.25",
"symfony/process": "^5.4.24",
"symfony/var-dumper": "^5.4.25",
"symfony/yaml": "^5.4.23",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "*",
"pluswerk/grumphp-config": "^6.5",
"spatie/phpunit-watcher": "*"
},
"autoload": {
"psr-4": {
"Kanti\\LetsencryptClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kanti\\LetsencryptClient\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true,
"php-http/discovery": true,
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.0"
},
"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"
}
}