-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.88 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.88 KB
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
{
"name": "helsingborg-stad/modularity-form-builder",
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "Kristoffer Svanmark",
"email": "kristoffer.svanmark@knowit.se"
},
{
"name": "Sebastian Thulin",
"email": "sebastian.thulin@helsingborg.se"
},
{
"name": "Jonatan Hanson",
"email": "jonatan.hanson@hiq.se"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html .coverage/html --coverage-clover .coverage/clover.xml",
"lint": "vendor/bin/mago lint",
"fix": "vendor/bin/mago lint --format-after-fix --fix",
"format": "vendor/bin/mago fmt"
},
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}": [
"type:wordpress-muplugin",
"type:wordpress-theme",
"type:wordpress-plugin",
"type:acf-plugin"
]
}
},
"require": {
"helsingborg-stad/acf-export-manager": ">=1.0.0",
"helsingborg-stad/wpservice": "^2.0",
"helsingborg-stad/wputilservice": "^0.2.44"
},
"suggest": {
"helsingborg-stad/municipio": "^6.0.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"carthage-software/mago": "^1.0.0-rc.3"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/helsingborg-stad/acf-export-manager.git"
}
],
"autoload": {
"psr-4": {
"ModularityFormBuilder\\": "source/php/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"carthage-software/mago": true
}
}
}