silverstripe-spamprotection/composer.json

44 lines
1.0 KiB
JSON
Raw Normal View History

{
2016-11-16 22:17:57 +01:00
"name": "silverstripe/spamprotection",
"description": "Spam protection module for SilverStripe.",
"type": "silverstripe-vendormodule",
2021-05-05 01:17:33 +02:00
"keywords": [
"silverstripe",
"spamprotection"
],
"authors": [
{
"name": "Saophalkun Ponlu",
"email": "phalkunz@silverstripe.com"
},
{
"name": "Will Rossiter",
"email": "will@fullscreen.io"
}
],
2016-11-16 22:17:57 +01:00
"require": {
2022-12-13 03:55:35 +01:00
"php": "^8.1",
"silverstripe/framework": "^5"
2016-11-16 22:17:57 +01:00
},
"require-dev": {
2023-08-09 05:06:42 +02:00
"phpunit/phpunit": "^9.6",
2022-12-13 03:55:35 +01:00
"silverstripe/versioned": "^2",
"squizlabs/php_codesniffer": "^3",
"silverstripe/userforms": "^6"
2016-11-16 22:17:57 +01:00
},
2017-01-31 13:09:41 +01:00
"extra": {
"expose": [
"images"
2021-05-05 01:17:33 +02:00
]
2017-01-31 13:09:41 +01:00
},
"autoload": {
"psr-4": {
"SilverStripe\\SpamProtection\\": "code/",
"SilverStripe\\SpamProtection\\Tests\\": "tests/"
}
},
2021-05-05 01:17:33 +02:00
"license": "BSD-3-Clause",
2016-10-10 07:44:28 +02:00
"minimum-stability": "dev",
"prefer-stable": true
2023-08-09 05:06:42 +02:00
}