-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdev-composer.json
More file actions
109 lines (109 loc) · 3.34 KB
/
Copy pathdev-composer.json
File metadata and controls
109 lines (109 loc) · 3.34 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "threadi/efml",
"version": "5.1.0",
"scripts": {
"post-install-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"post-update-cmd": [
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"test": "phpunit",
"test-install": "bash bin/install-wp-tests.sh wordpress_test root 'debian' 127.0.0.1 latest",
"test-install-during-build": "bash bin/install-wp-tests.sh wordpress_test root 'debian' 127.0.0.1 latest false true"
},
"extra": {
"mozart": {
"dep_namespace": "ExternalFilesInMediaLibrary\\Dependencies\\",
"dep_directory": "/app/Dependencies/",
"classmap_directory": "/libs/classes/dependencies/",
"classmap_prefix": "ExternalFilesInMediaLibrary",
"packages": [
"threadi/easy-transients-for-wordpress"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"classmap-authoritative": true,
"apcu-autoloader": true,
"prepend-autoloader": false,
"platform-check": false
},
"autoload": {
"psr-4": {
"ExternalFilesInMediaLibrary\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"ExternalFilesInMediaLibrary\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"require-dev": {
"wp-coding-standards/wpcs": "^3.1.0",
"pronamic/wp-documentor": "^1.3.2",
"automattic/vipwpcs": "^3.0",
"phpstan/phpstan": "^2.1",
"szepeviktor/phpstan-wordpress": "^2.0",
"phpstan/extension-installer": "^1.4",
"php-stubs/wp-cli-stubs": "^2.11",
"coenjacobs/mozart": "^0.7.1",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.2",
"yoast/phpunit-polyfills": "^1.0",
"wp-phpunit/wp-phpunit": "^6.3"
},
"require": {
"php": "^8.1",
"ext-zip": "*",
"ext-fileinfo": "*",
"ext-mysqli": "*",
"ext-openssl": "*",
"ext-curl": "*",
"ext-zlib": "*",
"threadi/crypt-for-wordpress": "*",
"threadi/easy-dialog-for-wordpress": "*",
"threadi/easy-directory-listing-for-wordpress": "*",
"threadi/easy-settings-for-wordpress": "*",
"threadi/easy-transients-for-wordpress": "^1.4.7",
"spatie/dropbox-api": "^1.23"
},
"repositories": [
{
"type": "path",
"url": "../../../easy-dialog-for-wordpress/",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../../../easy-directory-listing-for-wordpress/",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../../../easy-settings-for-wordpress/",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../../../crypt-for-wordpress/",
"options": {
"symlink": true
}
}
]
}