-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 986 Bytes
/
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
{
"name": "owenvoke/rugby-schedule",
"description": "Rugby schedules on the command-line",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9",
"illuminate/http": "^11.0",
"illuminate/view": "^11.0",
"laravel-zero/framework": "^11.0",
"nunomaduro/termwind": "^2.0",
"sabre/vobject": "^4.5.5",
"spatie/calendar-links": "^1.11"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.2"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": "builds/rugby-schedule"
}