-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 920 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
45
46
{
"name": "vinogradsoft/navigator",
"description": "URL generator",
"authors": [
{
"name": "vinograd",
"email": "[email protected]"
}
],
"version": "1.0.1",
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"vinogradsoft/compass": "^1.1",
"nikic/fast-route": "^1.3",
"ext-intl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"overtrue/phplint": "^2.0"
},
"autoload": {
"psr-4": {
"Navigator\\": [
"src/"
]
}
},
"type": "context",
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"lint": "phplint",
"tests": "php ./vendor/bin/phpunit --colors=always tests",
"coverage": "XDEBUG_MODE=coverage phpunit --colors=always --coverage-html tests/coverage"
}
}