-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
executable file
·65 lines (64 loc) · 1.83 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
61
62
63
64
65
{
"name": "fatturaelettronicaphp/fattura-elettronica",
"description": "Pacchetto PHP per la lettura, la generazione e la validazione della fattura elettronica, sia per la Pubblica Amministrazione che tra privati (B2B)",
"keywords": [
"Fattura",
"Fattura PHP",
"Fattura Elettronica",
"Fattura Elettronica PHP",
"Fattura Elettronica Semplificata",
"Fattura PA",
"Fattura Pubblica Amministrazione",
"PHP"
],
"homepage": "https://fatturaelettronicaphp.github.io/FatturaElettronica/",
"license": "MIT",
"authors": [
{
"name": "Daniele Rosario",
"email": "[email protected]",
"homepage": "https://weble.it",
"role": "Developer"
},
{
"name": "Tobia Zanarella",
"email": "[email protected]",
"homepage": "https://www.shellrent.com",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-iconv": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-openssl": "*",
"alcohol/iso4217": "^3.1 || ^4.0",
"league/iso3166": "^2.1 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"larapack/dd": "^1.0",
"nunomaduro/collision": "^5.11",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"FatturaElettronicaPhp\\FatturaElettronica\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"FatturaElettronicaPhp\\FatturaElettronica\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"docs:build": "vuepress build docs"
},
"config": {
"sort-packages": true
}
}