-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1 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
{
"name": "tombroucke/acf-objects",
"type": "package",
"description": "Convert return values from get_field() to objects with easy-to-use methods",
"license": "MIT",
"authors": [
{
"name": "Tom Broucke",
"email": "tom@tombroucke.be"
}
],
"autoload": {
"psr-4": {
"Otomaties\\AcfObjects\\": "src/"
}
},
"require": {
"php": "^8.0",
"nesbot/carbon": "*",
"illuminate/support": "*"
},
"extra": {
"acorn": {
"providers": [
"Otomaties\\AcfObjects\\Providers\\AcfObjectsServiceProvider"
],
"aliases": {
"AcfObjects": "Otomaties\\AcfObjects\\Facades\\AcfObjects"
}
}
},
"require-dev": {
"laravel/pint": "^1.18",
"szepeviktor/phpstan-wordpress": "^1.3",
"php-stubs/acf-pro-stubs": "^6.2",
"phpunit/phpunit": "^11.5"
},
"scripts": {
"test": [
"phpunit tests --colors=always",
"./vendor/bin/pint",
"./vendor/bin/phpstan analyze src --memory-limit 512M --level 5"
]
}
}