-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.09 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
{
"name": "fykosak/nette-fks-utils",
"description": "",
"type": "library",
"license": "GPL-3.0-or-later",
"require": {
"php": ">=8.1",
"nette/utils": "v3.* | v4.*",
"nette/di": "v3.*",
"nette/application": "v3.*",
"latte/latte": "v3.*",
"nette/forms": "v3.*",
"nette/http": "v3.*",
"ext-pdo": "*",
"ext-json": "*",
"ext-gettext": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.7.1",
"nette/tester": "^v2.4.0",
"phpstan/phpstan": "1.10.26"
},
"authors": [
{
"name": "FYKOS",
"email": "[email protected]"
}
],
"scripts": {
"testPSR": "php -e vendor/squizlabs/php_codesniffer/bin/phpcs --standard=PSR12 src/",
"test": [
"rm -rf test/tmp/",
"vendor/bin/tester tests -p php -s -c tests/php.ini -j 1"
],
"testCoverage": [
"rm -rf test/tmp/",
"vendor/bin/tester tests -p php --coverage coverage.html --coverage-src src/ -s -c tests/php.ini -j 1"
]
},
"autoload": {
"psr-4": {
"Fykosak\\Utils\\": "src/",
"Fykosak\\Utils\\Tests\\": "tests/Tests"
}
}
}