forked from offline-agency/laravel-fatture-in-cloud
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.02 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
{
"name": "offline-agency/laravel-fatture-in-cloud",
"description": "An integration plugin with Fatture in Cloud Api written in Laravel PHP",
"type": "library",
"license": "MIT",
"version": "1.0.0",
"keywords": [
"laravel",
"integration",
"api",
"fatture in cloud"
],
"authors": [
{
"name": "Offline Agency",
"email": "[email protected]"
}
],
"require": {
"ext-json": "*",
"php": "^7.2",
"illuminate/support": "^6.0",
"laravel/passport": "*"
},
"autoload": {
"psr-4": {
"OfflineAgency\\FattureInCloud\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"OfflineAgency\\FattureInCloud\\FattureInCloudServiceProvider"
],
"aliases": {
"FattureInCloud": "GarbinLuca\\FattureInCloud\\FattureInCloudFacade"
}
}
},
"require-dev": {
"laravel/homestead": "^9.2",
"phpunit/phpunit": "^8"
}
}