-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.57 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.57 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
{
"name": "ractstudio/wp-plugin-frame",
"description": "A modern Laravel-like WordPress plugin framework that helps you build scalable, elegant plugins with clean structure and developer-friendly tools — powered by WP Frame Studio.",
"authors": [
{
"name": "Mahamudul Hasan Rubel",
"email": "bd.mhrubel@gmail.com"
},
{
"name": "RactStudio",
"email": "ractstudio@gmail.com"
}
],
"scripts": {
"phpcs": "phpcs --standard=WordPress --extensions=php .",
"phpcbf": "phpcbf --standard=WordPress --extensions=php ."
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=7.4",
"twig/twig": "^3.3",
"symfony/http-client": "^5.4",
"ractstudio/wp-frame-studio": "dev-master"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"wp-coding-standards/wpcs": "*",
"wp-cli/wp-cli": "^2.11"
},
"autoload": {
"psr-4": {
"PluginFrame\\": [
"bootstrap/",
"app/",
"resources/",
"routes/",
"config/",
"providers/"
]
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}