-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.09 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
{
"name": "alexdor-rpgmaker/rodexal",
"type": "project",
"description": "Version 2019-? du site des Alex d'or",
"keywords": [
"framework",
"laravel"
],
"license": "CC",
"require": {
"php": "^8.2",
"ext-intl": "*",
"ext-json": "*",
"cviebrock/eloquent-sluggable": "^10.0",
"doctrine/dbal": "^3.3",
"genert/bbcode": "^1.1",
"guzzlehttp/guzzle": "^7.4.1",
"laravel-notification-channels/discord": "^1.3",
"laravel/framework": "^10.0",
"laravel/legacy-factories": "^1.1",
"laravel/tinker": "^2.6",
"laravel/ui": "^4.2",
"league/oauth2-client": "^2.6",
"spatie/laravel-feed": "^4.1",
"willvincent/feeds": "^2.2"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.11",
"beyondcode/laravel-dump-server": "^1.7",
"spatie/laravel-ignition": "^2.0",
"filp/whoops": "^2.14",
"fakerphp/faker": "^1.17.0",
"heroku/heroku-buildpack-php": "^229.0",
"laravel/dusk": "^7.5",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"process-timeout": 600
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit --testdox",
"test:watch": "phpunit-watcher watch --testdox",
"test:e2e": "php artisan dusk --testdox",
"test:e2e:fails": "php artisan dusk:fails --testdox",
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}