-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 947 Bytes
/
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
{
"name": "invoiceninja/einvoice",
"description": "Schema for einvoicing standards",
"type": "library",
"license": "Elastic-2.0",
"autoload": {
"psr-4": {
"InvoiceNinja\\EInvoice\\": "src/"
}
},
"authors": [
{
"name": "David Bomba",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"sabre/xml": "^4.0",
"illuminate/collections": "^10|^11",
"symfony/validator": "^7",
"symfony/serializer": "^7",
"symfony/property-access": "^7",
"symfony/property-info": "^7.0",
"phpdocumentor/reflection-docblock": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"symfony/console": "^7",
"nette/php-generator": "^4.1",
"phpstan/phpstan": "^1.11",
"milo/schematron": "^1.0",
"friendsofphp/php-cs-fixer": "^3.58"
}
}