mirror of
https://github.com/anikeen-com/print-cli.git
synced 2026-03-13 13:46:07 +00:00
Initial commit
This commit is contained in:
52
composer.json
Normal file
52
composer.json
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"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.0",
|
||||
"illuminate/http": "^11.5",
|
||||
"laravel-zero/framework": "^11.0.0",
|
||||
"symfony/yaml": "^7.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"laravel/pint": "^1.15.2",
|
||||
"mockery/mockery": "^1.6.11",
|
||||
"pestphp/pest": "^2.34.7"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "app/",
|
||||
"Database\\Factories\\": "database/factories/",
|
||||
"Database\\Seeders\\": "database/seeders/"
|
||||
}
|
||||
},
|
||||
"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": ["print-cli"]
|
||||
}
|
||||
Reference in New Issue
Block a user