-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 951 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 951 Bytes
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
{
"name": "soma/soma",
"license": "MIT",
"description": "SOMA is a lightweight PHP micro-framework designed to be a flexible and modular base for your future projects.",
"homepage": "https://github.com/soma-php/soma",
"autoload": {
"psr-4": {
"Soma\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"ext-mbstring": "*",
"php-di/php-di": "^6.0.5",
"psr/container": "^1.0",
"container-interop/service-provider": "^0.4",
"symfony/finder": "^5.0",
"symfony/yaml": "^5.0",
"vlucas/phpdotenv": "^4.1",
"symfony/var-dumper": "^5.0",
"illuminate/console": "^7.0",
"illuminate/support": "^7.0",
"illuminate/events": "^7.0",
"laravel/helpers": "^1.2",
"filp/whoops": "^2.7",
"psy/psysh": "^0.9"
}
}