-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1003 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
{
"name": "walidbtz7/laravel-intra-api",
"description": "A Laravel package to interact with the 42 Intra api ",
"license": "Apache-2.0",
"version": "1.1.0",
"authors": [{
"author": "walidbtz7",
"email": "[email protected]"
}],
"keywords": [
"laravel",
"intra",
"api"
],
"require": {
"php": "^8.1",
"laravel/framework": "^8.0|^9.0",
"composer/composer": "^2.0"
},
"autoload": {
"psr-4": {
"Walidbtz7\\IntraApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Walidbtz7\\IntraApi\\Tests\\": "tests",
"Walidbtz7\\IntraApi\\Database\\": "database"
}
},
"extra": {
"laravel": {
"providers": [
"Walidbtz7\\IntraApi\\IntraServiceProvider"
],
"aliases": {
"IntraAPI": "Walidbtz7\\IntraApi\\Facades\\IntraAPI"
}
}
}
}