-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
115 lines (115 loc) · 2.96 KB
/
Copy pathcomposer.json
File metadata and controls
115 lines (115 loc) · 2.96 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
112
113
114
115
{
"name": "aztecweb/aztecweb-wp-browser",
"description": "Codeception/wp-browser extensions for WordPress plugin testing.",
"type": "library",
"license": "MIT",
"keywords": [
"wordpress",
"codeception",
"wp-browser"
],
"homepage": "https://github.com/aztecweb/aztecweb-wp-browser",
"authors": [
{
"name": "Aztec Online Solutions",
"email": "aztec@aztecweb.net",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/aztecweb/aztecweb-wp-browser/issues",
"source": "https://github.com/aztecweb/aztecweb-wp-browser"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"config": {
"preferred-install": {
"codeception/codeception": "source",
"lucatume/wp-browser": "source",
"*": "dist"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"roots/wordpress-core-installer": true
},
"sort-packages": true,
"platform": {
"php": "8.0.0"
}
},
"extra": {
"wordpress-install-dir": "public/wp",
"installer-paths": {
"public/packages/plugins/{$name}/": [
"type:wordpress-plugin"
],
"public/packages/themes/{$name}/": [
"type:wordpress-theme"
],
"public/packages/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
]
}
},
"autoload": {
"psr-4": {
"Aztec\\WPBrowser\\": "src/"
},
"files": [
"src/aliases.php"
]
},
"autoload-dev": {
"psr-4": {
"Aztec\\WPBrowser\\Tests\\": "tests/",
"Aztec\\WPBrowser\\Tests\\Support\\": "tests/_support/",
"Aztec\\WPBrowser\\Tests\\Unit\\": "tests/unit/"
}
},
"require": {
"php": "^8.0",
"codeception/codeception": "^5.0",
"lucatume/wp-browser": "^4.3",
"symfony/filesystem": ">=4.4.24 <8.0",
"symfony/process": ">=4.4.24 <8.0"
},
"require-dev": {
"codeception/module-asserts": "^2.0 || ^3.2",
"codeception/module-webdriver": "^3.1 || ^4.0",
"composer/installers": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^10.0@alpha",
"phpstan/phpstan": "^2.0",
"roots/wordpress-core-installer": "^4.0",
"roots/wordpress-no-content": "^6.8",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.7",
"wp-cli/wp-cli-bundle": "^2.10",
"wpackagist-plugin/sqlite-database-integration": "^2.1",
"wpackagist-plugin/woocommerce": "^9.0",
"wpackagist-theme/storefront": "^4.6"
},
"scripts": {
"stan": [
"codecept build",
"phpstan analyse --memory-limit 1G"
],
"cs": "phpcs",
"cs:fix": "phpcbf",
"check": [
"composer validate --strict --no-check-publish",
"@stan",
"@cs"
],
"post-install-cmd": "git config core.hooksPath .githooks"
}
}