forked from abdelrahmanbadr/laravel-pipl-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 822 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
39
40
41
42
{
"name": "abdelrahmanbadr/pipl-laravel",
"description": "Pipl Laravel Package",
"minimum-stability": "dev",
"license": "MIT",
"keywords": [
"pipl",
"laravel",
"api",
"social"
],
"authors": [
{
"name": "Abdelrahman Badr ElDeen",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "~6.0",
"vlucas/phpdotenv": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"mockery/mockery": "^1.2",
"illuminate/support": "^5.4"
},
"autoload": {
"psr-4": {
"Abdelrahman_badr\\Pipl\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Abdelrahman_badr\\Pipl\\PipleServiceProvider"
],
"aliases": {
"Pipl": "Abdelrahman_badr\\Pipl\\Facades\\Pipl"
}
}
}
}