generated from webfucktory/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·44 lines (44 loc) · 1.03 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
{
"name": "condividendo/laravel-fatturapa",
"license": "MIT",
"require": {
"php": "^7.2",
"ext-dom": "*",
"ext-simplexml": "*",
"bensampo/laravel-enum": "1.*",
"brick/math": ">=0.6",
"illuminate/support": "5.8.*"
},
"require-dev": {
"orchestra/testbench": "^3.8",
"phpstan/phpstan": "1.4.*",
"slevomat/coding-standard": "^8.6",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Condividendo\\FatturaPA\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Condividendo\\FatturaPA\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Condividendo\\FatturaPA\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}