-
-
Notifications
You must be signed in to change notification settings - Fork 436
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4,521 changed files
with
10,633 additions
and
1,159,838 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
## Description: run PHP-CS-Fixer | ||
## Usage: php-cs-fixer | ||
## Example: ddev php-cs-fixer <path-to-files> | ||
|
||
php vendor/bin/php-cs-fixer fix "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
## Description: run PHPCodeBeautifier | ||
## Usage: phpcbf | ||
## Example: ddev phpcbf <path-to-files> | ||
|
||
php vendor/bin/phpcbf -s -p --report=full,source,summary "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
## Description: run PHPCodeSniffer | ||
## Usage: phpcs | ||
## Example: ddev phpcs <path-to-files> | ||
|
||
php vendor/bin/phpcs -s -p --report=full,summary "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
## Description: run PHPMD | ||
## Usage: phpmd | ||
## Example: ddev phpmd <path-to-files> | ||
|
||
php vendor/bin/phpmd "$@" text .phpmd.dist.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
## Description: run PHPStan | ||
## Usage: phpstan | ||
## Example: ddev phpstan <path-to-files> | ||
|
||
XDEBUG_MODE=off php vendor/bin/phpstan analyze "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
paths-ignore: | ||
- 'js/prototype/prototype.js' | ||
- 'skin/frontend/rwd/default/js/lib/selectivizr.js' | ||
- 'js/mage/adminhtml/flexuploader.js' | ||
- 'js/mage/adminhtml/sales/packaging.js' | ||
- 'js/mage/adminhtml/uploader/instance.js' | ||
- 'js/mage/adminhtml/wysiwyg/tiny_mce/setup.js' | ||
- 'js/prototype/validation.js' | ||
- 'js/tiny_mce/tiny_mce_dev.js' | ||
- 'js/tiny_mce/tiny_mce.js' | ||
- 'js/tiny_mce/tiny_mce_src.js' | ||
- 'js/tiny_mce/tiny_mce_jquery.js' | ||
- 'js/tiny_mce/tiny_mce_jquery_src.js' | ||
- 'js/tiny_mce/tiny_mce_prototype.js' | ||
- 'js/tiny_mce/tiny_mce_prototype_src.js' | ||
- 'js/tiny_mce/classes/**/*.js' | ||
- 'js/tiny_mce/utils/**/*.js' | ||
- 'js/tiny_mce/plugins/**/*.js' | ||
- 'js/lib/jquery/jquery-1.12.4.js' | ||
- 'js/extjs/ext-tree.js' | ||
- '**/*.test.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "composer" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.