-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
59 lines (59 loc) · 1.44 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "laulamanapps/apple-passbook-bundle",
"description": "Generate Apple Passbooks from your Symfony application",
"keywords": [
"apple",
"passbook",
"php",
"wallet",
"event ticket",
"coupon",
"boarding pass",
"store card",
"iOS",
"iPhone",
"iPod Touch",
"pkpass"
],
"license": "MIT",
"authors": [
{
"name": "Laurens Laman",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"LauLamanApps\\ApplePassbookBundle\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"LauLamanApps\\ApplePassbookBundle\\Tests\\": ["tests/"]
}
},
"require": {
"php": ">=7.3",
"laulamanapps/apple-passbook": "^1.1",
"ext-openssl": "*"
},
"require-dev": {
"symfony/http-foundation": "^5.1",
"symfony/routing": "^5.1",
"symfony/event-dispatcher": "^5.1",
"symfony/framework-bundle": "^5.1",
"symfony/yaml": "^5.1",
"symfony/browser-kit": "^5.1",
"matthiasnoback/symfony-config-test": "^4.1",
"ext-zip": "*"
},
"suggest": {
"symfony/http-foundation": "^5.1",
"symfony/routing": "^5.1",
"symfony/event-dispatcher": "^5.1",
"symfony/framework-bundle": "^5.1"
},
"config": {
"bin-dir": "bin"
}
}