Skip to content

Commit

Permalink
Started working on tests
Browse files Browse the repository at this point in the history
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
  • Loading branch information
Aviortheking committed Jun 22, 2021
1 parent 1b4eea0 commit 01f746a
Show file tree
Hide file tree
Showing 5 changed files with 2,387 additions and 169 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/vendor/
tmp
16 changes: 12 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
"TCGdex\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "__tests__"
}
},
"authors": [
{
"name": "Avior",
Expand All @@ -29,21 +34,24 @@
"psr/simple-cache": "^1.0"
},
"suggest": {
"kriswallsmith/buzz": "Good PSR 18 implementation",
"symfony/cache": "Good PSR16 implementation",
"nyholm/psr7": "Good PSR17 implementation",
"symfony/cache": "Good PSR16 implementation"
"kriswallsmith/buzz": "Good PSR 18 implementation"
},
"require-dev": {
"kriswallsmith/buzz": "^1.2",
"symfony/cache": "^5.3",
"nyholm/psr7": "^1.4",
"squizlabs/php_codesniffer": "^3.6",
"phpmd/phpmd": "^2.10",
"phpstan/phpstan": "^0.12.90"
"phpstan/phpstan": "^0.12.90",
"phpunit/phpunit": "^9.5",
"webclient/fake-http-client": "^1.0"
},
"scripts": {
"phpcs": "phpcs",
"phpmd": "vendor/bin/phpmd src text phpmd",
"phpstan": "phpstan analyse src --level=max"
"phpstan": "phpstan analyse src --level=max",
"test": "XDEBUG_MODE=coverage phpunit"
}
}
Loading

0 comments on commit 01f746a

Please sign in to comment.