This repository has been archived by the owner on Dec 28, 2022. It is now read-only.
forked from HDInnovations/UNIT3D-Community-Edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
106 lines (106 loc) · 3.35 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-zip": "*",
"andkab/laravel-joypixels": "^1.0",
"appstract/laravel-opcache": "^4.0",
"arcanedev/log-viewer": "^8.0",
"assada/laravel-achievements": "^2.3",
"bandwidth-throttle/token-bucket": "^2.0",
"bepsvpt/secure-headers": "^7.0",
"doctrine/dbal": "^2.10",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^2.0",
"gabrielelana/byte-units": "^0.5.0",
"guzzlehttp/guzzle": "^7.0.1",
"hootlex/laravel-moderation": "^1.0",
"intervention/image": "^2.5",
"joypixels/assets": "^6.0",
"kyslik/column-sortable": "^6.0",
"laravel/framework": "^8.0",
"laravel/octane": "^0.1.1",
"laravel/tinker": "^2.0",
"laravel/ui": "^3.1.0",
"league/flysystem-cached-adapter": "~1.0",
"league/flysystem-sftp": "~1.0",
"livewire/livewire": "^2.0",
"marcreichel/igdb-laravel": "^2.1.0",
"mews/purifier": "^3.2",
"paragonie/constant_time_encoding": "^2.0",
"predis/predis": "^1.1",
"spatie/laravel-backup": "^7.0",
"spatie/laravel-cookie-consent": "^3.0",
"spatie/laravel-image-optimizer": "^1.6",
"spatie/ssl-certificate": "^1.12",
"spiral/roadrunner": "^2.0",
"symfony/dom-crawler": "^2.7|^3.0",
"theodorejb/polycast": "^1.0",
"voku/anti-xss": "^4.1"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.9.1",
"jasonmccreary/laravel-test-assertions": "^1.0",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^5.0",
"phpro/grumphp": "^1.2.0",
"phpunit/phpunit": "^9.3",
"rector/rector": "^0.10",
"symplify/changelog-linker": "^9.2"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"ext-mcrypt": "1.0"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan vendor:publish --force --tag=livewire:assets --ansi",
"@php artisan vendor:publish --tag=public --provider=\"andkab\\LaravelJoyPixels\\LaravelJoyPixelsServiceProvider\""
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}