43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"name": "vanguardapp/plugins",
|
|
"description": "Core stuff for Vanguard plugin support.",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Milos Stojanovic",
|
|
"email": "stojanovic.loshmi@gmail.com",
|
|
"homepage": "https://mstojanovic.net",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"illuminate/support": "^10.0|^11.0",
|
|
"symfony/process": "^6.0|^7.0",
|
|
"illuminate/console": "^10.0|^11.0",
|
|
"illuminate/filesystem": "^10.0|^11.0",
|
|
"illuminate/view": "^10.0|^11.0",
|
|
"illuminate/auth": "^10.0|^11.0"
|
|
},
|
|
"require-dev": {
|
|
"laravel/pint": "^1.13"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Vanguard\\Plugins\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Vanguard\\Plugins\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Vanguard\\Plugins\\PluginsServiceProvider"
|
|
]
|
|
}
|
|
}
|
|
}
|