Skip to content

Commit

Permalink
feat: split testing directory
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Jun 4, 2023
1 parent 1518410 commit e5f8e9d
Show file tree
Hide file tree
Showing 7 changed files with 241 additions and 174 deletions.
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,17 @@
},
"autoload-dev": {
"psr-4": {
"WayOfDev\\Package\\Tests\\": "tests/"
"WayOfDev\\Package\\App\\": "tests/app/",
"WayOfDev\\Package\\Tests\\": "tests/src/"
}
},
"scripts": {
"cs:fix": "php vendor/bin/php-cs-fixer fix -v",
"cs:diff": "php vendor/bin/php-cs-fixer fix --dry-run -v --diff",
"test": "php vendor/bin/pest",
"test:cc": "php vendor/bin/pest --coverage",
"stan": "php vendor/bin/phpstan analyse",
"stan:ci": "php vendor/bin/phpstan analyse --error-format=github"
"test": "XDEBUG_MODE=coverage php vendor/bin/pest",
"test:cc": "XDEBUG_MODE=coverage php vendor/bin/pest --coverage",
"stan": "php vendor/bin/phpstan analyse --memory-limit=2G",
"stan:ci": "php vendor/bin/phpstan analyse --memory-limit=2G --error-format=github"
},
"config": {
"sort-packages": true,
Expand Down

0 comments on commit e5f8e9d

Please sign in to comment.