-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 952 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 952 Bytes
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
{
"name": "highsolutions/laravel-poster",
"description": "A Laravel package for easy Slack notifications about posts published on subscribed Facebook's fanpages.",
"keywords": ["laravel", "posts", "facebook", "Slack", "notifications", "wall"],
"authors": [
{
"name": "HighSolutions",
"email": "adam@highsolutions.pl"
}
],
"license": "MIT",
"require": {
"php": ">=5.6.4",
"illuminate/support": "5.*|^6.0|^7.0|^8.0",
"facebook/graph-sdk": "5.5.*"
},
"autoload": {
"psr-4": {
"HighSolutions\\Poster\\": "src/"
}
},
"extra": {
"component": "package",
"frameworks": ["Laravel 5.x", "Laravel 6.x", "Laravel 7.x", "Laravel 8.x"],
"laravel": {
"providers": [
"HighSolutions\\Poster\\PosterServiceProvider"
]
}
},
"minimum-stability": "stable"
}