[ticket/17414] Remove not needed test captchas

PHPBB-17414
This commit is contained in:
Marc Alexander 2024-10-17 19:23:04 +02:00
parent 1e80400d09
commit dd1c6d647f
No known key found for this signature in database
GPG key ID: 50E0D2423696F995
3 changed files with 0 additions and 61 deletions

View file

@ -1,33 +0,0 @@
<?php
namespace foo\test_captcha\captcha;
class test_captcha extends \phpbb\captcha\plugins\captcha_abstract
{
function get_generator_class()
{
}
public function init($type)
{
}
public function execute_demo()
{
}
public function execute()
{
}
public function validate()
{
return true;
}
public function is_solved()
{
return true;
}
}

View file

@ -1,23 +0,0 @@
{
"name": "foo/test_captcha",
"type": "phpbb-extension",
"description": "Testing extension for having a working captcha plugin",
"homepage": "",
"version": "1.0.0",
"time": "2024-03-24 01:01:01",
"license": "GPL-2.0",
"authors": [{
"name": "phpBB Limited",
"homepage": "https://www.phpbb.com",
"role": "Developer"
}],
"require": {
"php": ">=8.1"
},
"extra": {
"display-name": "phpBB 4.0 Test Captcha",
"soft-require": {
"phpbb/phpbb": "4.0.*@dev"
}
}
}

View file

@ -1,5 +0,0 @@
services:
foo_test_captcha.captcha.test_captcha:
class: foo\test_captcha\captcha\test_captcha
tags:
- { name: captcha.plugins }