-
Notifications
You must be signed in to change notification settings - Fork 103
/
composer.json
40 lines (40 loc) · 1 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "toolkito/larasap",
"description": "Laravel social auto posting (Larasap) lets you automatically post all your content to social networks such as Telegram Channel and Twitter.",
"license": "MIT",
"keywords": [
"laravel",
"social network",
"telegram",
"twitter",
"facebook"
],
"authors": [
{
"name": "Ali Hesari",
"email": "[email protected]",
"homepage": "https://alihesari.com",
"role": "Developer"
}
],
"require": {
"php" : "~7.0",
"facebook/graph-sdk": "^5.6.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"autoload": {
"psr-4": {
"Toolkito\\Larasap\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Toolkito\\Larasap\\LarasapServiceProvider"
]
}
},
"minimum-stability": "dev"
}