-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
75 lines (75 loc) · 2.5 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
{
"name": "mingalevme/onesignal",
"description": "Simple OneSignal PHP Client",
"license": "MIT",
"keywords": [
"onesignal"
],
"authors": [
{
"name": "Mikhail Mingaev",
"email": "[email protected]"
}
],
"homepage": "https://github.com/mingalevme/onesignal-php",
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28",
"friendsofphp/php-cs-fixer": "^3.26",
"guzzlehttp/guzzle": "^7.5",
"icanhazstring/composer-unused": "^0.8.10",
"maglnet/composer-require-checker": "^3.8 || ^4.4",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^4.30",
"vlucas/phpdotenv": "^5.5"
},
"suggest": {
"guzzlehttp/guzzle": "^7.5"
},
"autoload": {
"psr-4": {
"Mingalevme\\OneSignal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mingalevme\\Tests\\OneSignal\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"composer-require-checker": "@php -d xdebug.mode=off vendor/bin/composer-require-checker",
"composer-unused": "@php -d xdebug.mode=off vendor/bin/composer-unused --excludeDir=resources--excludeDir=vendor",
"php-cs-fixer": "@php-cs-fixer-fix",
"php-cs-fixer-dry": "@php -d memory_limit=512M -d xdebug.mode=off vendor/bin/php-cs-fixer fix --dry-run --diff",
"php-cs-fixer-fix": "@php -d memory_limit=512M -d xdebug.mode=off vendor/bin/php-cs-fixer fix",
"phpcs": "@php -d memory_limit=512M -d xdebug.mode=off vendor/bin/phpcs -p",
"phpstan": "@php -d memory_limit=1024M -d xdebug.mode=off vendor/bin/phpstan analyse",
"phpunit": "@php -d memory_limit=512M -d xdebug.mode=off vendor/bin/phpunit",
"psalm": "@php -d memory_limit=1024M -d xdebug.mode=off vendor/bin/psalm",
"q": "@quality",
"quality": [
"@composer audit",
"@composer-require-checker",
"@composer-unused",
"@composer normalize --dry-run",
"@phpcs",
"@php-cs-fixer-dry",
"@psalm",
"@phpstan",
"@phpunit"
]
}
}