-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.12 KB
/
composer.json
File metadata and controls
35 lines (35 loc) · 1.12 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
{
"name": "mhrubel/plugin-frame",
"description": "Plugin Frame: A modern WordPress plugin development framework with Composer, npm, Tailwind, Twig, and Laravel-like structure. Ideal for lightweight or complex plugins. Complies with WP & PSR-4 standards. Modular, scalable, and dev-friendly.",
"authors": [
{
"name": "mhrubel",
"email": "bd.mhrubel@gmail.com"
}
],
"scripts": {
"phpcs": "phpcs --standard=WordPress --extensions=php .",
"phpcbf": "phpcbf --standard=WordPress --extensions=php ."
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"squizlabs/php_codesniffer": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"wp-coding-standards/wpcs": "*",
"wp-cli/wp-cli": "^2.11"
},
"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"
}
}