-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.36 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
48
{
"name": "monday-factory/database-model",
"type": "library",
"description": "",
"keywords": ["MondayFactory", "database"],
"homepage": "https://gitlab.mondayfactory.cz/mondayfactory/database-model",
"license": ["MIT"],
"support": {
"issues": "https://gitlab.mondayfactory.cz/mondayfactory/database-model/issues"
},
"authors": [
{
"name": "Petr Besir Horáček",
"homepage": "https://mondayfactory.cz"
}
],
"autoload": {
"psr-4": {
"MondayFactory\\DatabaseModel\\": "src/"
}
},
"repositories": {
"code-checker": {
"type": "vcs",
"url": "ssh://[email protected]:2222/mondayfactory/php-code-checker.git"
}
},
"require": {
"php": "^7.2",
"nette/utils": "^2.4",
"dibi/dibi": "^4.0"
},
"require-dev": {
"phpstan/phpstan": "^0.10.5",
"phpstan/phpstan-strict-rules": "^0.10",
"slevomat/coding-standard": "^4.0",
"monday-factory/php-code-checker": "^1.0"
},
"scripts": {
"app:phpstan": "vendor/bin/phpstan analyse src -c phpstan.neon --level 7",
"app:phpcs": "vendor/bin/phpcs --standard=vendor/monday-factory/php-code-checker/ruleset.xml --extensions=php,phpt --tab-width=4 --ignore=temp -sp src",
"app:phpcbf": "vendor/bin/phpcbf --report=diff --standard=vendor/monday-factory/php-code-checker/ruleset.xml --extensions=php,phpt --tab-width=4 --ignore=temp -p src",
"app:all": [
"@app:phpstan",
"@app:phpcs"
]
}
}