-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.39 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 2.39 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "passkit/passkit-php-quickstart",
"description": "PassKit PHP quickstart examples for membership cards, coupons, event tickets, and boarding passes.",
"keywords": [
"passkit",
"php",
"sdk",
"api",
"grpc"
],
"homepage": "https://passkit.com",
"license": "MIT",
"authors": [
{
"name": "PassKit Inc.",
"homepage": "https://passkit.com"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/passkit/passkit-php-grpc-sdk.git"
}
],
"require": {
"php": ">=8.2",
"ext-grpc": "*",
"ext-openssl": "*",
"grpc/grpc": "^1.57",
"google/protobuf": "^5.36.1",
"passkit/passkit-php-grpc-sdk": "^1.1.162"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"PassKit\\Quickstart\\": "src/",
"Analytics\\": "lib/Analytics",
"Cabin_codes\\": "lib/Cabin_codes",
"Ct\\": "lib/Ct",
"Event_tickets\\": "lib/Event_tickets",
"Flights\\": "lib/Flights",
"Io\\": "lib/Io",
"Members\\": "lib/Members",
"Raw\\": "lib/Raw",
"Scheduler\\": "lib/Scheduler",
"Single_use_coupons\\": "lib/Single_use_coupons",
"GPBMetadata\\Io\\": "lib/GPBMetadata/Io",
"GPBMetadata\\Ct\\": "lib/GPBMetadata/Ct",
"GPBMetadata\\Google\\": "lib/extra/GPBMetadata/Google",
"Google\\Api\\": "lib/extra/google/api",
"GPBMetadata\\ProtocGenOpenapiv2\\": "lib/extra/GPBMetadata/ProtocGenOpenapiv2",
"Protoc_gen_openapiv2\\Options\\": "lib/extra/Grpc/Gateway/Protoc_gen_openapiv2/Options"
}
},
"autoload-dev": {
"psr-4": {
"PassKit\\Quickstart\\Tests\\": "tests/"
}
},
"scripts": {
"example": "php getting-started.php",
"example:loyalty": "php getting-started.php loyalty",
"example:coupons": "php getting-started.php coupons",
"example:tickets": "php getting-started.php tickets",
"example:flights": "php getting-started.php flights",
"test": "phpunit",
"lint": "php scripts/lint.php",
"check": [
"@lint",
"@test"
],
"security": "composer audit"
}
}