-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
105 lines (105 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
104
105
{
"name": "barn2/document-library-lite",
"description": "Document Library Lite.",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Barn2 Plugins",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "[email protected]:barn2plugins/php-standards.git"
},
{
"type": "vcs",
"url": "[email protected]:barn2plugins/barn2-lib.git"
},
{
"type": "vcs",
"url": "[email protected]:barn2plugins/setup-wizard.git"
},
{
"type": "vcs",
"url": "[email protected]:barn2plugins/php-scoper-excludes.git"
},
{
"type": "vcs",
"url": "[email protected]:barn2plugins/test-buddy.git"
},
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"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.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"enshrined/svg-sanitize": "^0.15.4",
"php-stubs/wp-cli-stubs": "^2.10",
"phpstan/phpstan-strict-rules": "^1.6",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"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:0.18.0"
],
"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"
},
"autoload": {
"psr-4": {
"Barn2\\Plugin\\Document_Library\\": "src"
},
"classmap": [
"dependencies"
]
},
"autoload-dev": {
"psr-4": {
"Barn2\\Plugin\\Document_Library\\Tests\\": "tests/unit"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
},
"bin-dir": "bin",
"sort-packages": true,
"preferred-install": {
"*": "dist"
}
},
"extra": {
"installer-paths": {
"wp/src/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"wp/src/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
}
}