-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.06 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.06 KB
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
{
"name": "convertedin/convertedin-facebook",
"description": "Facebook Integration for PHP: A comprehensive PHP Composer package to seamlessly integrate with Facebook's API. This package allows you to create, manage, and analyze Facebook campaigns, and access all Facebook features programmatically. Perfect for developers looking to enhance their applications with powerful social media capabilities.",
"type": "library",
"version": "0.1.0-beta",
"require": {
"php": "^8.0",
"facebook/php-business-sdk": "dev-main",
"illuminate/support": "10.x-dev"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Convertedin\\ConvertedinFacebook\\": "src/"
}
},
"authors": [
{
"name": "Mohamed Ashraf",
"email": "m.ashraf@converted.in"
}
],
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Convertedin\\ConvertedinFacebook\\Providers\\FacebookServiceProvider"
],
"aliases": {
"FacebookApi": "Convertedin\\ConvertedinFacebook\\Facades\\FacebookFacade"
}
}
}
}