-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 984 Bytes
/
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
{
"name": "helsingborg-stad/acfservice",
"description": "Simplifies ACF integration by providing a centralized AcfService that exposes global ACF functions in a streamlined manner. Simplify your development workflow and enhance ACF integration with ease.",
"license": "MIT",
"autoload": {
"psr-4": {
"AcfService\\": "src/"
}
},
"authors": [
{
"name": "Thor Brink",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"helsingborg-stad/phpcs": "^0.3.5"
},
"scripts": {
"test": "XDEBUG_MODE=off ./vendor/bin/phpunit --testdox --no-coverage",
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --testdox"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"version": "0.9.0"
}