-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.46 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
49
50
51
52
53
54
55
{
"name": "iumio/framework",
"license": "MIT",
"type": "library",
"description": "iumio Framework, let's create more simply",
"keywords": ["php-framework", "iumio-framework", "core", "mvc", "php", "php7", "components", "iumio"],
"homepage": "https://framework.iumio.com",
"authors": [
{
"name": "Dany Rafina",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/danyrafina/",
"role": "iumio Framework Architect / iumio Founder "
},
{
"name": "Kevin Huron",
"email": "[email protected]",
"homepage": "http://kevinhuron.fr",
"role": "iumio Framework Co-Architect / iumio Co-Founder"
}
],
"autoload-dev": {
"psr-4": {
"iumioFramework\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"iumioFramework\\": "",
"ManagerApp\\": "BaseApps/ManagerApp",
"FServiceApp\\": "BaseApps/FServiceApp"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/iumio/framework-internal-server"
}
],
"require": {
"php": ">=7.2",
"phpmailer/phpmailer": "~6.0",
"php-di/php-di": "6.*",
"php-di/invoker": "2.*",
"doctrine/annotations": "1.6.*",
"iumio/framework-assets": "1.*.*",
"components/font-awesome" : "~4.7.0",
"components/jquery" : "~3.2.1"
},
"require-dev": {
"phpunit/phpunit": "7.*",
"iumio/framework-internal-server": "2.*",
"iumio/framework-installer": "1.*.*"
}
}