-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 2.2 KB
/
composer.json
File metadata and controls
82 lines (82 loc) · 2.2 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "instruktori-brno/tmou-web",
"description": "TMOU web",
"keywords": [],
"type": "project",
"license": "proprietary",
"require": {
"roave/security-advisories": "dev-master",
"php": ">= 8.3",
"nette/application": "^3.2",
"nette/bootstrap": "^3.2",
"nette/caching": "^3.2",
"nette/database": "^3.2",
"nette/di": "^3.0",
"nette/finder": "^3.0",
"nette/forms": "^3.2",
"nette/http": "^3.2",
"nette/mail": "^4.0",
"nette/robot-loader": "^4.0",
"nette/security": "^3.1",
"nette/utils": "^4.0",
"latte/latte": "^3.0",
"tracy/tracy": "^2.6",
"nextras/form-components": "^2.0",
"nextras/forms-rendering": "dev-master",
"nettrine/dbal": "^0.10",
"nettrine/orm": "^0.10",
"contributte/console": "^0.10.1",
"nettrine/migrations": "^0.9.0",
"league/csv": "^9.2",
"ublaboo/datagrid": "^7.1",
"league/oauth2-client": "^2.4",
"stevenmaguire/oauth2-keycloak": "4.0",
"ramsey/uuid-doctrine": "^2.0",
"grifart/enum": "^0.2.0",
"texy/texy": "^3.2",
"mailgun/mailgun-php": "^4.0",
"psr/http-factory": "^1.0",
"nyholm/psr7": "^1.2",
"kriswallsmith/buzz": "^1.0",
"ext-curl": "*",
"ext-json": "*",
"ext-dom": "*",
"ext-intl": "*",
"firebase/php-jwt": "^6.0",
"ext-libxml": "*",
"contributte/psr6-caching": "^0.3.0",
"drabek-digital/captcha": "^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"slevomat/coding-standard": "^7",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-strict-rules": "^1.6",
"phpstan/phpstan-nette": "^1.3",
"phpstan/phpstan-doctrine": "^1.5",
"nextras/mail-panel": "^2.4"
},
"autoload": {
"classmap": ["App/Booting.php"],
"psr-4": {
"InstruktoriBrno\\TMOU\\": "App/"
}
},
"autoload-dev": {
"psr-4": {
"InstruktoriBrno\\TMOU\\Tests\\": "Tests/"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"scripts": {
"stan": "vendor/bin/phpstan --memory-limit=256M analyse --level 7 App Tests",
"sniff": "./vendor/bin/phpcs --standard=ruleset.xml App/ Tests/",
"sniff-fix": "./vendor/bin/phpcbf --standard=ruleset.xml App/ Tests/"
}
}