PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Andrey Iatsenko   PHP Send Slack Message   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Send Slack Message
Compose and send messages to a Slack channel
Author: By
Last change:
Date: 13 days ago
Size: 1,213 bytes
 

Contents

Class file image Download
{ "name": "yzen.dev/php-slack", "version": "0.1", "description": "PHP client for Slack", "minimum-stability": "dev", "prefer-stable": true, "license": "MIT", "keywords": [ "slack", "client", "slack client"], "authors": [ { "name": "Andey Iatsenko", "email": "yzen.dev@gmail.com" } ], "config": { "sort-packages": true }, "autoload": { "psr-4": { "PHPSlack\\": "src/" } }, "autoload-dev": { "psr-4": { "Tests\\": "tests/" } }, "require": { "php": "^8.0", "guzzlehttp/guzzle": "7.3.*" }, "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 -s" ] }, "require-dev": { "roave/security-advisories": "dev-latest" , "phpstan/phpstan": "^0.12.82", "mockery/mockery": "^1.0", "phpunit/phpunit": "^9.3", "squizlabs/php_codesniffer": "*" }, "support": { "issues": "https://github.com/yzen-dev/php-slack/issues", "source": "https://github.com/yzen-dev/php-slack" } }