-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.81 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.81 KB
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
{
"name": "waxframework/waxframework",
"description": "Wordpress plugin framework",
"type": "project",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"setup": [
"composer install --no-cache",
"composer humbug/php-scoper",
"composer add-prefix"
],
"build": [
"composer -d vendor --no-plugins --no-interaction install --no-scripts --no-dev"
],
"humbug/php-scoper": "composer bin php-scoper require --dev humbug/php-scoper:0.17.5",
"add-prefix": [
"vendor-src/bin/php-scoper add-prefix --output-dir vendor --force",
"composer dump-autoload -d vendor"
],
"format": "vendor/vendor-src/bin/phpcbf --standard=phpcs.xml",
"phpcs": "vendor/vendor-src/bin/phpcs --standard=phpcs.xml"
},
"autoload": {
"psr-4": {
"App\\": "./../app/",
"Bootstrap\\": "./../bootstrap/",
"Database\\": "./../database/"
}
},
"authors": [
{
"name": "MD AL AMIN",
"email": "mdalaminbey@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.4",
"php-di/php-di": "6.4.0",
"waxframework/framework": "^1.0.0"
},
"require-dev": {
"waxframework/artisan": "^1.0.0",
"bamarni/composer-bin-plugin": "1.8.2",
"squizlabs/php_codesniffer": "3.7.2",
"dealerdirect/phpcodesniffer-composer-installer": "1.0.0",
"phpcompatibility/phpcompatibility-wp": "2.1.4",
"wp-coding-standards/wpcs": "^2.3"
},
"config": {
"vendor-dir": "vendor-src",
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"bamarni-bin": {
"target-directory": "vendor-src/vendor-bin"
}
}
}