Skip to content

Commit 55fcd6b

Browse files
committed
First commit!
1 parent 0fa2e1d commit 55fcd6b

File tree

7 files changed

+2510
-4
lines changed

7 files changed

+2510
-4
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
composer.phar
22
/vendor/
3-
4-
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
5-
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
6-
# composer.lock
3+
phpunit.xml

composer.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "noplanman/telegram-bot-manager",
3+
"type": "library",
4+
"description": "PHP Telegram Bot Manager",
5+
"keywords": ["telegram", "bot", "manager"],
6+
"license": "MIT",
7+
"homepage": "https://github.com/noplanman/php-telegram-bot-manager",
8+
"support": {
9+
"issues": "https://github.com/noplanman/php-telegram-bot-manager/issues",
10+
"source": "https://github.com/noplanman/php-telegram-bot-manager"
11+
},
12+
"authors": [
13+
{
14+
"name": "Armando Lüscher",
15+
"email": "armando@noplanman.ch",
16+
"homepage": "https://noplanman.ch",
17+
"role": "Developer"
18+
}
19+
],
20+
"require": {
21+
"php": ">=5.6",
22+
"longman/telegram-bot": "0.35"
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"NPM\\TelegramBotManager\\": "src"
27+
}
28+
},
29+
"autoload-dev": {
30+
"psr-4": {
31+
"NPM\\TelegramBotManager\\": "tests"
32+
}
33+
},
34+
"require-dev": {
35+
"phpunit/phpunit": "^5.5",
36+
"squizlabs/php_codesniffer": "~2.6"
37+
}
38+
}

0 commit comments

Comments
 (0)