-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.08 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
{
"name": "uhi67/umvc",
"description": "UMVC simple PHP framework",
"type": "project",
"homepage": "https://umvc.uhisoft.hu/",
"minimum-stability": "stable",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "uhi67",
"email": "uherkovich.peter@gmail.com"
}
],
"require": {
"php": ">=8.2",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-openssl": "*",
"ext-pdo_sqlite": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"psr/log": "*"
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.3",
"php-webdriver/webdriver": "^1.0.1",
"codeception/module-filesystem": "^1.0",
"codeception/lib-innerbrowser": "^1.0",
"codeception/module-rest": "*"
},
"scripts": {
},
"autoload": {
"psr-4": {
"uhi67\\umvc\\commands\\": "commands",
"uhi67\\umvc\\models\\": "models",
"uhi67\\umvc\\": "lib",
"Helper\\": "lib/testhelper",
"testapp\\": "tests/_data/testapp"
}
}
}