-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.2 KB
/
composer.json
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
{
"name": "zfegg/expressive-test",
"description": "Zend Expressive abstract test case for PHPUnit",
"require": {
"php": ">=8.1",
"phpunit/phpunit": ">=8.0",
"mezzio/mezzio": "^3.0",
"laminas/laminas-diactoros": "^3.0",
"laminas/laminas-servicemanager": "^3.3 | ^4.0",
"dflydev/fig-cookies": "^2.0 | ^3.0"
},
"license": "MIT",
"keywords": [
"zend",
"laminas",
"expressive",
"mezzio",
"test",
"phpunit"
],
"authors": [
{
"name": "Moln",
"email": "moln.xie@gmail.com"
}
],
"autoload": {
"psr-4": {
"Zfegg\\ExpressiveTest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfeggTest\\ExpressiveTest\\": "test/"
}
},
"require-dev": {
"ext-json": "*",
"squizlabs/php_codesniffer": "^3.5",
"laminas/laminas-config-aggregator": "^1.1",
"mezzio/mezzio-fastroute": "^3.0",
"phpspec/prophecy-phpunit": "^2.0"
},
"extra": {
"branch-alias": {
"dev-master": "0.8.x-dev",
"dev-develop": "0.8.x-dev"
}
}
}