-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (51 loc) · 1.22 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
{
"name": "axiostudio/fattura-elettronica",
"description": "Pacchetto per la gestione della fatturazione elettronica in PHP.",
"keywords": [
"axiostudio",
"fattura-elettronica",
"xml",
"php",
"italia",
"package",
"fattura",
"PA",
"Laravel",
"Backend"
],
"homepage": "https://github.com/axiostudio/fattura-elettronica",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Axio Studio",
"email": "info@axio.studio"
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"spatie/array-to-xml": "^3.2",
"symfony/validator": "^6.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.48",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Axiostudio\\FatturaElettronica\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Axiostudio\\FatturaElettronica\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"cs-fix": "php php-cs-fixer fix src --rules=@PSR12 --allow-risky=yes"
},
"config": {
"sort-packages": true
}
}