-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.07 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "waxframework/framework",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"format": "vendor/bin/phpcbf --standard=phpcs.xml",
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml --report-full --report-checkstyle=./phpcs-report.xml"
},
"autoload": {
"psr-4": {
"WaxFramework\\": "src/"
}
},
"authors": [
{
"name": "MD AL AMIN",
"email": "mdalaminbey@gmail.com"
}
],
"require": {
"php": ">=7.4",
"waxframework/routing": "^1.0.0",
"waxframework/database": "^1.0.0"
},
"require-dev": {
"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": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}