forked from thenextweb/passgenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (33 loc) · 810 Bytes
/
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
{
"name": "thenextweb/passgenerator",
"description": "A Laravel package to create Apple Wallet (old Passbook) compatible tickets.",
"type": "library",
"license": "GPLv3",
"keywords": ["php", "laravel", "Apple", "Passbook"],
"authors": [
{
"name": "The Next Web BV",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"ext-zip": "*",
"illuminate/support": "5.*"
},
"require-dev": {
"phpunit/phpunit" : "4.*",
"phpspec/phpspec": "~2.1",
"orchestra/testbench": "~3.1"
},
"autoload": {
"psr-4": {
"Thenextweb\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Thenextweb\\Test\\": "tests"
}
}
}