-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 919 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 919 Bytes
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
{
"name": "xruff/navigation",
"type": "library",
"description": "Nette extension - navigation for breadcrumbs",
"keywords": ["nette", "breadcrumbs", "menu", "component"],
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Pavel Lauko"
}
],
"support": {
"issues": "https://github.com/XRuff/Navigation/issues"
},
"require": {
"nette/application": "~2.4",
"nette/component-model": "~2.3"
},
"require-dev": {
"nette/application": "~2.4",
"nette/component-model": "~2.3",
"vanio/coding-standards": "^0.1@dev"
},
"autoload": {
"psr-4": {
"XRuff\\Components\\Navigation\\": "src"
}
},
"minimum-stability": "dev",
"scripts": {
"lint": "\"vendor/bin/phpcs\" --standard=ruleset.xml --extensions=php --encoding=utf-8 --ignore=vendor .",
"fix": "\"vendor/bin/phpcbf\" --standard=ruleset.xml --extensions=php --encoding=utf-8 --no-patch --ignore=vendor ."
}
}