-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.75 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.75 KB
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
{
"name": "netvor/invoice-test-app",
"description": "Invoice Test App developed by Netvor for purpose of verifying the knowledge of a potential new team member.",
"type": "project",
"require": {
"php": ">= 8.0",
"ext-curl": "*",
"ext-filter": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo_mysql": "*",
"ext-session": "*",
"ext-simplexml": "*",
"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.4",
"nette/security": "^3.1",
"nette/utils": "^3.2",
"latte/latte": "^2.10",
"tracy/tracy": "^2.9",
"contributte/webpack": "^2.1",
"nettrine/orm": "^0.8.3"
},
"require-dev": {
"ext-dom": "*",
"ext-openssl": "*",
"ext-phar": "*",
"ext-zip": "*",
"ext-zlib": "*",
"contributte/console": "^0.9.1",
"mockery/mockery": "^1.5",
"nepada/phpstan-nette-tester": "^0.4.0",
"nette/coding-standard": "^3.2",
"nette/tester": "^2.4",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-doctrine": "^1.2",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"nettrine/migrations": "^0.7.1"
},
"autoload": {
"psr-4": {
"Netvor\\Invoice\\": "app"
}
},
"minimum-stability": "stable",
"scripts": {
"check-cs": "ecs check app/ bin/ config/ migrations/ tests/ www/ --preset php80",
"fix-cs": "ecs check app/ bin/ config/ migrations/ tests/ www/ --preset php80 --fix",
"phpstan": "phpstan analyze -c tests/phpstan.neon",
"test": "tester tests/"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}