-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 2.02 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
{
"name": "horstoeko/ubl",
"keywords": ["ubl","xrechnung","electronic","invoice"],
"description": "A library for creating and reading european electronic invoices",
"homepage": "https://github.com/horstoeko/ubl",
"type": "package",
"license": "MIT",
"prefer-stable": true,
"authors": [
{
"name": "Daniel Erling",
"email": "[email protected]",
"role": "lead"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"horstoeko\\ubl\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"horstoeko\\ubl\\tests\\": "tests"
}
},
"require": {
"php": "^7.3|^8.0|^8.1",
"jms/serializer": "^3",
"adrienrn/php-mimetyper": "^0.2",
"goetas-webservices/xsd2php-runtime": "^0.2.13",
"ext-simplexml": "*",
"symfony/validator": "^5|^6",
"symfony/intl": "^5|^6",
"symfony/yaml": "^5|^6",
"horstoeko/stringmanagement": "^1"
},
"require-dev": {
"goetas-webservices/xsd2php": "^0",
"pdepend/pdepend": "^2",
"phploc/phploc": "^7",
"phpmd/phpmd": "^2",
"phpstan/phpstan": "^0.12.59",
"phpunit/phpunit": "^9",
"sebastian/phpcpd": "^6",
"squizlabs/php_codesniffer": "^3",
"theseer/phpdox": "^0"
},
"scripts": {
"tests": "./vendor/bin/phpunit ./tests/",
"phpcs": "./vendor/bin/phpcs --standard=./build/phpcsrules.xml --extensions=php --ignore=autoload.php ./src ./tests",
"phpcbf": "./vendor/bin/phpcbf --ignore=/src/entities/* -q ./src ./tests",
"phpstan": "./vendor/bin/phpstan analyze -c ./build/phpstan.neon --autoload-file=vendor/autoload.php --no-interaction --no-progress --xdebug",
"phpstan_cs": "./vendor/bin/phpstan analyze -c ./build/phpstan.neon --autoload-file=vendor/autoload.php --no-interaction --no-progress --error-format=checkstyle --xdebug"
}
}