-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer-dev.json
81 lines (81 loc) · 1.7 KB
/
composer-dev.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
{
"name": "blockify/plugin",
"description": "Blockify plugin for WordPress",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Blockify",
"homepage": "https://blockifywp.com"
}
],
"type": "wordpress-theme",
"minimum-stability": "dev",
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/installers": true
}
},
"require": {
"php": ">=7.4",
"arraypress/lemon-squeezy-updater": "dev-main",
"blockify/blocks": "@dev",
"blockify/dom": "@dev",
"blockify/framework": "@dev",
"blockify/icons": "@dev",
"blockify/utilities": "@dev",
"fieldify/fields": "@dev",
"tedivm/jshrink": "^1.7"
},
"require-dev": {
"composer/installers": "^1.12.0 || ^2",
"spatie/ignition": "^1.12",
"kint-php/kint": "dev-master",
"wpreadme2markdown/wp2md": "*"
},
"repositories": [
{
"type": "path",
"url": "../../../../vendor/blockify/blocks",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../../../../vendor/blockify/dom",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../../../../vendor/blockify/framework",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../../../../vendor/blockify/icons",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../../../../vendor/blockify/utilities",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../../../../vendor/fieldify/fields",
"options": {
"symlink": true
}
}
]
}