-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.06 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"name": "unicframework/framework",
"type": "library",
"description": "Unic is a high performance, open source web framework.",
"keywords": [
"unic",
"unic framework",
"php framework",
"web framework",
"mvc framework"
],
"homepage": "https://unicframework.github.io/docs",
"support": {
"issues": "https://github.com/unicframework/framework/issues",
"source": "https://github.com/unicframework/framework"
},
"license": "MIT",
"authors": [
{
"name": "Rajkumar Dusad",
"homepage": "https://github.com/rajkumardusad"
}
],
"autoload": {
"psr-4": {
"Unic\\": "src/"
}
},
"require": {
"php": ">=7.4"
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"scripts-descriptions": {
"test": "Run all test cases."
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^9.5",
"guzzlehttp/guzzle": "^7.5"
}
}