-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
51 lines (51 loc) · 1.22 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
{
"name": "nextgenthemes/advanced-responsive-video-embedder",
"description": "ARVE Advanced Responsive Video Embedder",
"type": "wordpress-plugin",
"require": {
"php": ">=7.4"
},
"require-dev": {
"nextgenthemes/wp-shared": "@dev",
"automattic/jetpack-autoloader": "3.1.3"
},
"license": "GPL-3.0",
"authors": [
{
"name": "Nicolas Jonas"
}
],
"config": {
"allow-plugins": {
"automattic/jetpack-autoloader": true
},
"optimize-autoloader": true,
"platform": {
"php": "7.4"
}
},
"repositories": {
"nextgenthemes/wp-shared": {
"type": "path",
"url": "../nextgenthemes/wp-shared",
"options": {
"symlink": false
}
}
},
"scripts": {
"build": [
"./bin/block-json",
"./bin/build-readme",
"cd ../../../../.. && npm run build:advanced-responsive-video-embedder",
"@composer update"
],
"pre-update-cmd": [
"rsync --delete -av ./vendor/nextgenthemes/wp-shared ../nextgenthemes/",
"@composer --working-dir ../nextgenthemes/wp-shared config version $(php -r \"echo (new DateTime())->format('Y.m.d.H.i.s');\")"
],
"tests": [
"cd ../../../../.. && NGT_PHPUNIT_LOAD_PLUGINS=\"advanced-responsive-video-embedder\" phpunit --testsuite advanced-responsive-video-embedder"
]
}
}