From 7f56617cb42be2fe63f772ed447171097ba260bf Mon Sep 17 00:00:00 2001 From: Joshua Gigg Date: Mon, 4 Nov 2024 10:59:20 +0000 Subject: [PATCH] Fix composer scripts --- .gitattributes | 3 +-- composer.json | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitattributes b/.gitattributes index 0f92266..8c676a0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5,7 +5,6 @@ /tests export-ignore /.gitattributes export-ignore /.gitignore export-ignore -/.travis.yml export-ignore /phpunit.xml.dist export-ignore /build.xml export-ignore -/.styleci.yml export-ignore +/.php-cs-fixer.dist.php export-ignore diff --git a/composer.json b/composer.json index 3320725..412b00d 100644 --- a/composer.json +++ b/composer.json @@ -45,13 +45,13 @@ ".gitattributes", ".gitignore", ".php-cs-fixer.dist.php", - ".travis.yml", "build.xml", "phpunit.xml.dist" ] }, "scripts": { - "test": "phpunit", - "metadata": "phing compile" + "cs": "vendor/bin/php-cs-fixer fix", + "test": "vendor/bin/phpunit", + "metadata": "vendor/bin/phing compile" } }