-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 808 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 808 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
{
"name": "pollora/query",
"description": "Create WP Query in a fluent way.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Olivier Gorzalka",
"email": "olivier@amphibee.fr",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Pollora\\Query\\": "src/"
}
},
"require-dev": {
"pestphp/pest": "^2.19",
"rector/rector": "^0.18.4",
"nunomaduro/phpinsights": "^2.8"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^8.1.0",
"pollora/wordpress-args": "dev-main",
"laravel/pint": "^1.13"
}
}