-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.02 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "yokai/security-token-bundle",
"description": "Handle security token manipulation in a Symfony application",
"license": "MIT",
"authors": [
{
"name": "Yann Eugoné",
"email": "eugone.yann@gmail.com"
}
],
"require": {
"php": "^8.1",
"symfony/framework-bundle": "^6.4|^7.4|^8.0",
"doctrine/common": "^3.0",
"doctrine/orm": "^3.0",
"doctrine/doctrine-bundle": "^2.0|^3.0",
"yokai/dependency-injection": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0|12.0",
"symfony/yaml": "^6.4|^7.4|^8.0",
"phpstan/phpstan": "^2.1",
"symplify/easy-coding-standard": "^13.0"
},
"autoload": {
"psr-4": { "Yokai\\SecurityTokenBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Yokai\\SecurityTokenBundle\\Tests\\": "tests/" }
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}