Skip to content

Commit

Permalink
Merge pull request #37 from peter279k/test_enhancement
Browse files Browse the repository at this point in the history
Test enhancement
  • Loading branch information
n1crack authored Jul 30, 2018
2 parents adb7b5a + 77e2b02 commit 26fc2d4
Show file tree
Hide file tree
Showing 15 changed files with 280 additions and 1,266 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ php:
- 7.2

before_script:
- travis_retry composer install --prefer-source --no-interaction
- travis_retry composer update --prefer-source --no-interaction

script:
- vendor/bin/phpspec run --config=phpspec.yml --no-interaction
- vendor/bin/phpunit
15 changes: 13 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,21 @@
}
],
"autoload": {
"psr-4": {"Ozdemir\\Datatables\\": "src/"}
"psr-4": {
"Ozdemir\\Datatables\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ozdemir\\Datatables\\Test\\": "src/tests/unit"
}
},
"minimum-stability": "dev",
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpspec/phpspec": "~2.0"
"phpspec/phpspec": "^2.0",
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.5"
}
}
Loading

0 comments on commit 26fc2d4

Please sign in to comment.