-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from JordanRL/dev
Merging dev into master
- Loading branch information
Showing
40 changed files
with
4,692 additions
and
872 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
src_dir: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.idea | ||
vendor/ | ||
composer.lock | ||
composer.lock | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
tools: | ||
external_code_coverage: | ||
timeout: 600 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
language: php | ||
php: | ||
- 7.0 | ||
|
||
install: | ||
- composer update | ||
|
||
before_script: | ||
- mkdir build | ||
- mkdir build/logs | ||
|
||
script: | ||
- phpunit --coverage-text ./tests/Samsara | ||
|
||
after_success: | ||
- wget https://scrutinizer-ci.com/ocular.phar | ||
- php ocular.phar code-coverage:upload --format=php-clover build/logs/coverage.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,43 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
This project adheres to [Semantic Versioning](http://semver.org/). At least so much as we feel like it. | ||
|
||
## [Unreleased] - [unreleased] | ||
### Added | ||
- **Dependencies:** | ||
- riimu/kit-baseconversion: v1.* | ||
- ircmaxell/random-lib: v1.1.* | ||
- ext-stats: * | ||
- php-ds/php-ds: v1.1.* | ||
- ext-bcmath: * | ||
- **Suggested Extensions** | ||
- ext-ds: * | ||
- ext-stats: * (NOTE: This extension can't be used because it is not available for PHP 7+) | ||
- ext-gmp: * | ||
- **Dev Dependencies:** | ||
- phpunit/phpunit: v4.8.* | ||
- Contexts: | ||
- UniformContext | ||
- PolynomialContext | ||
- GaussianContext | ||
- Types: | ||
- Interfaces: | ||
- CoordinateInterface | ||
- DecimalInterface | ||
- FractionInterface | ||
- NumberInterface | ||
- Fraction | ||
- Number | ||
- Tuple | ||
- Numbers: | ||
- FluentNumber | ||
- CartesianCoordinate | ||
- Currency | ||
- ImmutableFraction | ||
- ImmutableNumber | ||
- MutableFraction | ||
- MutableNumber | ||
- Providers: | ||
- BCProvider | ||
- GaussianProvider | ||
- Distributions: | ||
- Exponential | ||
- Normal | ||
- Poisson | ||
- ArithmeticProvider | ||
- SequenceProvider | ||
- SeriesProvider | ||
- StatsProvider | ||
- TrigonometryProvider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<phpunit bootstrap="tests/bootstrap.php" | ||
colors="true" | ||
verbose="true"> | ||
<testsuites name="Fermat Values"> | ||
<directory>/tests/Samsara/Fermat/Values/*Test.php</directory> | ||
</testsuites> | ||
|
||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">./src</directory> | ||
</whitelist> | ||
</filter> | ||
|
||
<logging> | ||
<log type="coverage-clover" target="build/logs/coverage.xml" /> | ||
</logging> | ||
</phpunit> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.