mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
54 lines
1.4 KiB
JSON
Executable File
54 lines
1.4 KiB
JSON
Executable File
{
|
|
"name": "silverstripe/blog",
|
|
"description": "A fresh take on blogging in Silverstripe set out to tackle the issue of a cluttered Site Tree.",
|
|
"keywords": [
|
|
"silverstripe",
|
|
"blog",
|
|
"news"
|
|
],
|
|
"type": "silverstripe-vendormodule",
|
|
"require": {
|
|
"php": "^8.1",
|
|
"silverstripe/cms": "^5",
|
|
"silverstripe/lumberjack": "^3.0",
|
|
"silverstripe/tagfield": "^3.0",
|
|
"silverstripe/assets": "^2.0",
|
|
"silverstripe/asset-admin": "^2.0"
|
|
},
|
|
"require-dev": {
|
|
"silverstripe/recipe-testing": "^3",
|
|
"squizlabs/php_codesniffer": "^3",
|
|
"silverstripe/standards": "^1",
|
|
"phpstan/extension-installer": "^1.3"
|
|
},
|
|
"extra": {
|
|
"expose": [
|
|
"client/dist",
|
|
"client/images"
|
|
]
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"SilverStripe\\Blog\\": "src/",
|
|
"SilverStripe\\Blog\\Tests\\": "tests/php/",
|
|
"SilverStripe\\Blog\\Tests\\Behat\\Context\\": "tests/behat/src/"
|
|
}
|
|
},
|
|
"license": "BSD-2-Clause",
|
|
"authors": [
|
|
{
|
|
"name": "Michael Strong",
|
|
"email": "github@michaelstrong.co.uk"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"lint": "vendor/bin/phpcs src/ tests/",
|
|
"lint-clean": "vendor/bin/phpcbf src/ tests/"
|
|
},
|
|
"replace": {
|
|
"micmania1/silverstripe-blog": "*"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|