-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.16 KB
/
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
39
40
41
42
43
44
45
46
47
48
{
"name": "saaze/core",
"description": "The core package for Saaze CMS",
"license": "MIT",
"authors": [
{
"name": "Gilbert Pellegrom",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Saaze\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Saaze\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3",
"adbario/php-dot-notation": "^2.2",
"erusev/parsedown-extra": "^0.8.1",
"filp/whoops": "^2.9",
"jenssegers/blade": "^1.3",
"php-di/php-di": "^6.2",
"ralouphie/mimey": "^2.1",
"spatie/yaml-front-matter": "^2.0",
"symfony/console": "^5.1",
"symfony/finder": "^5.1",
"symfony/http-foundation": "^5.1",
"symfony/http-kernel": "^5.1",
"symfony/process": "^5.1",
"symfony/routing": "^5.1",
"symfony/yaml": "^5.1",
"vlucas/phpdotenv": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"config": {
"sort-packages": true
}
}