Skip to content

Commit

Permalink
Update #0 - Viber Bot initialize
Browse files Browse the repository at this point in the history
  • Loading branch information
Necko1996 committed Jan 8, 2019
1 parent 793ba2a commit 2f4ec2b
Show file tree
Hide file tree
Showing 39 changed files with 3,629 additions and 0 deletions.
57 changes: 57 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "paragraf-lex/viber-bot",
"description": "Viber bot for PHP for Laravel",
"keywords": [
"paragraf",
"viber",
"bot",
"laravel",
"php"
],
"homepage": "https://github.com/paragraf-lex/viber-bot",
"license": "MIT",
"authors": [
{
"name": "Nemanja Ivankovic",
"email": "nemanja.ivankovic@paragraf.rs",
"homepage": "https://paragraf.rs",
"role": "Developer"
}
],
"require": {
"php": "^7.1.3",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0",
"php-curl-class/php-curl-class": "^8.4"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"Paragraf\\ViberBot\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Paragraf\\ViberBot\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Paragraf\\ViberBot\\ViberBotServiceProvider"
]
}
}
}
Loading

0 comments on commit 2f4ec2b

Please sign in to comment.