From 806c3cc0588f5fa671a28becfca2b1d70b9b4b01 Mon Sep 17 00:00:00 2001 From: em411 <7682404+em411@users.noreply.github.com> Date: Thu, 25 Apr 2024 21:59:57 +0200 Subject: [PATCH] Add support for ecs --- README.md | 3 ++- __tests__/tools.test.ts | 5 +++-- src/configs/tools.json | 7 ++++++- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 192eaf649..9b20f164b 100644 --- a/README.md +++ b/README.md @@ -224,7 +224,7 @@ PHP extensions can be set up using the `extensions` input. It accepts a `string` These tools can be set up globally using the `tools` input. It accepts a string in csv-format. -[`behat`], [`blackfire`], [`blackfire-player`], [`box`], [`castor`], [`churn`], [`codeception`], [`composer`], [`composer-normalize`], [`composer-prefetcher`], [`composer-require-checker`], [`composer-unused`], [`cs2pr`], [`deployer`], [`flex`], [`grpc_php_plugin`], [`infection`], [`parallel-lint`], [`pecl`], [`phan`], [`phing`], [`phinx`], [`phive`], [`php-config`], [`php-cs-fixer`], [`php-scoper`], [`phpcbf`], [`phpcpd`], [`phpcs`], [`phpdoc`] or [`phpDocumentor`], [`phpize`], [`phplint`], [`phpmd`], [`phpspec`], [`phpstan`], [`phpunit`], [`phpunit-bridge`], [`phpunit-polyfills`], [`pint`], [`prestissimo`], [`protoc`], [`psalm`], [`rector`], [`symfony`] or [`symfony-cli`], [`vapor`] or [`vapor-cli`], [`wp`] or [`wp-cli`] +[`behat`], [`blackfire`], [`blackfire-player`], [`box`], [`castor`], [`churn`], [`codeception`], [`composer`], [`composer-normalize`], [`composer-prefetcher`], [`composer-require-checker`], [`composer-unused`], [`cs2pr`], [`deployer`], [`ecs`], [`flex`], [`grpc_php_plugin`], [`infection`], [`parallel-lint`], [`pecl`], [`phan`], [`phing`], [`phinx`], [`phive`], [`php-config`], [`php-cs-fixer`], [`php-scoper`], [`phpcbf`], [`phpcpd`], [`phpcs`], [`phpdoc`] or [`phpDocumentor`], [`phpize`], [`phplint`], [`phpmd`], [`phpspec`], [`phpstan`], [`phpunit`], [`phpunit-bridge`], [`phpunit-polyfills`], [`pint`], [`prestissimo`], [`protoc`], [`psalm`], [`rector`], [`symfony`] or [`symfony-cli`], [`vapor`] or [`vapor-cli`], [`wp`] or [`wp-cli`] ```yaml - name: Setup PHP with tools @@ -1050,6 +1050,7 @@ These companies generously provide setup-php their products and services to aid [`composer-unused`]: https://github.com/composer-unused/composer-unused [`cs2pr`]: https://github.com/staabm/annotate-pull-request-from-checkstyle [`deployer`]: https://deployer.org/ +[`ecs`]: https://github.com/easy-coding-standard/easy-coding-standard [`flex`]: https://flex.symfony.com/ [`grpc_php_plugin`]: https://grpc.io/ [`infection`]: https://infection.github.io/ diff --git a/__tests__/tools.test.ts b/__tests__/tools.test.ts index bab2d0205..1332484af 100644 --- a/__tests__/tools.test.ts +++ b/__tests__/tools.test.ts @@ -434,7 +434,7 @@ describe('Tools tests', () => { it.each([ [ - 'behat, blackfire, blackfire-player, churn, composer-normalize, composer-require-checker, composer-unused, cs2pr:1.2.3, flex, grpc_php_plugin:1.2.3, infection, phan, phan:1.2.3, phing:1.2.3, phinx, phive:1.2.3, php-config, phpcbf, phpcpd, phpcs, phpdoc, phpize, phpmd, phpspec, phpunit-bridge:5.6, phpunit-polyfills:1.0.1, protoc:v1.2.3, psalm, rector, symfony-cli, vapor-cli, wp-cli', + 'behat, blackfire, blackfire-player, churn, composer-normalize, composer-require-checker, composer-unused, cs2pr:1.2.3, ecs, flex, grpc_php_plugin:1.2.3, infection, phan, phan:1.2.3, phing:1.2.3, phinx, phive:1.2.3, php-config, phpcbf, phpcpd, phpcs, phpdoc, phpize, phpmd, phpspec, phpunit-bridge:5.6, phpunit-polyfills:1.0.1, protoc:v1.2.3, psalm, rector, symfony-cli, vapor-cli, wp-cli', [ 'add_tool https://github.com/shivammathur/composer-cache/releases/latest/download/composer-7.4-stable.phar,https://dl.cloudsmith.io/public/shivammathur/composer-cache/raw/files/composer-7.4-stable.phar,https://getcomposer.org/composer-stable.phar composer', 'add_composer_tool behat behat behat/ scoped', @@ -468,7 +468,8 @@ describe('Tools tests', () => { 'add_composer_tool rector rector rector/ scoped', 'add_symfony latest', 'add_composer_tool vapor-cli vapor-cli laravel/ scoped', - 'add_tool https://github.com/wp-cli/builds/blob/gh-pages/phar/wp-cli.phar?raw=true wp-cli "--version"' + 'add_tool https://github.com/wp-cli/builds/blob/gh-pages/phar/wp-cli.phar?raw=true wp-cli "--version"', + 'add_composer_tool easy-coding-standard ecs symplify/ scoped' ] ] ])('checking addTools on darwin', async (tools_csv, scripts) => { diff --git a/src/configs/tools.json b/src/configs/tools.json index 437ff388a..6bcf6347b 100644 --- a/src/configs/tools.json +++ b/src/configs/tools.json @@ -318,5 +318,10 @@ "extension": ".phar", "version_parameter": "--version", "version_prefix": "v" + }, + "ecs": { + "type": "composer", + "repository": "symplify/easy-coding-standard", + "scope": "scoped" } -} \ No newline at end of file +}