-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
111 lines (102 loc) · 3.26 KB
/
composer.json
File metadata and controls
111 lines (102 loc) · 3.26 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
110
111
{
"name": "deep-web-solutions/wp-framework-foundations",
"type": "library",
"description": "A set of related foundational classes to kick-start WordPress plugin development.",
"keywords": ["wordpress", "framework", "Deep Web Solutions", "foundations"],
"homepage": "https://www.deep-web-solutions.com",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Antonius Hegyes",
"email": "a.hegyes@deep-web-solutions.com",
"homepage": "https://www.linkedin.com/in/tonyhegyes",
"role": "Developer"
},
{
"name": "Contributors",
"homepage": "https://github.com/deep-web-solutions/wordpress-framework-foundations/graphs/contributors"
}
],
"require": {
"php": ">=7.4",
"deep-web-solutions/wp-framework-bootstrapper": "^1.3.0",
"deep-web-solutions/wp-framework-helpers": "^1.7.0",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.0"
},
"require-dev": {
"deep-web-solutions/wordpress-configs": "master@dev",
"php-stubs/wordpress-stubs": "5.5.*",
"johnpbloch/wordpress-core": "5.5.*",
"phpmd/phpmd": "2.*",
"squizlabs/php_codesniffer": "3.*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "*",
"lucatume/wp-browser": "3.*",
"codeception/module-asserts": "^1.3",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.4",
"codeception/module-db": "^1.1",
"codeception/module-filesystem": "^1.0",
"codeception/module-cli": "^1.1",
"codeception/mockery-module": "^0.4",
"codeception/util-universalframework": "^1.0",
"hoa/console": "^3.17",
"vlucas/phpdotenv": "^5.4"
},
"autoload": {
"psr-4": {
"DeepWebSolutions\\Framework\\Foundations\\": "src/includes"
},
"files": [
"bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"DeepWebSolutions\\Framework\\Tests\\Foundations\\Support\\": "tests/_support",
"DeepWebSolutions\\Framework\\Tests\\Foundations\\Functional\\": "tests/functional",
"DeepWebSolutions\\Framework\\Tests\\Foundations\\Integration\\": "tests/wpunit"
}
},
"scripts": {
"post-autoload-dump": [
"DeepWebSolutions\\Config\\Composer\\IsolateWordPressReferences::postAutoloadDump"
],
"composer:install": [
"@composer install --ignore-platform-reqs"
],
"composer:update": [
"@composer update"
],
"mess-detector:check": [
"@php ./vendor/bin/phpmd . json phpmd.xml.dist"
],
"coding-standards:check": [
"@php ./vendor/bin/phpcs --standard=phpcs.xml.dist -s -v"
],
"coding-standards:fix": [
"@php ./vendor/bin/phpcbf --standard=phpcs.xml.dist -v"
],
"test:clean": [
"@php ./vendor/bin/codecept clean"
],
"test:integration": [
"Composer\\Config::disableProcessTimeout",
"@php ./vendor/bin/codecept run wpunit --debug"
],
"test:functional": [
"Composer\\Config::disableProcessTimeout",
"@php ./vendor/bin/codecept run functional --debug"
]
},
"config": {
"allow-plugins": {
"composer/*": true,
"deep-web-solutions/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}