-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.65 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.65 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
56
57
58
59
60
{
"name": "iui/i425-team-project",
"description": "This application is a lightweight, high-performance API built with the Slim framework and Eloquent ORM, designed for managing Formula 1 data such as cars, drivers, teams, events, and race results. Perfect for developers looking to integrate detailed F1 statistics and race information into their applications with a simple and fast API.",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "src/",
"Config\\": "config/"
}
},
"authors": [
{
"name": "Jalen Vaughn",
"email": "javaugh@iu.edu"
},
{
"name": "Evan Deal",
"email": "evdeal@iu.edu"
},
{
"name": "Matt Jobe",
"email": "mtjobe@iu.edu"
}
],
"require": {
"slim/slim": "~4.14.0",
"illuminate/database": "~v11.30.0",
"zircote/swagger-php": "~4.11.1",
"slim/psr7": "~1.7.0",
"php-di/php-di": "~7.0.7",
"php-di/slim-bridge": "~3.4.0",
"slim/http": "~1.4.0",
"monolog/monolog": "~3.7.0",
"illuminate/pagination": "~v11.30.0",
"firebase/php-jwt": "~6.10",
"vlucas/phpdotenv": "~5.6"
},
"require-dev": {
"phpstan/phpstan": "2.0.1",
"mockery/mockery": "1.6.12",
"friendsofphp/php-cs-fixer": "v3.64.0",
"pestphp/pest": "v3.5.1",
"phpstan/phpstan-mockery": "2.0.0"
},
"scripts": {
"fix": "vendor/bin/php-cs-fixer fix",
"lint": "vendor/bin/phpstan analyze -c phpstan.neon",
"start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8080 -t public"
],
"test": "pest"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}