-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.11 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
{
"name": "orbitale/vouch",
"description": "A tiny package to implement a \"voucher\" system in your project.",
"type": "library",
"require": {
"php": "^7.4|8.0",
"psr/log": "^1.1",
"doctrine/orm": "^2.8",
"symfony/security-core": "^5.0"
},
"require-dev": {
"symfony/form": "^5.0",
"symfony/routing": "^5.0",
"symfony/http-foundation": "^5.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Orbitale\\Vouch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Orbitale\\Vouch\\": "src/"
}
},
"suggest": {
"symfony/form": "To use the built-in RedeemVoucherController in Symfony",
"symfony/routing": "To use the built-in RedeemVoucherController in Symfony",
"symfony/http-foundation": "To use the built-in RedeemVoucherController in Symfony"
},
"license": "AGPL-3",
"authors": [
{
"name": "Alex Rock Ancelet",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
}