-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.02 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "williarin/simple-queries",
"description": "Query the database using WordpressInterop library",
"license": "gpl-3.0",
"type": "wordpress-plugin",
"authors": [
{
"name": "William Arin",
"email": "williamarin.dev@gmail.com"
}
],
"require": {
"php": ">=8.0",
"typisttech/imposter-plugin": "^0.6.2",
"williarin/wordpress-interop": "^1.9.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"ergebnis/composer-normalize": "^2.28"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Williarin\\SimpleQueries\\": "src/"
},
"files": [
"vendor/symfony/string/Resources/functions.php"
]
},
"config": {
"allow-plugins": {
"typisttech/imposter-plugin": true
}
},
"extra": {
"imposter": {
"namespace": "Williarin\\SimpleQueries\\Vendor"
}
}
}