-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
89 lines (89 loc) · 2.71 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
87
88
89
{
"name": "helsingborg-stad/municipio",
"description": "A bootstrap theme for creating municipality sites.",
"license": "MIT",
"type": "wordpress-theme",
"minimum-stability": "stable",
"authors": [
{
"name": "Kristoffer Svanmark",
"email": "[email protected]"
},
{
"name": "Sebastian Thulin",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/helsingborg-stad/acf-export-manager.git"
}
],
"require": {
"php": "^8.2",
"composer/installers": "^1.0",
"symfony/polyfill-mbstring": "1.17.0",
"helsingborg-stad/acf-export-manager": ">=1.0.0",
"pragmarx/ia-arr": "^7.3",
"ouun/kirki-module-fonts_upload": "^1.0.1",
"symfony/polyfill-php80": "^1.27",
"dompdf/dompdf": "^2.0.4",
"spatie/schema-org": "^3.9",
"helsingborg-stad/wpservice": "^2.0",
"helsingborg-stad/acfservice": "~0.4"
},
"extra": {
"installer-paths": {
"vendor/{$name}/": [
"type:wordpress-plugin"
]
}
},
"scripts": {
"test:all": [
"@test",
"@test:wp_mock"
],
"test:wp_mock": "PHPUNIT_GROUP=WP_MOCK phpunit --testdox --no-coverage --group=wp_mock",
"test": "phpunit --testdox --no-coverage --exclude=wp_mock",
"test:coverage": "XDEBUG_MODE=coverage phpunit --testdox --exclude=wp_mock",
"lint": "vendor/bin/phpcs",
"lint:changed": "vendor/bin/phpcs-changed origin/main",
"fix": "vendor/bin/phpcbf",
"fix:changed": "vendor/bin/phpcbf-changed origin/main",
"post-update-cmd": []
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"require-dev": {
"helsingborg-stad/phpcs": "^0.3.1",
"10up/wp_mock": "dev-trunk#1.0.1",
"php-mock/php-mock-mockery": "^1.4",
"php-stubs/wordpress-stubs": "^6.5"
},
"autoload": {
"psr-4": {
"Municipio\\": "library/"
}
},
"autoload-dev": {
"psr-4": {
"Municipio\\TestUtils\\": "tests/phpunit/TestUtils/"
}
},
"suggest": {
"helsingborg-stad/component-library": "Required for theme to work properly.",
"helsingborg-stad/kirki": "Required for theme to work properly."
},
"version": "5.82.2"
}