-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99c8c01
commit 6c16dfe
Showing
1 changed file
with
25 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,26 @@ | ||
# distance | ||
# Distance | ||
Distance helps you calculate the distance between GPS coordinates, in vanilla PHP. Pure and simple. | ||
|
||
## Installation | ||
|
||
### Using Composer | ||
|
||
When using [Composer](https://getcomposer.org) you can always load in the latest version. | ||
|
||
```bash | ||
{ | ||
"require": { | ||
"ldebrouwer/distance": "dev-master" | ||
} | ||
} | ||
``` | ||
Check it out [on Packagist](https://packagist.org/packages/ldebrouwer/distance). | ||
|
||
## Documentation | ||
|
||
This is still on the to-do list. The code is pretty well documented though and should autocomplete in most IDEs. | ||
|
||
## Still to come | ||
- Haversine formula support. | ||
- Expanded unit support. | ||
- Documentation. |