Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ccae4d7
Refactoring: switch to psr-4, move to \Teon\DKIM namespace for the ti…
bostjan Aug 13, 2015
0cb1fcf
Remove DKIM/Sign.php file as it depends on package that is not public…
bostjan Aug 13, 2015
936f49a
Remove dependency on phpseclib, as it is obsolete and composer compla…
bostjan Aug 13, 2015
ec3a0a2
Composer: add ext-hash dependency
bostjan Aug 13, 2015
d6ca39b
DKIM verification fixup: make parser \r\n vs. \n agnostic.
bostjan Aug 13, 2015
d037aff
Add validation wrapper that returns only true or false as validation …
bostjan Aug 13, 2015
19fd3be
Rename Verify to Validate class, update readme and create howto
bostjan Aug 18, 2015
ae3272e
Merge remote-tracking branch 'github-angrychimp/master' into teon-master
bostjan Oct 19, 2015
1da327d
Add new author to LICENSE file, also releasing changes under MIT lice…
bostjan Oct 19, 2015
4348d25
composer.json: update license to MIT, and change description - remove…
bostjan Oct 19, 2015
49b65b1
PHPMailer fork of DKIM Validator
Synchro Oct 10, 2019
b66dd2c
Add phpinsights, phpunit, php-cs-fixer, security-advisories to requir…
Synchro Oct 11, 2019
0ca912b
Add .gitignore
Synchro Oct 11, 2019
0390d04
Insights & phpcs config
Synchro Oct 11, 2019
6b7d41b
Strict types
Synchro Oct 11, 2019
9fa4252
Code cleanup
Synchro Oct 11, 2019
32366e5
Fix DKIM signatures ending with a semicolon
ToTheMax Jan 7, 2020
ded21d8
Merge pull request #4 from ToTheMax/master
Synchro Jun 2, 2020
a30835e
Fix header retrieval
Synchro Oct 14, 2019
1d84f39
CS
Synchro Jun 2, 2020
3d90eff
Update Validator.php
blackstormlab Apr 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
vendor/
composer.lock
46 changes: 46 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?php
return PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => false,
'cast_spaces' => single,
'concat_space' => ['spacing' => 'one'],
'heredoc_to_nowdoc' => true,
'method_argument_space' => true,
'no_extra_consecutive_blank_lines' => [
'break',
'continue',
'extra',
'return',
'throw',
'use',
'parenthesis_brace_block',
'square_brace_block',
'curly_brace_block'
],
'no_php4_constructor' => true,
'no_short_echo_tag' => true,
'no_unreachable_default_argument_value' => true,
'no_useless_else' => true,
'no_useless_return' => true,
'ordered_imports' => true,
'php_unit_fqcn_annotation' => false,
'phpdoc_add_missing_param_annotation' => true,
'phpdoc_order' => true,
'phpdoc_summary' => false,
'semicolon_after_instruction' => true,
'simplified_null_return' => true,
'native_function_invocation' => false,
'yoda_style' => false,
'no_break_comment' => false,
'native_constant_invocation' => false,
])
->setFinder(
PhpCsFixer\Finder::create()
->in(__DIR__ . '/src')
->in(__DIR__ . '/test')
)
;
243 changes: 0 additions & 243 deletions DKIM.php

This file was deleted.

33 changes: 0 additions & 33 deletions DKIM/Sign.php

This file was deleted.

Loading