-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.28 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
{
"name": "aliene/phalcon-session-redis",
"description": "An alternative Redis session handler for Phalcon PHP",
"type": "library",
"license": "MIT",
"require": {
"php": ">=5.6",
"ext-redis": "*"
},
"autoload": {
"psr-4": {
"Aliene\\Phalcon\\Session\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aliene\\RedisSessions\\Tests\\E2E\\": "tests/e2e",
"Aliene\\RedisSessions\\Tests\\Unit\\": "tests/unit"
}
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3",
"phpunit/phpunit": "^7.0"
},
"scripts": {
"env-up": [
"@composer install --ignore-platform-reqs",
"docker-compose -f tests/docker-compose.yml up -d"
],
"env-rm": "docker-compose -f tests/docker-compose.yml down -v",
"test": [
"@env-up",
"docker exec -t tests_runner_1 sh -c \"TARGET=php56 vendor/bin/phpunit --testdox\"",
"docker exec -t tests_runner_1 sh -c \"TARGET=php70 vendor/bin/phpunit --testdox\"",
"docker exec -t tests_runner_1 sh -c \"TARGET=php71 vendor/bin/phpunit --testdox\"",
"docker exec -t tests_runner_1 sh -c \"TARGET=php72 vendor/bin/phpunit --testdox\""
]
}
}