From 35cca5dfa0788bf2aceebdac587e11f007390762 Mon Sep 17 00:00:00 2001 From: Pavel Shevaev Date: Mon, 23 Oct 2023 19:02:35 +0300 Subject: [PATCH] Initial commit --- .gitignore | 1 + composer.json | 11 +++++ slack.inc.php | 124 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 136 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json create mode 100644 slack.inc.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6e92f57 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +tags diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..84ffc68 --- /dev/null +++ b/composer.json @@ -0,0 +1,11 @@ +{ + "name": "bit/slask", + "description": "Slack simple posting utils", + "homepage": "https://git.bit5.ru/bit/slack", + "require": { + "php": ">=7.4" + }, + "autoload": { + "classmap": ["slack.inc.php"] + } +} diff --git a/slack.inc.php b/slack.inc.php new file mode 100644 index 0000000..4f0f981 --- /dev/null +++ b/slack.inc.php @@ -0,0 +1,124 @@ +