-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
66 lines (61 loc) · 1.73 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
59
60
61
62
63
64
65
66
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/a8cteam51/team51-configs"
}
],
"require": {
"ext-gd": "*",
"ext-json": "*",
"ext-posix": "*",
"phpseclib/phpseclib": "^3.0",
"symfony/console": "^v7.0",
"symfony/event-dispatcher": "^v7.0",
"symfony/process": "^v7.0"
},
"require-dev": {
"a8cteam51/team51-configs": "dev-trunk",
"wp-coding-standards/wpcs": "^3",
"phpcompatibility/phpcompatibility-wp": "*",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"WPCOMSpecialProjects\\CLI\\Command\\": "commands/"
},
"files": [
"includes/api-helper.php",
"includes/autocomplete-trait.php",
"includes/abstract-connection-helper.php",
"includes/connection-helper-pressable.php",
"includes/connection-helper-wpcom.php",
"includes/functions.php",
"includes/functions-1password.php",
"includes/functions-deployhq.php",
"includes/functions-github.php",
"includes/functions-jetpack.php",
"includes/functions-pressable.php",
"includes/functions-wpcom.php"
]
},
"scripts": {
"format:php": "phpcbf --standard=.phpcs.xml --basepath=. . -v",
"lint:php": "phpcs --standard=.phpcs.xml --basepath=. . -s -v",
"packages-install": "@composer install --ignore-platform-reqs --no-interaction",
"packages-update": [
"@composer clear-cache",
"@composer update --prefer-stable --ignore-platform-reqs --no-interaction"
]
},
"config": {
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.3"
}
}
}