forked from contributte/invoice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·47 lines (47 loc) · 1.08 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
{
"name": "contributte/invoice",
"type": "library",
"description": "Library for easily and quickly creating invoices for customers.",
"tags": [
"contributte",
"invoice"
],
"require": {
"php": ">=7.2",
"nette/utils": "^3.0",
"setasign/fpdf": "^1.8"
},
"require-dev": {
"ninjify/qa": "^0.8.0",
"ninjify/nunjuck": "^0.2.0",
"nette/di": "^3.0",
"nette/application": "^3.0",
"codeception/codeception": "^2.4"
},
"autoload": {
"psr-4": {
"Contributte\\Invoice\\": "src/"
}
},
"scripts": {
"qa": [
"linter src tests",
"codesniffer src tests"
],
"tests": [
"vendor/bin/codecept run"
],
"phpstan-install": [
"mkdir -p temp/phpstan",
"composer require -d temp/phpstan phpstan/phpstan:^0.10",
"composer require -d temp/phpstan phpstan/phpstan-deprecation-rules:^0.10",
"composer require -d temp/phpstan phpstan/phpstan-nette:^0.10",
"composer require -d temp/phpstan phpstan/phpstan-strict-rules:^0.10"
],
"phpstan": [
"temp/phpstan/vendor/bin/phpstan analyse -l max src"
]
},
"minimum-stability": "RC",
"prefer-stable": true
}