-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
99 lines (99 loc) · 2.66 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "mistrfilda/app-starter",
"description": "",
"keywords": ["nette"],
"type": "project",
"license": ["MIT", "BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"require": {
"php": ">= 8.2",
"ext-simplexml": "*",
"ext-dom": "*",
"nette/application": "^3.1",
"nette/bootstrap": "^3.1",
"nette/caching": "^3.1",
"nette/di": "^3.0",
"nette/finder": "^2.5",
"nette/forms": "^3.1",
"nette/http": "^3.1",
"nette/mail": "^3.1",
"nette/robot-loader": "^3.3",
"nette/security": "^3.1",
"nette/utils": "^3.2",
"latte/latte": "^3.0",
"tracy/tracy": "^2.8",
"nettrine/annotations": "^0.7.0",
"nettrine/orm": "^0.8",
"nettrine/dbal": "dev-master as 0.8.1",
"nettrine/cache": "^0.3",
"nettrine/migrations": "^0.8",
"contributte/monolog": "^0.5",
"contributte/console": "^0.9",
"mistrfilda/datetime": "^0.4",
"ramsey/uuid-doctrine": "^1.8",
"beberlei/doctrineextensions": "^1.3",
"contributte/forms-multiplier": "^3.2",
"gedmo/doctrine-extensions": "^3.5"
},
"require-dev": {
"phpstan/phpstan": "^1.2",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-strict-rules": "^1.1",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.5",
"php-parallel-lint/php-parallel-lint": "^1.3",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.6",
"mockery/mockery": "^1.5"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests"
}
},
"minimum-stability": "stable",
"scripts": {
"clear": "rm -rf temp/cache/*",
"comload": "composer dump-autoload -o",
"stan": "vendor/bin/phpstan analyse -l max -c phpstan.neon src tests --ansi --memory-limit=-1",
"phpstan": "@stan",
"lint": "vendor/bin/parallel-lint --colors src/ tests/",
"cs": "vendor/bin/phpcs --standard=phpcs.xml src tests",
"cs-fix": "vendor/bin/phpcbf --standard=phpcs.xml src tests",
"fix": "@cs-fix",
"test-unit": "vendor/bin/phpunit --testsuite unit --colors=always --debug",
"test-integration": "vendor/bin/phpunit --testsuite integration --colors=always --debug",
"build-all-local": [
"@comload",
"@build-all"
],
"build-all": [
"@lint",
"@stan",
"@cs",
"@test-unit"
],
"migm": "bin/console migrations:migrate --no-interaction",
"yarn-prod": "yarn build-prod",
"deploy-all": [
"@migm",
"@clear",
"@yarn-prod"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}