-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
100 lines (100 loc) · 2.59 KB
/
composer.json
File metadata and controls
100 lines (100 loc) · 2.59 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "heroyt/laserliga",
"type": "project",
"minimum-stability": "stable",
"license": "GPL-3.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.laserliga.cz"
}
],
"scripts": {
"install-app": "composer build && php install.php",
"serve": "php -S localhost:8000 index.php",
"test": "./vendor/bin/phpunit",
"docs": "doxygen",
"build-production": "composer update --no-dev && composer dump-autoload --no-dev && npm install && npm run build && npm prune --production",
"build": "composer update && composer dump-autoload && npm install && npm run build",
"swagger": "./vendor/bin/openapi vendor/lsr/request/src/Dto vendor/lsr/request/src/Enums src -o openApi/swagger.yaml",
"phpstan": "./vendor/bin/phpstan -c phpstan.neon"
},
"require": {
"tracy/tracy": "^2.10",
"dibi/dibi": "^5.0",
"latte/latte": "^3.0",
"nette/utils": "^4.0",
"nette/security": "^3.2",
"ext-zip": "*",
"php": "^8.4",
"nette/http": "^3.3",
"ext-gettext": "*",
"nette/di": "^3.2",
"ext-mbstring": "*",
"ext-fileinfo": "*",
"lsr/interfaces": "^0.3",
"lsr/helpers": "^0.3",
"lsr/core": "^0.3",
"lsr/routing": "^0.3",
"lsr/logging": "^0.3",
"lsr/request": "^0.3",
"lsr/cache": "^0.3.1",
"lsr/db": "^0.3",
"lsr/auth": "^0.3",
"ext-simplexml": "*",
"nette/mail": "^4.0",
"ext-curl": "*",
"ext-openssl": "*",
"minishlink/web-push": "^9.0",
"ext-imagick": "*",
"ext-gd": "*",
"zircote/swagger-php": "^5.0",
"orisai/scheduler": "^2",
"orisai/nette-scheduler": "^1.1",
"symfony/lock": "^7",
"orisai/nette-console": "^1.4",
"ext-redis": "*",
"ext-igbinary": "*",
"ext-zlib": "*",
"lsr/lg-result-parsing": "dev-master",
"spatie/dropbox-api": "^1.23",
"lsr/cqrs": "^0.1.1",
"aws/aws-sdk-php": "^3.342",
"ext-exif": "*",
"matomo/matomo-php-tracker": "^3.3",
"maestroerror/php-heic-to-jpg": "^1.0",
"league/commonmark": "^2.6",
"elgigi/commonmark-emoji": "^2.0",
"netpromotion/profiler": "^1.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^12",
"gettext/gettext": "^5.7",
"phpstan/phpstan": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-dibi": "^2.0",
"phpstan/phpstan-nette": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"include/functions.php"
]
},
"authors": [
{
"name": "Tomáš Vojík",
"email": "vojik@wboy.cz"
}
],
"config": {
"optimize-autoloader": true,
"apcu-autoloader": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}