-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·45 lines (45 loc) · 943 Bytes
/
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
{
"name": "inani/chibi",
"description": "The Chibi Framework.",
"keywords": ["framework", "Chibi", "PHP"],
"license": "MIT",
"version": "2.0.0",
"support": {
"issues": "https://github.com/akiyamaSM/chibi/issues",
"source": "https://github.com/akiyamaSM/chibi"
},
"authors": [
{
"name": "El Houssain INANI",
"email": "inanielhoussain@gmail.com"
},
{
"name": "Anas El Alami",
"email": "anaselalamikh@gmail.com"
}
],
"autoload": {
"files": [
"src/core/Helpers/helpers.php"
],
"psr-4": {
"Chibi\\": "src/core/"
}
},
"repositories": [
{
"type": "path",
"url": "src/packages/yumi/console"
}
],
"require": {
"filp/whoops": "^2.1",
"vlucas/phpdotenv": "~1.0",
"nesbot/carbon": "^1.26.3",
"symfony/var-dumper": "4.*"
},
"require-dev" :{
"yumi/console":"dev-master"
},
"minimum-stability": "stable"
}