Skip to content

Commit

Permalink
Add scrutinizer config, and phpunit config
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyguirra committed Feb 25, 2024
1 parent f7b9e25 commit a2df4df
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
composer.phar
/vendor/

*.cache

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock
# composer.lock
9 changes: 9 additions & 0 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
build:
nodes:
analysis:
environment:
php:
version: 8.2
tests:
override:
- php-scrutinizer-run
9 changes: 9 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
colors="true">
<testsuites>
<testsuite name="OFX">
<directory>./tests/</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit a2df4df

Please sign in to comment.