-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 976 Bytes
/
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
{
"name": "ghanem/dtone",
"description": "A package that provides an interface between Laravel and dtone API",
"keywords": ["Laravel", "PHP", "dtone", "API", "DT One"],
"type": "laravel-package",
"license": "MIT",
"autoload": {
"psr-4": {
"Ghanem\\Dtone\\": "src/"
}
},
"authors": [
{
"name": "Abdullah Ghanem",
"email": "3bdullah.ghanem@gmail.com"
}
],
"require": {
"guzzlehttp/guzzle": "^7.3",
"illuminate/http": "^8.55|^9.32"
},
"extra": {
"laravel": {
"providers": [
"Ghanem\\Dtone\\DtoneServiceProvider"
],
"aliases": {
"Dtone": "Ghanem\\Dtone\\Facades\\Dtone"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"test-f": "vendor/bin/phpunit --filter"
}
}