-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.18 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"name": "bytes4run/sima",
"description": "Simple Inventory Management Application",
"type": "project",
"license": "MIT",
"version": "1.0.0",
"autoload": {
"psr-4": {
"app\\": "./app",
"tests\\": "./test"
}
},
"optimize-autoloader": true,
"authors": [
{
"name": "Jorge Echeverria",
"email": "jecheverria@bytes4run.com"
}
],
"require": {
"php": "^8.1",
"smarty/smarty": "^4.3",
"guzzlehttp/guzzle": "^7.5",
"firebase/php-jwt": "^6.3",
"phpdocumentor/reflection-docblock": "^5.3",
"phpunit/phpunit": "^9.5",
"phpmailer/phpmailer": "^6.7",
"phpstan/phpdoc-parser": "^1.16",
"ramsey/uuid": "^4.7",
"psr/log": "^3.0",
"psr/http-client": "^1.0",
"ext-json": "*",
"doctrine/orm": "^2.14",
"doctrine/dbal": "^3.2",
"symfony/yaml": "^5.4",
"symfony/cache": "^5.4",
"vlucas/phpdotenv": "^5.5"
},
"autoload-dev": {
"psr-4": {
"app\\Tests\\": "./test"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}