-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.44 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
{
"name": "studiometa/wp-toolkit",
"description": "WordPress utilities for Studio Meta.",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.1",
"monolog/monolog": "^2.9|^3.0",
"psr/log": "^1.1|^2.0|^3.0",
"sentry/sentry": "^4.6",
"studiometa/webpack-config": "^5.0|^6.0",
"symfony/http-foundation": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"timber/timber": "^1.0|^2.0",
"wecodemore/wordpress-early-hook": "^1.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"php-stubs/wordpress-stubs": "^5.5",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.4",
"szepeviktor/phpstan-wordpress": "^1.1",
"wp-phpunit/wp-phpunit": "^6.4",
"yoast/phpunit-polyfills": "^2.0"
},
"autoload": {
"psr-4": {
"Studiometa\\WPToolkit\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"scripts": {
"lint": [
"@lint:style",
"@lint:static"
],
"lint:style": "phpcs",
"lint:static": "phpstan analyse --memory-limit=512M",
"fix": [
"@fix:style"
],
"fix:style": "phpcbf",
"test": "XDEBUG_MODE=coverage phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"composer/installers": true
},
"sort-packages": true
}
}