-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.5 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": "8ctopus/pigeon-invoice",
"type": "library",
"description": "Create pdf and html invoices",
"keywords": ["invoice", "pdf", "html"],
"homepage": "https://github.com/8ctopus/pigeon-invoice",
"license": "MIT",
"authors": [
{
"name": "8ctopus",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"dompdf/dompdf": "^3.0",
"twig/twig": "^3.0",
"twig/intl-extra": "^3.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"nunomaduro/collision": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.5|^10.0",
"phpstan/phpstan": "^1.9",
"phpmd/phpmd": "^2.13"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Oct8pus\\Invoice\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Oct8pus\\Extend\\": "extend"
}
},
"scripts": {
"test": "phpunit --coverage-html=coverage",
"fix": "php-cs-fixer fix --verbose",
"fix-risky": "php-cs-fixer fix --allow-risky=yes --verbose",
"phpstan": "phpstan analyse --level 9 src",
"phpmd": "phpmd src ansi phpmd.xml"
},
"archive": {
"exclude": [
"/cache/",
"/extend/",
"/invoice.*",
"/resources/",
"/screenshot.png",
"/vendor/"
]
}
}