-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
60 lines (60 loc) · 2 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": "speculoos/w4os",
"description": "W4OS - OpenSimulator Web Interface",
"type": "wordpress-plugin",
"require": {
"wpmetabox/meta-box": "^5.6",
"meta-box/mb-admin-columns": "dev-master",
"meta-box/mb-settings-page": "dev-master",
"meta-box/mb-admin-columns": "dev-master",
"meta-box/meta-box-columns": "dev-master",
"meta-box/meta-box-conditional-logic": "dev-master",
"meta-box/meta-box-group": "dev-master",
"woocommerce/action-scheduler": "^3.4",
"jelix/inifile": "^3.3",
"fakerphp/faker": "^1.24"
},
"autoload": {
"files": [
"vendor/meta-box/meta-box/meta-box.php",
"vendor/meta-box/mb-settings-page/mb-settings-page.php",
"vendor/meta-box/mb-admin-columns/mb-admin-columns.php",
"vendor/meta-box/meta-box-columns/meta-box-columns.php",
"vendor/meta-box/meta-box-conditional-logic/meta-box-conditional-logic.php",
"vendor/meta-box/meta-box-group/meta-box-group.php",
"vendor/woocommerce/action-scheduler/action-scheduler.php"
]
},
"extra": {
"installer-paths": {
"vendor/meta-box/{$name}": ["vendor:wpmetabox","vendor:meta-box"],
"vendor/{$vendor}/{$name}": ["type:wordpress-plugin"]
}
},
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Gudule Lapointe",
"email": "gudule@speculoos.world"
}
],
"scripts": {
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || cp vendor/magicoli/opensim-rest-php/class-rest.php v2/admin-helpers/class-opensim-rest.php"
],
"bump-version": "vendor/magicoli/php-bump-library/vendor/bin/robo --load-from=vendor/magicoli/php-bump-library/RoboFile.php bump:version"
},
"require-dev": {
"magicoli/opensim-rest-php": "^1.0",
"wp-coding-standards/wpcs": "^3.1",
"magicoli/php-bump-library": "^1.0",
"phpunit/phpunit": "^11.5",
"wp-phpunit/wp-phpunit": "^6.7"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}