-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.26 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
{
"name": "malamalca/pures3",
"description": "Pures 3",
"homepage": "https://www.pures3.si",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Pures3",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"nikic/fast-route": "^1.3",
"monolog/monolog": "^2.3",
"tecnickcom/tcpdf": "^6.6",
"justinrainbow/json-schema": "^5.2",
"mikehaertl/phpwkhtmltopdf": "^2.5",
"michelf/php-markdown": "^2.0",
"seld/jsonlint": "^1.10"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"cakephp/cakephp-codesniffer": "^4.5",
"phpunit/phpunit": "^10.1",
"phpstan/phpstan": "^1.10",
"vimeo/psalm": "^5.12"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs-check": "phpcs --colors -p -s",
"cs-fix": "phpcbf --colors",
"stan": "phpstan analyse src/",
"test": "phpunit --colors=always",
"check": [
"@test",
"@cs-check",
"@stan"
]
}
}