-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
119 lines (119 loc) · 3.73 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "badgeteam/hatchery",
"description": "Hatchery micropython app repository . .",
"keywords": ["micropython", "badge", "repository"],
"authors": [
{
"name": "Anne Jan Brouwer",
"email": "[email protected]",
"homepage": "https://annejan.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"isseus": "https://github.com/BadgeTeam/Hatchery/issues"
},
"license": "MIT",
"type": "project",
"require": {
"php": "^8.1",
"ext-gd": "*",
"ext-gmp": "*",
"ext-json": "*",
"ext-zlib": "*",
"ext-mbstring": "*",
"asbiin/laravel-webauthn": "^2.0",
"bacon/bacon-qr-code": "^2.0",
"bepsvpt/secure-headers": "^7.2",
"calebporzio/sushi": "^2.4",
"czproject/git-php": "^4.0",
"darkaonline/l5-swagger": "^8.3",
"facade/ignition": "^2.0",
"fruitcake/laravel-cors": "^2.0",
"intervention/image": "^2.5",
"laravel/framework": "^8.0",
"laravel/horizon": "^5.9",
"laravel/tinker": "^2.4",
"laravel/ui": "^3.0",
"laravelcollective/html": "^6.1",
"livewire/livewire": "^1.0",
"pragmarx/google2fa-laravel": "^1.3",
"pragmarx/recovery": "^0.2",
"predis/predis": "^1.1",
"seld/jsonlint": "^1.8",
"sentry/sentry-laravel": "^2.12",
"spatie/laravel-backup": "^6.9",
"spatie/laravel-sitemap": "^5.7",
"symfony/yaml": "^5",
"verschuur/laravel-robotstxt": "^3"
},
"require-dev": {
"ext-dom": "*",
"barryvdh/laravel-ide-helper": "^2.7",
"codacy/coverage": "^1.4",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.2",
"codeception/module-laravel5": "^1.1",
"composer/composer": "^1.10.6",
"doctrine/dbal": "^2.10",
"fzaninotto/faker": "^1.9",
"jorijn/laravel-security-checker": "^2.3",
"mockery/mockery": "^1.3",
"nunomaduro/larastan": "^0.6.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2",
"phan/phan": "^5.3",
"phpunit/phpunit": "^9.2",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^7.1",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.22"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize",
"@php artisan vendor:publish --force --tag=livewire:assets --ansi"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}