generated from offline-agency/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
executable file
·60 lines (59 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
{
"name": "offline-agency/laravel-fatture-in-cloud-v2",
"description": "A wrapper plugin with Fatture in Cloud Api V2 written in Laravel PHP",
"keywords": [
"laravel",
"integration",
"api",
"fatture in cloud"
],
"homepage": "https://github.com/offline-agency/laravel-fatture-in-cloud-v2",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Offline Agency",
"email": "info@offlineagency.it"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"guzzlehttp/guzzle": "^5.8|^6.5|7.0.1|^7.2",
"illuminate/container": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/http": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^3.1|^4.0|^5.0|^6.0|^7.0",
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"OfflineAgency\\LaravelFattureInCloudV2\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OfflineAgency\\LaravelFattureInCloudV2\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"OfflineAgency\\LaravelFattureInCloudV2\\LaravelFattureInCloudV2ServiceProvider"
],
"aliases": {
"LaravelFattureInCloudV2": "OfflineAgency\\LaravelFattureInCloudV2\\LaravelFattureInCloudV2Facade"
}
}
}
}