-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·43 lines (43 loc) · 1.1 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
{
"name": "yuga/framework",
"description": "The Yuga Framework.",
"keywords": ["framework", "Yuga"],
"license": "MIT",
"homepage": "https://yuga-framework.gitbook.io/documentation",
"authors": [
{
"name": "Hamidouh Semix",
"email": "[email protected]"
}
],
"require": {
"php": ">= 7.1",
"tracy/tracy": "^2.10",
"josegonzalez/dotenv": "dev-master",
"symfony/console": "~4.0",
"symfony/process": "^5.3",
"symfony/finder": "^5.3",
"nette/php-generator": "^4.1",
"dragonmantank/cron-expression": "^3.1",
"opis/closure": "^3.6"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.0"
},
"autoload": {
"files": [
"src/Yuga/Support/helpers.php"
],
"psr-4": {
"Yuga\\": "src/Yuga/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"serve": "php yuga start"
}
}