-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
executable file
·44 lines (44 loc) · 989 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
36
37
38
39
40
41
42
43
44
{
"name": "contributte/invoice",
"type": "library",
"description": "Library for easily and quickly creating invoices for customers.",
"license": [
"MIT"
],
"keywords": [
"contributte",
"invoice"
],
"require": {
"php": ">=8.0",
"webchemistry/svg-pdf": "~1.1.3"
},
"require-dev": {
"codeception/codeception": "^5.0.4",
"codeception/module-asserts": "^3.0.0",
"codeception/module-phpbrowser": "^3.0.0",
"nette/di": "^3.0.0",
"nette/application": "^3.0.0",
"ninjify/qa": "^0.12.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-nette": "^1.0"
},
"autoload": {
"psr-4": {
"Contributte\\Invoice\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "4.1.x-dev"
}
}
}