Skip to content
This repository was archived by the owner on Jun 25, 2025. It is now read-only.

Commit 53042df

Browse files
Merge pull request #4 from OXIDprojects/clean
Cleanup code
2 parents 22e53af + e3cfe85 commit 53042df

35 files changed

+377
-1827
lines changed

.phive/phars.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phive xmlns="https://phar.io/phive">
3+
<phar name="phpcs" version="^3.5.8" installed="3.5.8" location="./tools/phpcs" copy="false"/>
4+
<phar name="phpcbf" version="^3.5.8" installed="3.5.8" location="./tools/phpcbf" copy="false"/>
5+
</phive>

Controller/AccountPasswordController.php

Lines changed: 0 additions & 143 deletions
This file was deleted.

Controller/RegisterController.php

Lines changed: 0 additions & 108 deletions
This file was deleted.

composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"license": "GPL-3.0-only",
77
"require": {
88
"oxid-esales/oxideshop-ce": "^v6.3"
9+
},
10+
"require-dev": {
11+
912
},
1013
"extra": {
1114
"oxideshop": {
@@ -14,7 +17,8 @@
1417
},
1518
"autoload": {
1619
"psr-4": {
17-
"OxidProfessionalServices\\PasswordPolicy\\": "."
20+
"OxidProfessionalServices\\PasswordPolicy\\": "src",
21+
"OxidProfessionalServices\\PasswordPolicy\\Tests\\": "tests"
1822
}
1923
}
2024
}

metadata.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@
5858
],
5959
'controllers' => [
6060
'oxpspasswordpolicy' => \OxidProfessionalServices\PasswordPolicy\Controller\OxpsPasswordPolicy::class,
61-
'admin_oxpspasswordpolicy' => \OxidProfessionalServices\PasswordPolicy\Controller\Admin\OxpsPasswordPolicyAdmin::class,
61+
'admin_oxpspasswordpolicy' =>
62+
\OxidProfessionalServices\PasswordPolicy\Controller\Admin\OxpsPasswordPolicyAdmin::class,
6263
],
6364
'templates' => [
6465
'passwordpolicyaccountblocked.tpl' => 'oxps/passwordpolicy/views/pages/passwordpolicyaccountblocked.tpl',

0 commit comments

Comments
 (0)