Skip to content

Commit 127b6e8

Browse files
authored
Merge pull request #1165 from CakeDC/bc-plugin-class
add Plugin class for BC
2 parents b5f60aa + 8b34180 commit 127b6e8

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"prefer-stable": true,
3030
"require": {
3131
"php": ">=8.1",
32-
"cakephp/cakephp": "5.3.0-RC2",
32+
"cakephp/cakephp": "^5.3",
3333
"cakedc/auth": "^10.1",
3434
"cakephp/authorization": "^3.0",
3535
"cakephp/authentication": "^3.0"

src/Plugin.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
declare(strict_types=1);
3+
4+
/**
5+
* Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com)
6+
*
7+
* Licensed under The MIT License
8+
* Redistributions of files must retain the above copyright notice.
9+
*
10+
* @copyright Copyright 2010 - 2018, Cake Development Corporation (https://www.cakedc.com)
11+
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
12+
*/
13+
14+
namespace CakeDC\Users;
15+
16+
/**
17+
* Plugin class for backward compatibility.
18+
*/
19+
class Plugin extends UsersPlugin
20+
{
21+
}

0 commit comments

Comments
 (0)