Skip to content

Commit 206ba74

Browse files
authored
Merge branch '20.0' into patch-17
2 parents 536046b + db30481 commit 206ba74

File tree

11,671 files changed

+165209
-1368141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

11,671 files changed

+165209
-1368141
lines changed

.all-contributorsrc

Lines changed: 454 additions & 0 deletions
Large diffs are not rendered by default.

.ddev/commands/web/php-cs-fixer

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
## Description: run PHP-CS-Fixer
4+
## Usage: php-cs-fixer
5+
## Example: ddev php-cs-fixer <path-to-files>
6+
7+
php vendor/bin/php-cs-fixer fix "$@"

.ddev/commands/web/phpcbf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
## Description: run PHPCodeBeautifier
4+
## Usage: phpcbf
5+
## Example: ddev phpcbf <path-to-files>
6+
7+
php vendor/bin/phpcbf -s -p --report=full,source,summary "$@"

.ddev/commands/web/phpcs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
## Description: run PHPCodeSniffer
4+
## Usage: phpcs
5+
## Example: ddev phpcs <path-to-files>
6+
7+
php vendor/bin/phpcs -s -p --report=full,summary "$@"

.ddev/commands/web/phpmd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
## Description: run PHPMD
4+
## Usage: phpmd
5+
## Example: ddev phpmd <path-to-files>
6+
7+
php vendor/bin/phpmd "$@" text .phpmd.dist.xml

.ddev/commands/web/phpstan

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
## Description: run PHPStan
4+
## Usage: phpstan
5+
## Example: ddev phpstan <path-to-files>
6+
7+
XDEBUG_MODE=off php vendor/bin/phpstan analyze "$@"

.ddev/commands/web/rector

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
## Description: run rector
4+
## Usage: rector
5+
## Example: ddev rector <path-to-files>
6+
7+
cp -n vendor/sreichel/openmage-rector/rector.php rector.php
8+
php vendor/bin/rector process "$@"

.ddev/commands/web/vendor-patches

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
## Description: create Vendor Patches
4+
## Usage: vendor-patches
5+
## Example: ddev vendor-patches
6+
7+
php vendor/bin/vendor-patches generate

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,11 @@
4343
- [ ] Pull request has a meaningful description of its purpose
4444
- [ ] All commits are accompanied by meaningful commit messages
4545
- [ ] All automated tests passed successfully (all builds are green)
46+
- [ ] Add yourself to contributors list
47+
<!---
48+
Install: `yarn add --dev all-contributors-cli`
49+
Add yourself: `yarn all-contributors add @YOUR_NAME <types>`
50+
This updates `.all-contributorsrc, README.md` and commits this changes automatically
51+
contribution types: code, doc, design
52+
See other contributions type at https://allcontributors.org/docs/en/emoji-key
53+
-->
File renamed without changes.

0 commit comments

Comments
 (0)