forked from edamov/pushok
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.2 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "dutchie027/apnpush",
"type": "library",
"description": "PHP client for Apple Push Notification Service (APNs)",
"keywords": [
"apns",
"push notifications",
"p8",
"php apns"
],
"homepage": "https://github.com/dutchie027/apnpush",
"license": "MIT",
"authors": [
{
"name": "Justin Rodino",
"email": "justin@rodino.dev",
"homepage": "https://github.com/dutchie027",
"role": "Developer"
},
{
"name": "Arthur Edamov",
"email": "edamov@gmail.com",
"homepage": "https://github.com/edamov",
"role": "Orignial Developer"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"lib-curl": ">=7.46.0",
"ext-openssl": "*",
"lib-openssl": ">=1.0.2.5",
"ext-json": "*",
"ext-xml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^9",
"psalm/phar": "^4.22"
},
"autoload": {
"psr-4": {
"Apnpush\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"dutchie027\\apnpush\\": "tests"
}
},
"support": {
"forum": "https://github.com/dutchie027/apnpush/discussions",
"issues": "https://github.com/dutchie027/apnpush/issues",
"source": "https://github.com/dutchie027/apnpush/tree/main"
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"fix": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/phpunit",
"stan": "./vendor/bin/phpstan --no-progress",
"psalm": "./vendor/bin/psalm.phar --no-progress --show-info=true",
"runall": [
"@fix",
"@test",
"@stan",
"@psalm"
]
},
"scripts-descriptions": {
"test": "Runs phpunit tests",
"fix": "Runs PHP-CS Fixer",
"stan": "Runs phpstan to check standards",
"psalm": "Runs psalm to check code",
"runall": "Runs all tests (fixer, phpunit, phpstan, psalm)"
}
}