-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 985 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
34
35
36
{
"name": "antiseptikk/wordpress-encore",
"type": "library",
"description": "API to enqueue assets generated by @webpack/encore into your WordPress theme.",
"license": "MIT",
"authors": [
{
"name": "Thomas Ferney",
"email": "thomas.ferney@gmail.com"
}
],
"require": {
"php": ">=7.4 || <=8.2"
},
"require-dev": {
"antiseptikk/dev-kit": "^1.0",
"giacocorsiglia/wordpress-stubs": "^4.9.5",
"humanmade/psalm-plugin-wordpress": "^2.0",
"php-stubs/wordpress-stubs": "^5.7",
"phpcompatibility/phpcompatibility-wp": "^2.1.0",
"szepeviktor/phpstan-wordpress": "^0.7.4"
},
"autoload": {
"psr-4": {
"Antiseptikk\\": "src"
}
},
"scripts": {
"lint": "vendor/bin/ecs check ./src"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}