mirror of
https://github.com/silverstripe/recipe-plugin.git
synced 2024-10-22 14:05:55 +02:00
33 lines
802 B
JSON
33 lines
802 B
JSON
{
|
|
"name": "silverstripe/recipe-plugin",
|
|
"description": "Helper plugin to install SilverStripe recipes",
|
|
"type": "composer-plugin",
|
|
"license": "BSD-3-Clause",
|
|
"authors": [
|
|
{
|
|
"name": "Damian Mooyman",
|
|
"email": "damian@silverstripe.com"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"SilverStripe\\RecipePlugin\\": "src/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"class": "SilverStripe\\RecipePlugin\\RecipePlugin"
|
|
},
|
|
"scripts": {
|
|
"lint": "phpcs src/",
|
|
"lint-clean": "phpcbf src/"
|
|
},
|
|
"require": {
|
|
"php": "^8.1",
|
|
"composer-plugin-api": "^2"
|
|
},
|
|
"require-dev": {
|
|
"composer/composer": "^2",
|
|
"squizlabs/php_codesniffer": "^3.7"
|
|
},
|
|
"minimum-stability": "dev"
|
|
} |