-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.59 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "jinexus-framework/jinexus-mvc",
"type": "component",
"description": "MVC component from JiNexus Framework",
"license": "BSD-3-Clause",
"keywords": [
"jinexus",
"mvc"
],
"homepage": "https://github.com/jinexus-framework/jinexus-mvc",
"authors": [
{
"name": "Jimvirle E. Calago",
"email": "jimvirle@gmail.com"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^8.5",
"jinexus-framework/jinexus-config": "^1.1",
"jinexus-framework/jinexus-http": "^1.1",
"jinexus-framework/jinexus-module-manager": "^1.1",
"jinexus-framework/jinexus-route": "^1.1",
"filp/whoops": "^2.18"
},
"require-dev": {
"phpunit/phpunit": "^13.2"
},
"autoload": {
"psr-4": {
"JiNexus\\Mvc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JiNexus\\Mvc\\Test\\": "test/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-text"
],
"test:testdox": "phpunit --testdox"
},
"scripts-descriptions": {
"test": "Run the PHPUnit test suite.",
"test:coverage": "Run the test suite and print a text coverage report.",
"test:testdox": "Run the test suite with readable testdox output."
},
"extra": {
"branch-alias": {
"dev-main": "1.1.x-dev"
}
}
}