-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
103 lines (103 loc) · 3.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "barn2plugins/woocommerce-product-tabs",
"description": "WooCommerce Product Tabs (Free)",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Barn2 Plugins",
"email": "support@barn2.com"
}
],
"require-dev": {
"bamarni/composer-bin-plugin": "^1.5",
"barn2/barn2-lib": "^2.0",
"barn2/php-scoper-excludes": "^0.2.0",
"barn2/php-standards": "dev-master",
"barn2/setup-wizard": "^1.2",
"barn2/test-buddy": "^0.5.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"wpackagist-plugin/woocommerce": "^8.6",
"wpackagist-theme/storefront": "^4.5"
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:barn2plugins/php-standards.git"
},
{
"type": "vcs",
"url": "git@github.com:barn2plugins/barn2-lib.git"
},
{
"type": "vcs",
"url": "git@github.com:barn2plugins/setup-wizard.git"
},
{
"type": "vcs",
"url": "git@github.com:barn2plugins/php-scoper-excludes.git"
},
{
"type": "vcs",
"url": "git@github.com:barn2plugins/test-buddy.git"
},
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"autoload": {
"psr-4": {
"Barn2\\Plugin\\WC_Product_Tabs_Free\\": "src"
},
"classmap": [
"dependencies"
]
},
"autoload-dev": {
"psr-4": {
"Barn2\\Plugin\\WC_Product_Tabs_Free\\Tests\\": "tests/unit"
}
},
"scripts": {
"no-dev": "composer update --prefer-dist --no-dev",
"install-scoper": [
"composer bin php-scoper config minimum-stability dev",
"composer bin php-scoper config prefer-stable true",
"composer bin php-scoper require --dev humbug/php-scoper"
],
"scoper": "php-scoper add-prefix --config .scoper.inc.php --output-dir dependencies/",
"test": "composer test:unit && composer test:integration",
"test:unit": "bin/pest --group=unit",
"test:integration": "bin/pest --group=integration"
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"bamarni/composer-bin-plugin": true,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"wp/src/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"wp/src/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
}
}