-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.94 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
{
"name": "barn2/easy-post-types-fields",
"description": "Easy Post Types and Fields.",
"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"
}
],
"require-dev": {
"barn2/php-standards": "dev-master",
"bamarni/composer-bin-plugin": "^1.4",
"pronamic/wp-documentor": "^1.2",
"humbug/php-scoper": "0.18.0",
"barn2/setup-wizard": "0.5.0",
"barn2/barn2-lib": "^2.0",
"barn2/php-scoper-excludes": "^0.2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2"
},
"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/"
},
"autoload": {
"psr-4": {
"Barn2\\Plugin\\Easy_Post_Types_Fields\\": "src"
},
"classmap": [
"dependencies"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}