PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Andrey Iatsenko   Laravel FCM   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel FCM
Send notifications to device users using Firebase
Author: By
Last change:
Date: 8 days ago
Size: 1,387 bytes
 

Contents

Class file image Download
{ "name": "yzen.dev/laravel-fcm", "version": "0.2", "description": "Laravel FCM channel", "minimum-stability": "dev", "prefer-stable": true, "license": "MIT", "keywords": [ "laravel", "fcm", "channel"], "authors": [ { "name": "Andey Iatsenko", "email": "yzen.dev@gmail.com" } ], "config": { "sort-packages": true }, "autoload": { "psr-4": { "LaravelFCM\\": "src/" } }, "autoload-dev": { "psr-4": { "Tests\\": "tests/" } }, "require": { "php": "^8.0", "illuminate/notifications": "^v9.0", "illuminate/contracts": "^v9.0", "illuminate/support": "^v9.0", "kreait/laravel-firebase": "^4.2.0" }, "require-dev": { "phpstan/phpstan": "^0.12.37", "mockery/mockery": "^1.0", "phpunit/phpunit": "^9.3", "squizlabs/php_codesniffer": "*" }, "support": { "issues": "https://github.com/yzen-dev/laravel-fcm/issues", "source": "https://github.com/yzen-dev/laravel-fcm" }, "extra": { "laravel": { "providers": [ "LaravelFCM\\ServiceProvider" ] } }, "scripts": { "phpunit": [ "./vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml" ], "phpstan": [ "./vendor/bin/phpstan analyse -c ./phpstan.neon src" ], "phpcs": [ "./vendor/bin/phpcs --standard=./phpcs.xml -n --no-cache" ] } }