forked from helsingborg-stad/Modularity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.51 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
{
"name": "helsingborg-stad/modularity",
"description": "Modular component system for WordPress",
"type": "wordpress-plugin",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Kristoffer Svanmark",
"email": "[email protected]"
},
{
"name": "Sebastian Thulin",
"email": "[email protected]"
},
{
"name": "Nikolas Ramstedt",
"email": "[email protected]"
},
{
"name": "Karl Pettersson",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/helsingborg-stad/acf-export-manager.git"
},
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*"
]
}
],
"require": {
"php": "^8.0",
"composer/installers": "~1.0",
"helsingborg-stad/acf-export-manager": ">=1.0.0",
"johannheyne/advanced-custom-fields-table-field": "dev-master",
"clark-nikdel-powell/post-type-select-for-acf": "dev-master",
"jeradin/acf-website-field": "dev-master",
"ooksanen/acf-focuspoint": "^1.2.1",
"jeradin/acf-dynamic-table-field": "dev-master",
"enshrined/svg-sanitize": "dev-master",
"wpackagist-plugin/acf-extended": "0.8.9.4",
"helsingborg-stad/acf-select-image-field": "1.6.1",
"landrok/language-detector": "dev-master",
"league/commonmark": "2.5.3",
"league/config": "1.1.1",
"helsingborg-stad/wpservice": "^2.0",
"helsingborg-stad/acfservice": "^0.8.1"
},
"autoload": {
"psr-4": {
"Modularity\\": "source/php/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}/": [
"vendor:wpackagist-plugin",
"type:wordpress-muplugin"
]
}
},
"scripts": {
"test": "phpunit --testdox --no-coverage",
"test:coverage": "XDEBUG_MODE=coverage phpunit --testdox"
},
"suggest": {
"helsingborg-stad/component-library": "Required for modules in modularity"
},
"version": "6.67.9",
"require-dev": {
"phpunit/phpunit": "^11"
}
}