{
"name": "shworx/beacon",
"description": "A modern PHP application starter with authentication, migrations, Eloquent ORM, Twig, and a lightweight MVC architecture.",
"type": "project",
"license": "MIT",
"keywords": [
"php",
"mvc",
"framework",
"starter",
"routing",
"skeleton",
"authentication",
"twig",
"eloquent",
"migration"
],
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"bootstrap/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.5.0",
"symfony/routing": "^8.1.0",
"twig/twig": "^3.27.0",
"symfony/validator": "^8.1.0",
"egulias/email-validator": "^4.0.0",
"phpmailer/phpmailer": "^7.1.0",
"monolog/monolog": "^3.10.0",
"illuminate/database": "^13.12.0",
"vlucas/phpdotenv": "^5.6.3",
"ramsey/uuid": "^4.9.2",
"nesbot/carbon": "^3.11.4",
"illuminate/events": "^13.15.0"
},
"require-dev": {
"phpunit/phpunit": "^13.2.0"
},
"scripts": {
"post-create-project-cmd": [
"@php bin/setup.php"
]
}
}
|