Skip to content

Commit

Permalink
Add testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
aldemeery committed Aug 29, 2020
1 parent 0d50a87 commit 69e4ab7
Show file tree
Hide file tree
Showing 10 changed files with 2,122 additions and 68 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
vendor/*
vendor/
tests/report/
.phpunit.result.cache
23 changes: 21 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,38 @@
"illuminate/support": "~5.8|^6.0|^7.0|^8.0",
"illuminate/database": "~5.8|^6.0|^7.0|^8.0",
"illuminate/http": "~5.8|^6.0|^7.0|^8.0",
"illuminate/console": "~5.8|^6.0|^7.0|^8.0",
"laravel/helpers": "~1.1"
"illuminate/console": "~5.8|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Aldemeery\\Sieve\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aldemeery\\Sieve\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Aldemeery\\Sieve\\FiltersServiceProvider"
]
}
},
"require-dev": {
"php": ">=7.3",
"phpunit/phpunit": "^9.0",
"illuminate/support": "^7.0",
"illuminate/http": "^7.0",
"illuminate/database": "^7.0"
},
"scripts": {
"test": [
"phpunit --colors=always --no-coverage"
],
"coverage": [
"phpunit --colors=always"
]
}
}
Loading

0 comments on commit 69e4ab7

Please sign in to comment.