-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "martenb/nextras-orm-code-generator",
"description": "Console entity, repository and mapper generator for Nextras/ORM",
"keywords": [
"generator",
"nextras",
"orm",
"nette"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Martin Brettschneider"
}
],
"autoload": {
"psr-4": {
"MartenB\\Nextras\\ORM\\": "src/"
}
},
"require": {
"php": ">=7.1",
"nette/php-generator": "^2.4 || ^3.0",
"nextras/orm": "^3.0",
"symfony/console": "~3.3 || ^4.0"
},
"require-dev": {
"ninjify/qa": "^0.9",
"nette/di": "^2.4.1 || ^3.0",
"ninjify/nunjuck": "^0.2.1"
},
"scripts": {
"qa": [
"parallel-lint -e php,phpt --blame src tests",
"phpcs --standard=vendor/ninjify/coding-standard/ruleset.xml --ignore=*/temp,*/tmp --extensions=php,phpt --encoding=utf-8 --colors -nsp src tests"
],
"qa-fix": [
"phpcbf --standard=vendor/ninjify/coding-standard/ruleset.xml --ignore=*/temp,*/tmp --extensions=php,phpt --encoding=utf-8 --colors -nsp src tests"
],
"tests": [
"tester -s -p php --colors 1 -C tests/cases"
],
"coverage": [
"tester -s -p phpdbg --colors 1 -C --coverage ./coverage.xml --coverage-src ./src tests/cases"
],
"phpstan-install": [
"mkdir -p temp/phpstan",
"composer require -d temp/phpstan phpstan/phpstan:^0.11",
"composer require -d temp/phpstan phpstan/phpstan-deprecation-rules:^0.11",
"composer require -d temp/phpstan phpstan/phpstan-nette:^0.11",
"composer require -d temp/phpstan phpstan/phpstan-strict-rules:^0.11"
],
"phpstan": [
"temp/phpstan/vendor/bin/phpstan analyse -l max -c phpstan.neon src tests"
]
},
"abandoned": "adbros/worker"
}