-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
48 lines (48 loc) · 902 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "eo/passbook",
"type": "library",
"description": "iOS Passbook for PHP",
"keywords": [
"passbook",
"ios",
"pass",
"mobile",
"wallet",
"coupons",
"tickets"
],
"homepage": "https://github.com/eymengunay/php-passbook",
"license": "MIT",
"authors": [
{
"name": "Eymen Gunay",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=7.4",
"ext-zip": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"nunomaduro/phpinsights": "dev-master",
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Passbook\\": "src/Passbook/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}