-
-
Notifications
You must be signed in to change notification settings - Fork 83
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
1 parent
d8cf7c4
commit be31d9b
Showing
3,331 changed files
with
326,630 additions
and
5,987 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/vendor | ||
# we need the vendor | ||
composer.lock | ||
|
||
.phpunit.result.cache | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
<?php | ||
namespace ECSPrefix202301; | ||
|
||
require __DIR__ . '/ecs.php'; |
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,85 +1,20 @@ | ||
{ | ||
"name": "symplify/easy-coding-standard", | ||
"description": "Use Coding Standard with 0-knowledge of PHP-CS-Fixer and PHP_CodeSniffer.", | ||
"description": "Use Coding Standard with 0-knowledge of PHP-CS-Fixer and PHP_CodeSniffer", | ||
"license": "MIT", | ||
"bin": [ | ||
"bin/ecs" | ||
], | ||
"require": { | ||
"php": ">=8.1", | ||
"composer/xdebug-handler": "^3.0", | ||
"friendsofphp/php-cs-fixer": "^3.12", | ||
"nette/utils": "^3.2", | ||
"squizlabs/php_codesniffer": "^3.7.1", | ||
"symfony/config": "^6.2", | ||
"symfony/console": "^6.2", | ||
"symfony/dependency-injection": "6.1.*", | ||
"symfony/finder": "^6.2", | ||
"symplify/autowire-array-parameter": "^11.1", | ||
"symplify/coding-standard": "^11.1.32", | ||
"symplify/easy-parallel": "^11.1", | ||
"symplify/package-builder": "^11.1", | ||
"symplify/symplify-kernel": "^11.1", | ||
"webmozart/assert": "^1.11" | ||
}, | ||
"require-dev": { | ||
"cweagans/composer-patches": "^1.7", | ||
"php-parallel-lint/php-parallel-lint": "^1.3", | ||
"phpstan/extension-installer": "^1.2", | ||
"phpstan/phpstan": "^1.9.4", | ||
"phpstan/phpstan-phpunit": "^1.3", | ||
"phpstan/phpstan-symfony": "^1.2", | ||
"phpstan/phpstan-webmozart-assert": "^1.2", | ||
"phpunit/phpunit": "^9.5.27", | ||
"rector/rector": "^0.15.2", | ||
"symplify/easy-ci": "^11.1", | ||
"symplify/monorepo-builder": "^11.1", | ||
"symplify/phpstan-extensions": "^11.1", | ||
"tracy/tracy": "^2.9" | ||
"php": ">=7.2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Symplify\\EasyCodingStandard\\": [ | ||
"src", | ||
"packages" | ||
] | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Symplify\\EasyCodingStandard\\Tests\\": [ | ||
"tests", | ||
"packages-tests" | ||
] | ||
} | ||
}, | ||
"extra": { | ||
"enable-patching": true, | ||
"patches": { | ||
"symfony/dependency-injection": [ | ||
"https://raw.githubusercontent.com/symplify/vendor-patch-files/main/patches/generic-php-config-loader.patch" | ||
] | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"platform-check": false, | ||
"allow-plugins": { | ||
"cweagans/composer-patches": true, | ||
"phpstan/extension-installer": true | ||
} | ||
}, | ||
"scripts": { | ||
"check-cs": "bin/ecs check --ansi", | ||
"fix-cs": "bin/ecs check --fix --ansi", | ||
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify", | ||
"docs": [ | ||
"vendor/bin/rule-doc-generator generate packages/coding-standard --output-file docs/rules_overview.md --ansi", | ||
"bin/ecs check-markdown docs/rules_overview.md --fix --ansi" | ||
], | ||
"rector": "vendor/bin/rector process --dry-run --ansi", | ||
"release": "vendor/bin/monorepo-builder release patch --ansi" | ||
"files": [ | ||
"bootstrap.php" | ||
] | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
"conflict": { | ||
"squizlabs/php_codesniffer": "<3.6", | ||
"friendsofphp/php-cs-fixer": "<3.0" | ||
} | ||
} |
Oops, something went wrong.