-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
41 lines (41 loc) · 986 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": "nspehler/laravel-insee",
"type": "library",
"description": "Lookup SIREN and SIRET numbers from Laravel",
"version": "1.1.0",
"time": "2019-01-23",
"keywords": [
"laravel",
"insee",
"siren",
"siret"
],
"homepage": "https://github.com/NSpehler/laravel-insee",
"license": "MIT",
"authors": [
{
"name": "Nicolas Spehler",
"email": "[email protected]",
"homepage": "https://nspehler.com"
}
],
"require": {
"guzzlehttp/guzzle": "^6.3"
},
"autoload": {
"psr-4": {
"NSpehler\\LaravelInsee\\": "src"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"NSpehler\\LaravelInsee\\InseeServiceProvider"
],
"aliases": {
"Insee": "NSpehler\\LaravelInsee\\Facades\\Insee"
}
}
}
}