-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
69 lines (69 loc) · 1.71 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
66
67
68
69
{
"name": "fakturoid/fakturoid-php",
"description": "Fakturoid PHP library",
"keywords": [
"fakturoid",
"api",
"invoice"
],
"homepage": "https://www.fakturoid.cz/api",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fakturoid and contributors",
"homepage": "https://www.fakturoid.cz"
}
],
"support": {
"email": "podpora@fakturoid.cz"
},
"require": {
"php": ">=8.2",
"ext-json": "*",
"psr/http-client": "^1.0",
"nyholm/psr7": "^1.8"
},
"require-dev": {
"ext-dom": "*",
"ext-mbstring": "*",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^11.4",
"rector/rector": "^1.2",
"squizlabs/php_codesniffer": "^3.10",
"guzzlehttp/guzzle": "^7.9"
},
"suggest": {
"guzzlehttp/guzzle": "for usage with guzzle",
"symfony/http-client": "for usage with symfony"
},
"autoload": {
"psr-4": {
"Fakturoid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fakturoid\\Tests\\": "tests/"
}
},
"scripts": {
"test:phpunit": "php -d xdebug.mode=off vendor/phpunit/phpunit/phpunit",
"coverage:phpunit": "php -d xdebug.mode=coverage -d memory_limit=512M vendor/phpunit/phpunit/phpunit --coverage-html=coverage --path-coverage",
"check:phpstan": "php vendor/bin/phpstan analyse -c phpstan.neon",
"check:rector": "php vendor/bin/rector process src tests --dry-run",
"check:cs": "phpcs --standard=phpcs.xml",
"fix:cs": "phpcbf --standard=phpcs.xml",
"fix:rector": "php vendor/bin/rector process src tests",
"fix:all": [
"@fix:rector",
"@fix:cs"
],
"check:all": [
"@check:phpstan",
"@check:rector",
"@check:cs",
"@test:phpunit"
]
}
}