-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.37 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": "stanislav-janu/gps",
"description": "GPS extension for nette",
"homepage": "https://janu.software",
"license": "MIT",
"authors": [
{
"name": "Stanislav Janů",
"homepage": "https://janu.software"
}
],
"require": {
"php": ">=8.0",
"nette/utils": "^4.0"
},
"require-dev": {
"stanislav-janu/phpstan": "^1.0",
"nette/tester": "^2.5",
"rector/rector": "^1.0"
},
"scripts": {
"t": "vendor/bin/tester tests",
"sa": "vendor/bin/phpstan analyse",
"sap": "vendor/bin/phpstan analyse --pro",
"re": "vendor/bin/rector process src --config rector.php --dry-run --ansi",
"re-f": "vendor/bin/rector process src --config rector.php --ansi",
"cs": "temp/nette-coding-standard/ecs check src tests --preset php80",
"cs-f": "temp/nette-coding-standard/ecs check src tests --preset php80 --fix",
"cs-i": "rm -rf temp/nette-coding-standard && composer create-project nette/coding-standard temp/nette-coding-standard"
},
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"JCode\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "stable"
}