forked from tombroucke/acf-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 956 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 956 Bytes
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
{
"name": "tombroucke/acf-objects",
"description": "Make ACF's get_field return objects with easy-to-use methods",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tom Broucke",
"homepage": "https://tombroucke.be"
}
],
"autoload": {
"psr-4": {
"Otomaties\\AcfObjects\\": "src/"
}
},
"require": {
"php": ">=8"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6.2",
"roave/security-advisories": "dev-latest",
"szepeviktor/phpstan-wordpress": "^1.1",
"illuminate/support": "^9.36",
"php-stubs/acf-pro-stubs": "^6.0"
},
"extra": {
"acorn": {
"providers": [
"Otomaties\\AcfObjects\\AcfObjectsServiceProvider"
]
}
},
"scripts": {
"test": [
"phpunit tests --colors=always --verbose",
"phpcs --standard=PSR2 src",
"vendor/bin/phpstan analyze src --memory-limit 512M"
]
}
}