-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.32 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 2.32 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "wpmvc1761743674/directorist-gutenberg",
"description": "WpMVC is a WordPress plugin framework that makes web development easy and enjoyable.",
"type": "project",
"license": "MIT",
"version": "1.2.02",
"scripts": {
"setup": [
"composer install --no-cache",
"composer humbug/php-scoper",
"composer add-prefix",
"composer permission"
],
"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 --config=dev-tools/scoper/index.php --output-dir vendor --force",
"composer dump-autoload -d vendor"
],
"format": "vendor/vendor-src/bin/phpcbf --standard=dev-tools/phpcs.xml",
"phpcs": "vendor/vendor-src/bin/phpcs --standard=dev-tools/phpcs.xml",
"make-pot": [
"wp i18n make-pot . languages/directorist-gutenberg.pot --include='app/**/*.php,assets/**/*.js,assets/**/*.php,resources/views'",
"cp languages/directorist-gutenberg.pot languages/directorist-gutenberg.po"
],
"make-unminified-pot": [
"composer make-pot",
"wp i18n make-json languages/directorist-gutenberg.po --no-purge --pretty-print"
],
"make-production-pot": [
"composer make-pot",
"wp i18n make-json languages/directorist-gutenberg.po --no-purge"
],
"permission": [
"chmod +x vendor/vendor-src/bin/phpcs",
"chmod +x vendor/vendor-src/bin/phpcbf"
]
},
"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",
"wpmvc/framework": "1.2.01"
},
"require-dev": {
"wp-cli/i18n-command": "^2.0@dev",
"wpmvc/artisan": "1.1.1",
"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"
}
}
}