UnderCurrent/composer.json
Tim a55d1c3c2e Properly implement the router with config and interfaces
Expand the container with aliases and argument autowiring
2023-08-07 17:51:53 +02:00

19 lines
386 B
JSON

{
"name": "ardent/undercurrent",
"description": "A tiny no nonsense php framework",
"type": "library",
"require": {
"php": "^8.1"
},
"autoload": {
"psr-4": {
"Ardent\\Undercurrent\\": "src/",
"App\\": "app/"
}
},
"license": "GPL-3.0-only",
"require-dev": {
"symfony/var-dumper": "^6.3"
}
}