66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "laravel-zero/laravel-zero",
|
|
"description": "The Laravel Zero Framework.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel",
|
|
"laravel zero",
|
|
"console",
|
|
"cli"
|
|
],
|
|
"homepage": "https://laravel-zero.com",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"support": {
|
|
"issues": "https://github.com/laravel-zero/laravel-zero/issues",
|
|
"source": "https://github.com/laravel-zero/laravel-zero"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Nuno Maduro",
|
|
"email": "enunomaduro@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.2",
|
|
"erusev/parsedown": "^1.7",
|
|
"illuminate/view": "^12.17",
|
|
"laravel-zero/framework": "^12.0",
|
|
"league/commonmark": "^2.7",
|
|
"symfony/yaml": "^7.3"
|
|
},
|
|
"require-dev": {
|
|
"laravel/pint": "^1.22",
|
|
"mockery/mockery": "^1.6.12",
|
|
"pestphp/pest": "^3.8.2"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
},
|
|
"files": [
|
|
"app/helpers.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true,
|
|
"bin": [
|
|
"zap"
|
|
]
|
|
}
|