-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.94 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.94 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": "gryfoss/single-use-token-manager",
"description": "Single-use token management library with multiple cache adapters support",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "IDCT Bartosz Pachołek",
"email": "bartosz+github@idct.tech",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"ext-redis": "*",
"psr/cache": "^2.0 || ^3.0",
"symfony/cache": "^6 || ^7",
"symfony/property-access": "^6 || ^7",
"symfony/serializer": "^6 || ^7",
"symfony/uid": "^6 || ^7",
"symfony/validator": "^6 || ^7",
"zircote/swagger-php": "^4.0"
},
"autoload": {
"psr-4": {
"GryfOSS\\SingleUseTokenManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GryfOSS\\Tests\\SingleUseTokenManager\\": "tests/"
}
},
"scripts": {
"test:unit": "XDEBUG_MODE=coverage ./vendor/phpunit/phpunit/phpunit",
"test:functional": "./test-runner.sh test all",
"test:functional-array": "./test-runner.sh test array",
"test:functional-redis-tags": "./test-runner.sh test redis_tags",
"test:functional-redis-no-tags": "./test-runner.sh test redis_no_tags",
"test:full": "./test-runner.sh full",
"test": [
"@test:unit",
"@test:functional-array"
],
"docker:start": "./test-runner.sh start",
"docker:stop": "./test-runner.sh stop",
"docker:clean": "./test-runner.sh clean",
"fix": "./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --allow-risky=yes"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"php-mock/php-mock": "^2.3",
"php-mock/php-mock-phpunit": "^2.6",
"friendsofphp/php-cs-fixer": "^2.17",
"dg/bypass-finals": "^1.3",
"behat/behat": "^3.8"
}
}