generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 2.05 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"version": "1.1.2",
"name": "emiliopuljiz/api-whatsapp-business",
"description": "With this package you can create WhatsApp Business templates, start conversations through these templates. We are also going to have a panel to be able to receive and send messages with clients that we start conversations with.",
"keywords": [
"emiliopuljiz",
"laravel",
"api-whatsapp-business"
],
"homepage": "https://github.com/EmilioPuljiz/api-whatsapp-business",
"license": "MIT",
"authors": [
{
"name": "Emilio Puljiz",
"email": "[email protected]",
"homepage": "http://www.vidadigital.com.ar",
"role": "CEO & CTO"
}
],
"require": {
"php": "^8.2|^8.2",
"spatie/laravel-package-tools": "^1.16",
"illuminate/support": "^10.0||^11.0",
"illuminate/contracts": "^10.0||^11.0",
"illuminate/database": "^10.0||^11.0",
"illuminate/container": "^10.0||^11.0",
"illuminate/auth": "^10.0||^11.0"
},
"require-dev": {},
"autoload": {
"psr-4": {
"EmilioPuljiz\\ApiWhatsappBusiness\\": "src/",
"EmilioPuljiz\\ApiWhatsappBusiness\\Database\\Factories\\": "database/factories/",
"EmilioPuljiz\\ApiWhatsappBusiness\\Database\\Migrations\\": "database/migrations/"
}
},
"autoload-dev": {
"psr-4": {
"EmilioPuljiz\\ApiWhatsappBusiness\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"EmilioPuljiz\\ApiWhatsappBusiness\\ApiWhatsappBusinessServiceProvider"
],
"aliases": {
"ApiWhatsappBusiness": "EmilioPuljiz\\ApiWhatsappBusiness\\Facades\\ApiWhatsappBusiness"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}