Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1', '8.4']
php-versions: ['8.1', '8.5']
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['~5.0.0', '~5.2']
version: ['~5.0.0', '^5.0']
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Cake\Event\EventInterface;
use Cake\Event\EventManager;

class Plugin extends BasePlugin
class BakePlugin extends BasePlugin
{
/**
* @inheritDoc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Cake\Core\Configure;
use Cake\Core\PluginApplicationInterface;

class Plugin extends BasePlugin
class CollectionViewPlugin extends BasePlugin
{
/**
* @inheritDoc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
* @experimental
*/
class Plugin extends BasePlugin
class CrudPlugin extends BasePlugin
{
protected ?string $name = 'MixerApi/Crud';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Cake\Core\BasePlugin;
use Cake\Core\PluginApplicationInterface;

class Plugin extends BasePlugin
class ExceptionRenderPlugin extends BasePlugin
{
/**
* Plugin name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Cake\Core\BasePlugin;
use Cake\Core\PluginApplicationInterface;

class Plugin extends BasePlugin
class HalViewPlugin extends BasePlugin
{
/**
* Plugin name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Cake\Core\Configure;
use Cake\Core\PluginApplicationInterface;

class Plugin extends BasePlugin
class JsonLdViewPlugin extends BasePlugin
{
/**
* Plugin name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Plugin for JwtAuth
*/
class Plugin extends BasePlugin
class JwtAuthPlugin extends BasePlugin
{
/**
* Plugin name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use MixerApi\Command\InstallCommand;
use MixerApi\Service\InstallerService;

class Plugin extends BasePlugin
class MixerApiPlugin extends BasePlugin
{
/**
* Plugin name.
Expand Down
2 changes: 1 addition & 1 deletion plugins/mixerapi/tests/TestCase/PluginTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function setUp(): void

public function test_bootstrap(): void
{
$plugin = new \MixerApi\Plugin();
$plugin = new \MixerApi\MixerApiPlugin();
$plugin->bootstrap(new Application(CONFIG));

$plugins = [
Expand Down