-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
70 lines (70 loc) · 2.27 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
{
"name": "helsingborg-stad/municipio",
"description": "A bootstrap theme for creating municipality sites.",
"license": "MIT",
"type": "wordpress-theme",
"minimum-stability": "dev",
"authors": [
{
"name": "Kristoffer Svanmark",
"email": "kristoffer.svanmark@lexiconitkonsult.se"
},
{
"name": "Sebastian Thulin",
"email": "sebastian.thulin@helsingborg.se"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/helsingborg-stad/acf-export-manager.git"
}
],
"require": {
"composer/installers": "^1.0",
"helsingborg-stad/global-blade-engine": "^2.0.0",
"symfony/polyfill-mbstring": "1.17.0",
"helsingborg-stad/acf-export-manager": ">=1.0.0",
"helsingborg-stad/blade-engine-wrapper": "dev-master",
"pragmarx/ia-arr": "^7.3",
"wpackagist-plugin/kirki": "^5.0",
"ouun/kirki-module-fonts_upload": "dev-master",
"symfony/polyfill-php80": "^1.27"
},
"extra": {
"installer-paths": {
"vendor/{$name}/": [
"type:wordpress-plugin"
]
}
},
"scripts": {
"test": "phpunit --bootstrap tests/bootstrap.php",
"test:setup": "tests/install-wp-tests.sh",
"test:coverage": "rm -rf .coverage && XDEBUG_MODE=coverage phpunit --bootstrap tests/bootstrap.php --do-not-cache-result --coverage-html .coverage/html --coverage-clover .coverage/clover.xml",
"test:watch": "phpunit-watcher watch --bootstrap tests/bootstrap.php",
"test:coverage:watch": "XDEBUG_MODE=coverage phpunit-watcher watch --bootstrap tests/bootstrap.php --coverage-html .coverage",
"post-update-cmd": []
},
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"require-dev": {
"phpunit/phpunit": "9.6.x-dev",
"yoast/phpunit-polyfills": "^1.0.4",
"spatie/phpunit-watcher": "*",
"php-stubs/acf-pro-stubs": "dev-master"
},
"autoload": {
"psr-4": {
"Municipio\\": "library/"
}
},
"version": "3.8.8"
}