-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.01 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
{
"name": "nielsdos/crepes",
"description": "Open-source courses and events registration platform.",
"keywords": ["courses", "event", "registration", "enrollment"],
"license": "AGPL-3.0-only",
"type": "project",
"require": {
"php": "^8.1",
"anhskohbo/no-captcha": "^3.0.4",
"blade-ui-kit/blade-icons": "^1.4",
"ezyang/htmlpurifier": "^4.16",
"laravel/framework": "^9.0",
"laravel/ui": "^4.0.2",
"phpoffice/phpspreadsheet": "^1.25"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.2",
"barryvdh/laravel-ide-helper": "^2.12",
"fakerphp/faker": "^1.9.1",
"filp/whoops": "^2.0",
"laravel-lang/attributes": "^2.0",
"laravel-lang/lang": "^12.1",
"laravel-lang/publisher": "^14.4",
"laravel/pint": "^1.2",
"laravel/tinker": "^2.7",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^6.1",
"nunomaduro/larastan": "^2.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"files": [
"app/helpers.php"
],
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "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"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}