-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.63 KB
/
Copy pathcomposer.json
File metadata and controls
59 lines (59 loc) · 1.63 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
{
"name": "mantle-framework/testkit",
"description": "The Mantle Framework Testkit Package",
"license": "GPL-2.0-or-later",
"type": "library",
"keywords": [
"testing",
"mantle"
],
"authors": [
{
"name": "Alley",
"email": "mantle@alley.com"
}
],
"require": {
"php": "^8.2",
"alleyinteractive/composer-wordpress-autoloader": "^1.0",
"mantle-framework/config": "^1.0",
"mantle-framework/container": "^1.0",
"mantle-framework/contracts": "^1.0",
"mantle-framework/events": "^1.0",
"mantle-framework/faker": "^1.0",
"mantle-framework/support": "^1.0",
"mantle-framework/testing": "^1.0",
"mantle-framework/testing-dependencies": "^1.0",
"nunomaduro/collision": "^6.0 || ^7.0 || ^8.0",
"phpunit/phpunit": "^10.5.62 || ^11.5.50 || ^12.5.8",
"symfony/http-foundation": "^7.3.7"
},
"conflict": {
"alleyinteractive/mantle-framework": "*"
},
"suggest": {
"alleyinteractive/mantle-framework": "For the full Mantle Framework, require the base package instead."
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Mantle\\Testkit\\": "./"
},
"files": [
"autoload.php"
]
},
"config": {
"allow-plugins": {
"alleyinteractive/composer-wordpress-autoloader": true
},
"sort-packages": true
},
"extra": {
"wordpress-autoloader": {
"autoload": {
"Mantle\\Testkit": "./"
}
}
}
}