-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e022f23
Showing
5 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Apache < 2.3 | ||
<IfModule !mod_authz_core.c> | ||
Order allow,deny | ||
Deny from all | ||
Satisfy All | ||
</IfModule> | ||
|
||
# Apache >= 2.3 | ||
<IfModule mod_authz_core.c> | ||
Require all denied | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "datenbetrieb/sqllog", | ||
"type": "typo3-cms-extension", | ||
"description": "A small extension that extends Database/Conneection with SQL-Logging", | ||
"authors": [ | ||
{ | ||
"name": "Peter Niederlag", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"typo3/cms-core": "^9.5" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Datenbetrieb\\Sqllog\\": "Classes" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Datenbetrieb\\Sqllog\\Tests\\": "Tests" | ||
} | ||
}, | ||
"replace": { | ||
"datenbetrieb/sqllog": "self.version", | ||
"typo3-ter/sqllog": "self.version" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
/*************************************************************** | ||
* Extension Manager/Repository config file for ext: "sqllog" | ||
* | ||
* Auto generated by Extension Builder 2020-02-20 | ||
* | ||
* Manual updates: | ||
* Only the data in the array - anything else is removed by next write. | ||
* "version" and "dependencies" must not be touched! | ||
***************************************************************/ | ||
|
||
$EM_CONF[$_EXTKEY] = [ | ||
'title' => 'sqllog', | ||
'description' => 'A small extension that extends Database/Conneection with SQL-Logging', | ||
'category' => 'plugin', | ||
'author' => 'Peter Niederlag', | ||
'author_email' => '[email protected]', | ||
'state' => 'alpha', | ||
'uploadfolder' => 0, | ||
'createDirs' => '', | ||
'clearCacheOnLoad' => 0, | ||
'version' => '1.0.0', | ||
'constraints' => [ | ||
'depends' => [ | ||
'typo3' => '9.5.0-9.5.99', | ||
], | ||
'conflicts' => [], | ||
'suggests' => [], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
defined('TYPO3_MODE') || die('Access denied.'); | ||
|
||
call_user_func( | ||
function() | ||
{ | ||
|
||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile('sqllog', 'Configuration/TypoScript', 'sqllog'); | ||
|
||
} | ||
); |