-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 962 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 962 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
35
36
{
"name": "xruff/apputils",
"type": "library",
"description": "Utils for Nette Framework application",
"keywords": ["nette", "logger", "log", "settings", "configuration"],
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Pavel Lauko"
}
],
"support": {
"issues": "https://github.com/XRuff/AppUtils/issues"
},
"require": {
"nette/utils": "~2.4",
"nette/database": "~2.4",
"nette/caching": "~2.4",
"nette/mail": "~2.4",
"nette/security": "~2.4",
"xruff/basedbmodel": "dev-master"
},
"require-dev": {
"tracy/tracy": "2.4.*",
"vanio/coding-standards": "^0.1@dev"
},
"autoload": {
"psr-4": {
"XRuff\\App\\Model\\Utils\\": "src"
}
},
"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 ."
}
}