-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.4 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "kestrelwp/aviary",
"description": "A Composer plugin for isolating dependencies for WordPress plugins and themes.",
"type": "composer-plugin",
"autoload": {
"psr-4": {
"Kestrel\\Aviary\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kestrel\\Aviary\\Tests\\": "tests/"
}
},
"license": "GPL-2.0-or-later",
"bin": [
"bin/aviary"
],
"scripts": {
"extract": "php ./scripts/extract-symbols.php",
"pre-update-cmd": "cp composer.lock composer.lock.bak",
"post-update-cmd": "php ./scripts/extract-updated-symbols.php"
},
"minimum-stability": "stable",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": "^8.2",
"composer-plugin-api": "^2.3",
"composer/composer": "^2.7.6",
"humbug/php-scoper": "^0.18.15"
},
"require-dev": {
"phpunit/phpunit": "^11.3.5",
"johnpbloch/wordpress": "^6.6.0",
"wpackagist-plugin/woocommerce": "^9.1.2"
},
"extra": {
"class": "Kestrel\\Aviary\\Plugin",
"wordpress-install-dir": "sources/wordpress",
"installer-paths": {
"sources/plugin-{$name}/": [
"type:wordpress-plugin"
],
"sources/theme-{$name}/": [
"type:wordpress-theme"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true
}
}
}