-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
86 lines (86 loc) · 2.79 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "helsingborg-stad/broken-link-detector",
"description": "Detects broken links",
"type": "wordpress-plugin",
"license": "MIT",
"scripts": {
"test": "XDEBUG_MODE=off phpunit -c phpunit.default.xml --testdox",
"test:debug": "XDEBUG_MODE=debug ./vendor/bin/phpunit --testdox --no-coverage",
"test:setup:e2e": "./tests/install-wp-tests.sh test root dev 127.0.0.1",
"test:e2e": "phpunit -c phpunit.e2e.xml --testdox",
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --testdox",
"minimal": "./vendor/bin/phpunit",
"php:lint": "./vendor/bin/phpcs -s",
"php:fix": "./vendor/bin/phpcbf",
"php:analyze": "vendor/bin/phpstan analyse -c phpstan.neon"
},
"extra": {
"hooks": {
"commit-msg": [
"./bin/commit-msg.sh $1"
]
},
"merge-plugin": {
"include": [
"composer.local.json"
],
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": true,
"merge-scripts": true
}
},
"authors": [
{
"name": "Sebastian Thulin",
"email": "[email protected]"
},
{
"name": "Niclas Norin",
"email": "[email protected]"
},
{
"name": "Thor Brink",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BrokenLinkDetector\\": "source/php/"
}
},
"require": {
"php": ">=8.1",
"helsingborg-stad/acf-export-manager": ">=1.0.0",
"symfony/polyfill-intl-idn": "1.31.0",
"helsingborg-stad/wpservice": "^2.0",
"helsingborg-stad/acfservice": "^0.8.1"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "^0.32.0",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "*",
"brainmaestro/composer-git-hooks": "^2.8",
"composer/installers": "~1.0",
"php-mock/php-mock-mockery": "^1.4",
"wikimedia/composer-merge-plugin": "^2.1",
"phpstan/phpstan": "2.0.x-dev",
"johnpbloch/wordpress-core": "dev-master",
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^3.0",
"wp-cli/wp-cli": "^2.11"
},
"suggest": {
"helsingborg-stad/component-library": "Required for modal feature."
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"wikimedia/composer-merge-plugin": true,
"johnpbloch/wordpress-core-installer": true
}
},
"version": "4.2.3"
}