Skip to content

Commit

Permalink
feat: change license to MIT
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaschen committed Sep 26, 2017
1 parent 4f77193 commit acd73fc
Show file tree
Hide file tree
Showing 29 changed files with 81 additions and 728 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to `mjaschen/phpgeo` will be documented in this file.
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [2.0.0]

### Changed

* License: *phpgeo* is now distributed under the MIT license

## [1.3.8] - 2017-07-05

### Fixed
Expand Down
695 changes: 21 additions & 674 deletions LICENSE

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/Location/Bearing/BearingEllipsoidal.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @see http://www.movable-type.co.uk/scripts/latlong-vincenty.html
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -23,7 +23,7 @@
* ellipsoidal model of the earth
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class BearingEllipsoidal implements BearingInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Bearing/BearingSpherical.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* simple spherical model of the earth.
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -17,7 +17,7 @@
* simple spherical model of the earth.
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class BearingSpherical implements BearingInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Bounds.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Coordinate Bounds Class
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -15,7 +15,7 @@
* Coordinate Bounds Class
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class Bounds
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Coordinate.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Coordinate Implementation
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -16,7 +16,7 @@
* Coordinate Implementation
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class Coordinate implements GeometryInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Distance/DistanceInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Interface for Distance Calculator Classes
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -15,7 +15,7 @@
* Interface for Distance Calculator Classes
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
interface DistanceInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Distance/Haversine.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Implementation of distance calculation with http://en.wikipedia.org/wiki/Law_of_haversines
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -19,7 +19,7 @@
* @see http://en.wikipedia.org/wiki/Law_of_haversines
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class Haversine implements DistanceInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Distance/Vincenty.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Implementation of distance calculation with Vincenty Method
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -19,7 +19,7 @@
* @see http://www.movable-type.co.uk/scripts/latlong-vincenty.html
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class Vincenty implements DistanceInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Ellipsoid.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Ellipsoid
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -13,7 +13,7 @@
* Ellipsoid
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class Ellipsoid
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Factory/CoordinateFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Coordinate Factory
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -16,7 +16,7 @@
* Coordinate Factory
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class CoordinateFactory implements GeometryFactoryInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Factory/GeometryFactoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Geometry Factory Interface
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -15,7 +15,7 @@
* Geometry Factory Interface
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
interface GeometryFactoryInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Formatter/Coordinate/DMS.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Coordinate Formatter "DMS"
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -15,7 +15,7 @@
* Coordinate Formatter "DMS"
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class DMS implements FormatterInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Formatter/Coordinate/DecimalDegrees.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Coordinate Formatter "Decimal Degrees"
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -15,7 +15,7 @@
* Coordinate Formatter "Decimal Degrees"
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class DecimalDegrees implements FormatterInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Formatter/Coordinate/DecimalMinutes.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Coordinate Formatter "DecimalMinutes"
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -15,7 +15,7 @@
* Coordinate Formatter "DecimalMinutes"
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class DecimalMinutes implements FormatterInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Formatter/Coordinate/FormatterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Coordinate Formatter Interface
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -15,7 +15,7 @@
* Coordinate Formatter Interface
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
interface FormatterInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Formatter/Coordinate/GeoJSON.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* GeoJSON Coordinate Formatter
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -15,7 +15,7 @@
* GeoJSON Coordinate Formatter
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class GeoJSON implements FormatterInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Formatter/Polygon/FormatterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @author Richard Barnes <rbarnes@umn.edu>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -17,7 +17,7 @@
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @author Richard Barnes <rbarnes@umn.edu>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
interface FormatterInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Formatter/Polygon/GeoJSON.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* GeoJSON Polygon Formatter
*
* @author Richard Barnes <rbarnes@umn.edu>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -17,7 +17,7 @@
* GeoJSON Polygon Formatter
*
* @author Richard Barnes <rbarnes@umn.edu>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class GeoJSON implements FormatterInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Formatter/Polyline/FormatterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Polyline Formatter Interface
*
* @author Richard Barnes <rbarnes@umn.edu>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -15,7 +15,7 @@
* Polyline Formatter Interface
*
* @author Richard Barnes <rbarnes@umn.edu>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
interface FormatterInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Formatter/Polyline/GeoJSON.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* GeoJSON Polyline Formatter
*
* @author Richard Barnes <rbarnes@umn.edu>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -15,7 +15,7 @@
* GeoJSON Polyline Formatter
*
* @author Richard Barnes <rbarnes@umn.edu>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class GeoJSON implements FormatterInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Line.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* PHP version 5
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -18,7 +18,7 @@
* Line Implementation
*
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class Line implements GeometryInterface
Expand Down
4 changes: 2 additions & 2 deletions src/Location/Polygon.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @author Paul Vidal <paul.vidal.lujan@gmail.com>
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/

Expand All @@ -20,7 +20,7 @@
*
* @author Paul Vidal <paul.vidal.lujan@gmail.com>
* @author Marcus Jaschen <mjaschen@gmail.com>
* @license https://opensource.org/licenses/GPL-3.0 GPL
* @license https://opensource.org/licenses/MIT
* @link https://github.com/mjaschen/phpgeo
*/
class Polygon implements GeometryInterface
Expand Down
Loading

0 comments on commit acd73fc

Please sign in to comment.