-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (46 loc) · 1.26 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
{
"name": "firstandthird/dandy-blocks",
"description": "A collection of Gutenberg blocks built on top of ACF.",
"type": "wordpress-plugin",
"license": "MIT",
"config": {
"vendor-dir": "vendor",
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"ffraenz/private-composer-installer": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/firstandthird/dandy"
},
{
"type": "package",
"package": {
"name": "advanced-custom-fields/advanced-custom-fields-pro",
"version": "5.9.3",
"type": "wordpress-muplugin",
"dist": {
"type": "zip",
"url": "https://connect.advancedcustomfields.com/index.php?a=download&p=pro&k={%ACF_PRO_KEY}&t={%VERSION}"
},
"require": {
"composer/installers": "^1.12.0",
"ffraenz/private-composer-installer": "^5.0"
}
}
}
],
"require": {
"firstandthird/ftdandy": "dev-main"
},
"require-dev": {
"automattic/vipwpcs": "^2.3.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"squizlabs/php_codesniffer": "^3.6"
}
}