silverstripe-spamprotection/composer.json

46 lines
1.1 KiB
JSON
Raw Permalink 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",
2024-02-19 06:33:33 +01:00
"silverstripe/framework": "^6"
2016-11-16 22:17:57 +01:00
},
"require-dev": {
2023-08-09 05:06:42 +02:00
"phpunit/phpunit": "^9.6",
2024-02-19 06:33:33 +01:00
"silverstripe/versioned": "^3",
2022-12-13 03:55:35 +01:00
"squizlabs/php_codesniffer": "^3",
2024-02-19 06:33:33 +01:00
"silverstripe/userforms": "^7",
2024-02-02 02:07:44 +01:00
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
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": {
2023-09-12 20:49:00 +02:00
"SilverStripe\\SpamProtection\\": "src/",
"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
}