forked from afiqiqmal/huawei-push
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 858 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 858 Bytes
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
{
"name": "avto-dev/huawei-push-kit",
"description": "Simple Huawei Push in PHP",
"type": "library",
"require": {
"php": "^8.3",
"guzzlehttp/guzzle": "^7.8",
"ext-json": "*",
"illuminate/collections": "^11.34 | ^12.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"vlucas/phpdotenv": "^5.6",
"phpstan/phpstan": "1.12.28"
},
"license": "MIT",
"authors": [
{
"name": "Hafiq",
"email": "hafiqiqmal93@gmail.com"
}
],
"autoload": {
"psr-4": {
"Afiqiqmal\\HuaweiPush\\":"src/"
}
},
"scripts": {
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"phpunit": "@php ./vendor/bin/phpunit ./tests --no-coverage --color=always"
}
}