-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.24 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "rav-system/api",
"description": "REST API for Rav System",
"keywords": [
"microframework",
"rest",
"router",
"psr7"
],
"license": "MIT",
"authors": [
{
"name": "Szymon Rykala",
"email": "szymonrykala@gmail.com"
}
],
"require": {
"php": "8.0.*",
"ext-json": "*",
"ext-mbstring": "*",
"cakephp/validation": "4.3.*",
"cloudinary/cloudinary_php": "2.*",
"firebase/php-jwt": "5.5.*",
"monolog/monolog": "2.3.*",
"opis/json-schema": "^2.1",
"php-di/php-di": "^6.3",
"phpmailer/phpmailer": "6.5",
"slim/psr7": "1.5.*",
"slim/slim": "4.*"
},
"require-dev": {},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "export $(cat .env | xargs) && php -S localhost:8081 -t public",
"setenv": "export $(cat .env | xargs)",
"generateDocs": "phpDocumentor --config phpdoc.xml",
"test": "phpunit"
}
}