-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 2 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
{
"name": "blockify/plugin",
"description": "Blockify plugin for WordPress.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Blockify",
"homepage": "https://blockifywp.com"
}
],
"type": "wordpress-plugin",
"minimum-stability": "dev",
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/installers": true
}
},
"archive": {
"exclude": [
".git",
".github",
".gitignore",
".gitattributes",
".editorconfig",
"bin/*",
"composer.json",
"composer.lock",
"composer-dev.json",
"composer-dev.lock",
"vendor/**/**/.git",
"vendor/**/**/.gitignore",
"vendor/**/**/.gitattributes",
"vendor/**/**/.editorconfig",
"vendor/**/**/composer.json",
"vendor/**/**/LICENSE"
]
},
"scripts": {
"dev": "COMPOSER=composer-dev.json composer update",
"delete-git": "echo [WARNING] Deleting all .git directories from dependencies && rm -rf vendor/**/**/.git",
"dist": "composer update --no-dev && composer run delete-git && rm -rf vendor/bin",
"zip": "composer archive --format=zip --file=../blockify",
"pot": "wp i18n make-pot ./ languages/blockify.pot --exclude='.github,assets,vendor'",
"patterns": "php bin/screenshots.php"
},
"require": {
"php": ">=7.4",
"arraypress/lemon-squeezy-updater": "dev-main",
"blockify/blocks": "dev-main",
"blockify/dom": "dev-main",
"blockify/framework": "dev-main",
"blockify/icons": "dev-main",
"blockify/utilities": "dev-main",
"fieldify/fields": "dev-main",
"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": "git",
"url": "[email protected]:blockifywp/blocks.git"
},
{
"type": "git",
"url": "[email protected]:fieldifywp/fields.git"
}
]
}