-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 973 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
{
"name": "jobsity/slim-challenge",
"description": "PHP Challenge - Jobsity",
"type": "project",
"require": {
"php": "^7.3 || ^8.0",
"slim/slim": "^4.7",
"slim/psr7": "^1.3",
"swiftmailer/swiftmailer": "^6.0",
"php-di/php-di": "^6.3",
"symfony/dotenv": "^5.2",
"tuupola/slim-basic-auth": "^3.3",
"php-amqplib/php-amqplib": "^3.1",
"ext-json": "*",
"illuminate/database": "5.8.36",
"illuminate/validation": "5.8",
"illuminate/translation": "5.8",
"firebase/php-jwt": "^6.0",
"guzzlehttp/guzzle": "7.0"
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}