Skip to content

Commit afdfd57

Browse files
authored
Merge pull request #72 from yoeunes/dev
Enhances RegexParser with features and improvements
2 parents bd749fb + 2302753 commit afdfd57

36 files changed

+1559
-431
lines changed

.gitattributes

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
1-
# Auto-detect text files and perform LF normalization
1+
# Normalize line endings
22
* text=auto eol=lf
33

4-
# Exclude specific files and directories from "composer require" (archive exports)
5-
/.github export-ignore
6-
/.idea export-ignore
7-
/.cache export-ignore
8-
/bin export-ignore
9-
/config export-ignore
10-
/examples export-ignore
11-
/phpstan export-ignore
12-
/rector export-ignore
13-
/tests export-ignore
14-
/tools export-ignore
4+
# Ignore dev files in Composer export
5+
/.github export-ignore
6+
/.idea export-ignore
7+
/.vscode export-ignore
8+
/.cache export-ignore
9+
/.editorconfig export-ignore
10+
/.gitattributes export-ignore
11+
/.gitignore export-ignore
12+
/.php-cs-fixer.php export-ignore
13+
/.php-cs-fixer.cache export-ignore
14+
/phpbench.yml export-ignore
15+
/phpbench.json export-ignore
16+
/phpstan.neon export-ignore
17+
/phpstan.dist.neon export-ignore
18+
/rector.php export-ignore
19+
/phpunit.xml export-ignore
20+
/phpunit.xml.dist export-ignore
21+
/validate_library.php export-ignore
1522

16-
/.editorconfig export-ignore
17-
/.gitattributes export-ignore
18-
/.gitignore export-ignore
19-
/.php-cs-fixer.dist.php export-ignore
20-
/.phplint.yml export-ignore
21-
/CHANGELOG.md export-ignore
22-
/CODE_OF_CONDUCT.md export-ignore
23-
/CONTRIBUTING.md export-ignore
24-
/LICENSE export-ignore
25-
/phpunit.dist.xml export-ignore
26-
/phpstan.dist.neon export-ignore
27-
/rector.php export-ignore
28-
/taskfile.dist.yaml export-ignore
29-
/SECURITY.md export-ignore
23+
# Directories to ignore
24+
/bin export-ignore
25+
/config export-ignore
26+
/examples export-ignore
27+
/docs export-ignore
28+
/tests export-ignore
29+
/tools export-ignore
30+
/.docker export-ignore
31+
/docker export-ignore

.gitignore

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
/.idea/
22
/.cache/
33
/.task/
4+
/.junie/
5+
/.vscode/
6+
/build/
7+
/coverage/
48
/vendor/
59

10+
/composer.lock
11+
/.phpunit.result.cache
12+
/.php-cs-fixer.cache
13+
/*.log
14+
15+
616
/.php-cs-fixer.php
717
/phpstan.neon
818
/phpunit.xml
9-
10-
/composer.lock
11-
12-
/coverage-report
13-
/attached_assets
14-
/build/

.php-cs-fixer.dist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
PhpCsFixerCustomFixers\Fixer\NoSuperfluousConcatenationFixer::name() => true,
271271
PhpCsFixerCustomFixers\Fixer\NoTrailingCommaInSinglelineFixer::name() => true,
272272
PhpCsFixerCustomFixers\Fixer\NoUselessCommentFixer::name() => true,
273-
PhpCsFixerCustomFixers\Fixer\NoUselessDirnameCallFixer::name() => true,
273+
// PhpCsFixerCustomFixers\Fixer\NoUselessDirnameCallFixer::name() => true,
274274
PhpCsFixerCustomFixers\Fixer\NoUselessDoctrineRepositoryCommentFixer::name() => true,
275275
PhpCsFixerCustomFixers\Fixer\NoUselessParenthesisFixer::name() => true,
276276
PhpCsFixerCustomFixers\Fixer\NoUselessStrlenFixer::name() => true,

0 commit comments

Comments
 (0)