-
- Downloads
Merge branch 'feat-verification-codes' into 'next-3.x'
feat!: version 3.0 RC See merge request !10
Keine zugehörigen Branchen gefunden
Keine zugehörigen Tags gefunden
- .gitattributes 15 Ergänzungen, 0 Löschungen.gitattributes
- .gitignore 8 Ergänzungen, 1 Löschung.gitignore
- .gitlab-ci.yml 26 Ergänzungen, 2 Löschungen.gitlab-ci.yml
- .phive/phars.xml 5 Ergänzungen, 1 Löschung.phive/phars.xml
- CONTRIBUTING.md 3 Ergänzungen, 0 LöschungenCONTRIBUTING.md
- captainhook.json 13 Ergänzungen, 0 Löschungencaptainhook.json
- composer.json 71 Ergänzungen, 29 Löschungencomposer.json
- database.xml 10 Ergänzungen, 9 Löschungendatabase.xml
- locale.xml 4 Ergänzungen, 0 Löschungenlocale.xml
- phpcs.xml.dist 23 Ergänzungen, 0 Löschungenphpcs.xml.dist
- phpstan-baseline.neon 182 Ergänzungen, 0 Löschungenphpstan-baseline.neon
- phpstan.dist.neon 1 Ergänzung, 1 Löschungphpstan.dist.neon
- phpunit.dist.xml 8 Ergänzungen, 0 Löschungenphpunit.dist.xml
- src/QUI/Verification/AbstractLinkVerificationHandler.php 46 Ergänzungen, 0 Löschungensrc/QUI/Verification/AbstractLinkVerificationHandler.php
- src/QUI/Verification/AbstractVerification.php 0 Ergänzungen, 122 Löschungensrc/QUI/Verification/AbstractVerification.php
- src/QUI/Verification/Cron.php 68 Ergänzungen, 67 Löschungensrc/QUI/Verification/Cron.php
- src/QUI/Verification/Entity/AbstractVerification.php 73 Ergänzungen, 0 Löschungensrc/QUI/Verification/Entity/AbstractVerification.php
- src/QUI/Verification/Entity/LinkVerification.php 69 Ergänzungen, 0 Löschungensrc/QUI/Verification/Entity/LinkVerification.php
- src/QUI/Verification/Entity/PhoneNumberVerification.php 73 Ergänzungen, 0 Löschungensrc/QUI/Verification/Entity/PhoneNumberVerification.php
- src/QUI/Verification/Enum/PhoneNumberVerificationStrategy.php 9 Ergänzungen, 0 Löschungen...QUI/Verification/Enum/PhoneNumberVerificationStrategy.php
.gitattributes
0 → 100644
CONTRIBUTING.md
0 → 100644
captainhook.json
0 → 100644
{ | { | ||
"name": "quiqqer/verification", | "name": "quiqqer/verification", | ||
"type": "quiqqer-plugin", | "type": "quiqqer-plugin", | ||
"description": "Verify any action via a special url with a unique hash (i.e. user registration, newsletter opt-in etc.)", | "description": "Verify any action via a special url with a unique hash (i.e. user registration, newsletter opt-in etc.)", | ||
"license": [ | "license": [ | ||
"PCSG QL-1.0", | "PCSG QL-1.0", | ||
"CC BY-NC-SA 4.0" | "CC BY-NC-SA 4.0" | ||
], | ], | ||
"homepage": "https://www.quiqqer.com", | "homepage": "https://www.quiqqer.com", | ||
"authors": [ | "authors": [ | ||
{ | { | ||
"name": "Patrick M\u00fcller", | "name": "Patrick Müller", | ||
"email": "p.mueller@pcsg.de", | "email": "p.mueller@pcsg.de", | ||
"homepage": "https://www.pcsg.de", | "homepage": "https://www.pcsg.de", | ||
"role": "Developer" | "role": "Developer" | ||
} | |||
], | |||
"support": { | |||
"email": "support@pcsg.de", | |||
"url": "https://www.pcsg.de", | |||
"issues": "https://dev.quiqqer.com/quiqqer/verification/issues", | |||
"source": "https://dev.quiqqer.com/quiqqer/verification" | |||
}, | |||
"require": { | |||
"quiqqer/core": "^2" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"QUI\\Verification\\": "src/QUI/Verification" | |||
} | |||
}, | |||
"scripts": { | |||
"test": [ | |||
"@dev:lint", | |||
"@dev:phpunit" | |||
], | |||
"dev:phpunit": "./tools/phpunit", | |||
"dev:lint": [ | |||
"@dev:lint:phpstan", | |||
"@dev:lint:style" | |||
], | |||
"dev:lint:phpstan": "./tools/phpstan", | |||
"dev:lint:style": "./tools/phpcs", | |||
"dev:lint:style:fix": "./tools/phpcbf", | |||
"dev:init": [ | |||
"@dev:init:check-requirements", | |||
"@dev:init:tools", | |||
"@dev:init:git-hooks" | |||
], | |||
"dev:init:check-requirements": [ | |||
"which composer > /dev/null || (echo 'Error: composer has to be globally installed'; exit 1)", | |||
"which phive > /dev/null || (echo 'Error: PHIVE has to be globally installed'; exit 1)" | |||
], | |||
"dev:init:tools": "phive install --temporary", | |||
"dev:init:git-hooks": "./tools/captainhook install --only-enabled --force" | |||
}, | |||
"scripts-aliases": { | |||
"test": [ | |||
"dev:test" | |||
] | |||
}, | |||
"scripts-descriptions": { | |||
"test": "Runs linting, static analysis, and unit tests.", | |||
"dev:phpunit": "Run PHPUnit test suites", | |||
"dev:lint": "Run PHPStan and code style check", | |||
"dev:lint:phpstan": "Run PHPStan", | |||
"dev:lint:style": "Run code style check (PHP_CodeSniffer)", | |||
"dev:lint:style:fix": "Try to fix code style errors automatically", | |||
"dev:init": "Initialize the developer tooling (tools and git hooks)", | |||
"dev:init:check-requirements": "Check if the necessary requirements are met", | |||
"dev:init:tools": "Install all developer tools (requires PHIVE)", | |||
"dev:init:git-hooks": "Install all git hooks (may require tools to be installed)" | |||
} | } | ||
], | |||
"support": { | |||
"email": "support@pcsg.de", | |||
"url": "https://www.pcsg.de", | |||
"issues": "https://dev.quiqqer.com/quiqqer/verification/issues", | |||
"source": "https://dev.quiqqer.com/quiqqer/verification" | |||
}, | |||
"require": { | |||
"quiqqer/core": "^2" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"QUI\\Verification\\": "src/QUI/Verification" | |||
} | |||
} | |||
} | } | ||
\ No newline at end of file |
phpcs.xml.dist
0 → 100644
phpunit.dist.xml
0 → 100644
Bitte registrieren oder Anmelden zum Kommentieren