Store sessions in database (#1736)
This commit is contained in:
31
tests/Plugin/Fixtures/TestPlugin/TestPlugin.php
Normal file
31
tests/Plugin/Fixtures/TestPlugin/TestPlugin.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Kimai time-tracking app.
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace App\Tests\Plugin\Fixtures\TestPlugin;
|
||||
|
||||
use App\Plugin\PluginInterface;
|
||||
|
||||
class TestPlugin implements PluginInterface
|
||||
{
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getName()
|
||||
{
|
||||
return 'TestPlugin';
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPath()
|
||||
{
|
||||
return __DIR__;
|
||||
}
|
||||
}
|
||||
29
tests/Plugin/Fixtures/TestPlugin/composer.json
Normal file
29
tests/Plugin/Fixtures/TestPlugin/composer.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "kimai/test-plugin-composer",
|
||||
"description": "Just a test fixture for the PluginManager",
|
||||
"homepage": "https://github.com/kevinpapst/kimai2",
|
||||
"type": "kimai-plugin",
|
||||
"require": {
|
||||
"kimai/kimai2-composer": "*",
|
||||
"kevinpapst/kimai2": "*"
|
||||
},
|
||||
"keywords": [
|
||||
"kimai",
|
||||
"kimai-plugin"
|
||||
],
|
||||
"license": "proprietary",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Kevin Papst",
|
||||
"homepage": "https://www.kevinpapst.de"
|
||||
}
|
||||
],
|
||||
"extra": {
|
||||
"kimai": {
|
||||
"require": "0.9",
|
||||
"version": "1.0",
|
||||
"name": "TestPlugin from composer.json",
|
||||
"license": []
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user