-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.1 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
{
"name": "exolnet/glutenblocks",
"description": "Collection of Wordpress blocks for the Gutenberg editor.",
"type": "wordpress-plugin",
"keywords": [
"exolnet",
"laravel",
"glutenblocks"
],
"homepage": "https://github.com/eXolnet/glutenblocks",
"license": "MIT",
"authors": [
{
"name": "eXolnet",
"homepage": "https://www.exolnet.com"
}
],
"require": {
"php": "^7.3|^8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6.0"
},
"scripts": {
"lint": "vendor/bin/phpcs -p --standard=PSR2 --extensions=php packages/",
"lint-fix": "vendor/bin/phpcbf -p --standard=PSR2 --extensions=php packages/",
"build-plugin-assets" : "yarn install --frozen-lockfile && NODE_OPTIONS=--openssl-legacy-provider yarn production",
"post-update-cmd": [
"composer run-script build-plugin-assets"
],
"post-install-cmd": [
"composer run-script build-plugin-assets"
]
},
"config": {
"sort-packages": true
}
}