-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
executable file
·76 lines (76 loc) · 2.42 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
{
"name": "helsingborg-stad/api-event-manager",
"description": "Creates a api that may be used to manage events",
"type": "wordpress-plugin",
"license": "MIT",
"scripts": {
"test": "XDEBUG_MODE=off ./vendor/bin/phpunit --testdox --no-coverage",
"test:debug": "XDEBUG_MODE=debug ./vendor/bin/phpunit --testdox --no-coverage",
"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": "Thor Brink",
"email": "[email protected]"
},
{
"name": "Sebastian Thulin",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"EventManager\\": "source/php/"
}
},
"minimum-stability": "dev",
"require": {
"php": ">=8.1",
"helsingborg-stad/acf-export-manager": ">=1.0.0",
"spatie/schema-org": "^3.14",
"helsingborg-stad/wpservice": "^1.12",
"helsingborg-stad/acfservice": "0.*"
},
"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",
"10up/wp_mock": "^1.0",
"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"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"wikimedia/composer-merge-plugin": true,
"johnpbloch/wordpress-core-installer": true
}
},
"version": "3.10.0"
}