-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 996 Bytes
/
composer.json
File metadata and controls
51 lines (51 loc) · 996 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "xruff/basedbmodel",
"type": "library",
"description": "Nette database utility",
"keywords": [
"nette",
"analytics",
"google",
"ga",
"component"
],
"license": [
"BSD-3-Clause",
"GPL-2.0",
"GPL-3.0"
],
"authors": [
{
"name": "Pavel Lauko"
}
],
"support": {
"issues": "https://github.com/XRuff/BaseDbModel/issues"
},
"require": {
"nette/database": "~2.4",
"nette/utils": "~2.4"
},
"require-dev": {
"nette/database": "~2.4",
"nette/utils": "~2.4",
"nette/tester": "~1.1.0",
"tracy/tracy": "2.4.*",
"vanio/coding-standards": "^0.1@dev"
},
"autoload": {
"psr-4": {
"XRuff\\App\\Model\\": "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 ."
},
"config": {
"platform": {
"php": "7.1"
}
}
}