-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
executable file
·46 lines (46 loc) · 1.22 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
{
"name": "cache/integration-tests",
"type": "library",
"description": "Integration tests for PSR-6 and PSR-16 cache implementations",
"keywords": [
"cache",
"psr6",
"psr16",
"test"
],
"homepage": "https://github.com/php-cache/integration-tests",
"license": "MIT",
"authors": [
{
"name": "Aaron Scherer",
"email": "[email protected]",
"homepage": "https://github.com/aequasi"
},
{
"name": "Tobias Nyholm",
"email": "[email protected]",
"homepage": "https://github.com/nyholm"
}
],
"require": {
"php": ">=5.5.9"
},
"require-dev": {
"cache/cache": "^1.0",
"symfony/cache": "^3.4.31|^4.3.4|^5.0",
"symfony/phpunit-bridge": "^5.1,<5.3",
"illuminate/cache": "^5.4|^5.5|^5.6",
"tedivm/stash": "^0.14",
"mockery/mockery": "^1.0"
},
"conflict": {
"phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
},
"autoload": {
"psr-4": {
"Cache\\IntegrationTests\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}