Skip to content

Commit

Permalink
Fixing root directory for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanRL committed Jun 26, 2021
1 parent 1185927 commit 79af89b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 36 deletions.
3 changes: 0 additions & 3 deletions .coveralls.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

5 changes: 2 additions & 3 deletions COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
This program provides a set of number objects and ways of interacting
with them to solve statistics problems, and problems with very large
numbers.
Copyright (C) 2015 Jordan LeDoux
with them to solve problems with very large numbers.
Copyright (C) 2021 Jordan LeDoux

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@

To install, simply require the package using composer:

composer require samsara/fermat "1.*"
composer require samsara/fermat "^2.0"

Or include it in your `composer.json` file:

```json
{
"require": {
"samsara/fermat": "1.*"
"samsara/fermat": "^2.0"
}
}
```
Expand All @@ -32,6 +32,20 @@ Modules for Fermat provide additional functionality, as many of these features w
- [Matrices & Vectors](https://github.com/SamsaraLabs/FermatMatricesAndVectors): Provides support for matrix math and vector math.
- [Statistics](https://github.com/SamsaraLabs/FermatStats): Provides support for statistical operations and distributions.

To require the entire library, including all available modules, use:

composer require samsara/fermat-all "^2.0"

Or in your `composer.json` file:

```json
{
"require": {
"samsara/fermat-all": "^2.0"
}
}
```

## Documentation

The `Samsara\Fermat\Numbers` factory class provides a way to use the Value classes in Fermat without being as specific as those classes may require. Consider the following code:
Expand Down
12 changes: 0 additions & 12 deletions test.php

This file was deleted.

0 comments on commit 79af89b

Please sign in to comment.