-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
97 lines (97 loc) · 2.81 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/arxeiss/BaconQrCode"
}
],
"require": {
"php": "^8.1",
"ext-gd": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"bacon/bacon-qr-code": "dev-add-gd-backend#650e10121f4d8707ecdc5984b042cae7731e388a",
"erusev/parsedown": "^1.7",
"granam/czech-vocative": "2.2.0",
"guzzlehttp/guzzle": "7.8.1",
"ifsnop/mysqldump-php": "2.12",
"laravel/framework": "10.43.0",
"laravel/sanctum": "3.3.3",
"laravel/ui": "4.4.0",
"league/flysystem-aws-s3-v3": "3.24.0",
"league/flysystem-ftp": "3.24.0",
"mpdf/mpdf": "8.2.2",
"phpoffice/phpspreadsheet": "2.0.0",
"prologue/alerts": "1.1.0",
"resampler/resampler": "1.0",
"tamtamchik/namecase": "3.0.0"
},
"require-dev": {
"arxeiss/coding-standards": "0.12.0",
"barryvdh/laravel-debugbar": "3.9.2",
"fakerphp/faker": "1.23.1",
"laravel/tinker": "2.9.0",
"mockery/mockery": "1.6.7",
"nunomaduro/collision": "7.10.0",
"nunomaduro/larastan": "2.8.1",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"phpunit/phpunit": "10.5.9",
"spatie/laravel-ignition": "2.4.1",
"heroku/heroku-buildpack-php": "*"
},
"autoload": {
"files": ["app/helpers.php"],
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"CzechitasApp\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"php artisan package:discover"
],
"post-install-cmd": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"php artisan migrate --force"
],
"warmup": [
"php artisan warmup"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}