-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.48 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": "pwpf/demo",
"authors": [
{
"name": "Sławomir Kaleta",
"email": "[email protected]"
}
],
"license": "MIT",
"type": "project",
"autoload": {
"psr-4": {
"Plugin_Name\\App\\": "app/",
"Plugin_Name\\Includes\\": "includes/",
"Plugin_Name\\": ""
},
"classmap": [
"app",
"includes",
"vendor_prefixed/"
]
},
"require": {
"pwpf/pwpf": "dev-master"
},
"require-dev": {
"php": ">=7.3",
"ext-json": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"prefix-dependencies": [
"php php-scoper.phar add-prefix --prefix=Plugin_NameVendor --output-dir=./vendor_prefixed/dframe --config=config/php-scoper/dframe.inc.php --force --quiet",
"php php-scoper.phar add-prefix --prefix=Plugin_NameVendor --output-dir=./vendor_prefixed/pwpf --config=config/php-scoper/pwpf.inc.php --force --quiet"
],
"post-cmd": [
"Plugin_Name\\ComposerHelper::prefixDependencies",
"rm --r vendor/dframe/",
"rm --r vendor/pwpf/",
"composer dump-autoload --no-interaction --ansi --verbose --optimize",
"Plugin_Name\\ComposerHelper::moveVendor"
],
"post-install-cmd": [
"@post-cmd"
],
"post-update-cmd": [
"@post-cmd"
]
}
}