Files
novaconium/composer.json

28 lines
638 B
JSON
Raw Normal View History

2024-08-29 21:50:55 -07:00
{
2025-11-16 21:57:10 -08:00
"name": "4lt/novaconium",
2024-08-29 21:50:55 -07:00
"description": "A high-performance PHP framework built from the past.",
"license": "MIT",
"authors": [
{
"name": "Nick Yeoman",
"email": "dev@4lt.ca",
2025-11-19 00:03:03 -08:00
"homepage": "https://www.4lt.ca"
2024-08-29 21:50:55 -07:00
}
],
"autoload": {
2025-11-16 21:57:10 -08:00
"psr-4": {
"Novaconium\\": "src/"
}
2024-08-29 21:50:55 -07:00
},
"require": {
2025-11-19 00:03:03 -08:00
"php": "^8.1",
2025-11-16 21:57:10 -08:00
"twig/twig": "*",
"nickyeoman/php-validation-class": "^5.0"
2024-08-29 21:50:55 -07:00
},
2025-11-16 21:57:10 -08:00
"minimum-stability": "stable",
2024-08-29 21:50:55 -07:00
"extra": {
"versioning": {
"strategy": "semantic-versioning"
}
}
2025-11-16 21:57:10 -08:00
}