-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.82 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.82 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
{
"name": "cd-shift/mi-framework",
"description": "Simple PHP framework inspire by Laravel",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Database\\": "src/Database",
"Framework\\": "src/",
"Container\\": "src/Container",
"Http\\": "src/Http",
"Routing\\": "src/Routing",
"Server\\": "src/Server",
"View\\": "src/View",
"Validation\\": "src/Validation",
"Exceptions\\": "src/Exceptions",
"Session\\": "src/Session"
},
"files": [
"src/Helpers/AppHelper.php",
"src/Helpers/HttpHelper.php",
"src/Helpers/StringHelper.php",
"src/Helpers/SessionHelper.php"
]
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests"
}
},
"scripts":{
"tests": "phpunit --colors=always --testdox --display-errors --display-warnings --display-deprecations --display-notices",
"tests:quick": "phpunit",
"tests:one": "phpunit",
"test-coverage": "phpunit --coverage-html build/coverage/html --coverage-text=build/coverage/coverage.txt",
"docs:generate": "vendor/bin/phpdoc run -d src -d tests -t build/docs -i 'vendor/*' -i 'pruebas/*' -i 'build/*' -i 'docs/*' -i 'public/*'",
"cs:check": "vendor/bin/php-cs-fixer fix --allow-risky=yes --sequential --dry-run --diff --verbose",
"cs:fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes --sequential --verbose"
},
"authors": [
{
"name": "Carlos Daniel M. A.",
"email": "carlosdanielface1@hotmail.com"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"friendsofphp/php-cs-fixer": "^3.95"
}
}