-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
46 lines (46 loc) · 1.25 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": "paysera/lib-lock-bundle",
"type": "symfony-bundle",
"description": "Provides utilities to organize Locks in your system",
"license": "MIT",
"autoload": {
"psr-4": {
"Paysera\\Bundle\\LockBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Paysera\\Bundle\\LockBundle\\Test\\": "test"
}
},
"require": {
"php": ">=7.1",
"symfony/lock": "^v3.4 || ^4.4 || ^5.4",
"symfony/config": "^3.0 || ^4.0 || ^5.0",
"symfony/dependency-injection": "^3.0 || ^4.0 || ^5.0",
"symfony/http-kernel": "^3.0 || ^4.0 || ^5.0",
"symfony/yaml": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/console": "^4.4 || ^5.3 || ^6.0"
},
"suggest": {
"predis/predis": "To store locks in Redis"
},
"require-dev": {
"predis/predis": "^1.1",
"phpunit/phpunit": "^6.0 || ^7.0 || ^8.0",
"snc/redis-bundle": "^2.1 || ^3.0 || ^4.0"
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"test": [
"@test:phpunit"
],
"test:phpunit": "bin/phpunit"
},
"scripts-descriptions": {
"test": "Runs all tests",
"test:phpunit": "Runs PHPUnit tests"
}
}