-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.16 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.16 KB
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
{
"name": "laracord/laracord",
"type": "project",
"description": "Create Discord bots harnessing the full power of Laravel.",
"keywords": [
"framework",
"laravel",
"discord"
],
"license": "MIT",
"require": {
"php": "^8.2",
"laracord/framework": "^2.3"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.15"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"scripts": {
"lint": [
"@php scripts/php-lint.php"
],
"format:check": [
"vendor/bin/pint --test"
],
"ci": [
"@composer validate --strict",
"@composer lint",
"@composer format:check"
],
"ci:build": [
"php laracord app:build"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}