Skip to content

Commit

Permalink
Fix composer scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
giggsey committed Nov 4, 2024
1 parent 066ee09 commit 7f56617
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

0 comments on commit 7f56617

Please sign in to comment.