Skip to content
This repository was archived by the owner on May 8, 2025. It is now read-only.

Commit 55bd9cf

Browse files
committed
package name changes
1 parent d8896da commit 55bd9cf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
A PHP class for analysing FIT files created by Garmin GPS devices.
44

5-
[Live demonstration](http://www.adriangibbons.com/phpFITFileAnalysis/demo/) (Right-click and Open in new tab)
5+
[Live demonstration](http://www.adriangibbons.com/php-fit-file-analysis/demo/) (Right-click and Open in new tab)
66

77
##Demo Screenshots
88
![Mountain Biking](demo/img/mountain-biking.jpg)
99
![Power Analysis](demo/img/power-analysis.jpg)
1010
![Swim](demo/img/swim.jpg)
1111

12-
Please read this page in its entirety and the [FAQ](https://github.com/adriangibbons/phpFITFileAnalysis/wiki/Frequently-Asked-Questions-(FAQ)) first if you have any questions or need support.
12+
Please read this page in its entirety and the [FAQ](https://github.com/adriangibbons/php-fit-file-analysis/wiki/Frequently-Asked-Questions-(FAQ)) first if you have any questions or need support.
1313

1414
##What is a FIT file?
1515
FIT or Flexible and Interoperable Data Transfer is a file format used for GPS tracks and routes. It is used by newer Garmin fitness GPS devices, including the Edge and Forerunner series, which are popular with cyclists and runners.
@@ -105,7 +105,7 @@ $options = [
105105
'units' => 'statute',
106106
'pace' => true
107107
];
108-
$pFFA = new phpFITFileAnalysis('my_fit_file.fit', $options);
108+
$pFFA = new adriangibbons\phpFITFileAnalysis\phpFITFileAnalysis('my_fit_file.fit', $options);
109109
````
110110
The optional parameters are described in more detail below.
111111
####"Fix" the Data
@@ -290,7 +290,7 @@ $pFFA->criticalPower($time_periods); // e.g. 300 or [300, 600, 900, 1200]
290290
Note that ```$pFFA->criticalPower``` and some power metrics (Normalised Power, Variability Index, Intensity Factor, Training Stress Score) will use the [PHP Trader](http://php.net/manual/en/book.trader.php) extension if it is loaded on the server. If the extension is not loaded then it will use the built-in Simple Moving Average algorithm, which is far less performant particularly for larger files!
291291

292292

293-
A demo of power analysis is available [here](http://www.adriangibbons.com/phpFITFileAnalysis-demo/analysis_power.php).
293+
A demo of power analysis is available [here](http://www.adriangibbons.com/php-fit-file-analysis-demo/analysis_power.php).
294294

295295
##Acknowledgement
296296
This class has been created using information available in a Software Development Kit (SDK) made available by ANT ([thisisant.com](http://www.thisisant.com/resources/fit)).

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "adriangibbons/phpFITFileAnalysis",
2+
"name": "adriangibbons/php-fit-file-analysis",
33
"type": "library",
44
"description": "A PHP class for analysing FIT files created by Garmin GPS devices",
55
"keywords": ["garmin", "fit"],
6-
"homepage": "https://github.com/adriangibbons/phpFITFileAnalysis",
6+
"homepage": "https://github.com/adriangibbons/php-fit-file-analysis",
77
"require-dev": {
88
"phpunit/phpunit": "4.8.*",
99
"squizlabs/php_codesniffer": "2.*"

0 commit comments

Comments
 (0)