40 lines
1.1 KiB
JSON

{
"name": "minishlink/web-push",
"type": "library",
"description": "Web Push library for PHP",
"keywords": ["push", "notifications", "web", "WebPush", "Push API"],
"homepage": "https://github.com/web-push-libs/web-push-php",
"license": "MIT",
"authors": [
{
"name": "Louis Lagrange",
"email": "lagrange.louis@gmail.com",
"homepage": "https://github.com/Minishlink"
}
],
"scripts": {
"test:unit": "./vendor/bin/phpunit --color",
"test:typing": "./vendor/bin/phpstan analyse --level max src",
"test:syntax": "./vendor/bin/php-cs-fixer fix ./src --dry-run --stop-on-violation --using-cache=no"
},
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-gmp": "*",
"lib-openssl": "*",
"guzzlehttp/guzzle": "^6.2",
"web-token/jwt-signature": "^1.0",
"web-token/jwt-key-mgmt": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpstan/phpstan": "0.11.2",
"friendsofphp/php-cs-fixer": "^2.14"
},
"autoload": {
"psr-4" : {
"Minishlink\\WebPush\\" : "src"
}
}
}