Skip to content

Commit

Permalink
Email for contact modified in license header and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberomulus committed Mar 25, 2020
1 parent b5fe9d6 commit fc1ecb7
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 18 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## v2.0.1 (2020-03-25)

- Add branches strategy
- Clean `.gitignore`
- Email for contact modified in license header and docs
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@
],
"homepage" : "https://github.com/cyberomulus/SiteMapGenerator",
"support" : {
"email" : "me@cyberomulus.me",
"email" : "cyberomulus.me@gmail.com",
"issues" : "https://github.com/cyberomulus/SiteMapGenerator/issues",
"wiki" : "https://github.com/cyberomulus/SiteMapGenerator/wiki",
"source" : "https://github.com/cyberomulus/SiteMapGenerator"
},
"license" : "MIT",
"authors" : [{
"name" : "Brack Romain",
"email" : "[email protected]",
"homepage" : "http://www.cyberomulus.me"
"email" : "[email protected]"
}
],
"require" : {
Expand Down
4 changes: 2 additions & 2 deletions src/Entries/GoogleImageEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
* This file is part of the SiteMapGenerator package.
*
* (c) Brack Romain <http://www.cyberomulus.me>
* (c) Brack Romain <cyberomulus.me@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand All @@ -13,7 +13,7 @@
/**
* This class represent an image entries for Google
*
* @author cyberomulus - Brack Romain <me@cyberomulus.me>
* @author cyberomulus - Brack Romain <cyberomulus.me@gmail.com>
*/
class GoogleImageEntry
{
Expand Down
6 changes: 3 additions & 3 deletions src/Entries/SiteMapEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
* This file is part of the SiteMapGenerator package.
*
* (c) Brack Romain <http://www.cyberomulus.me>
* (c) Brack Romain <cyberomulus.me@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand All @@ -13,7 +13,7 @@
/**
* This class represent an SiteMap entry for SiteMap Index
*
* @author cyberomulus - Brack Romain <me@cyberomulus.me>
* @author cyberomulus - Brack Romain <cyberomulus.me@gmail.com>
*/
class SiteMapEntry
{
Expand Down Expand Up @@ -66,7 +66,7 @@ public function setUrl($url)
}

/**
* @return DateTime
* @return \DateTime
* Date of entrys last modification
*/
public function getLastModification()
Expand Down
4 changes: 2 additions & 2 deletions src/Entries/URLEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
* This file is part of the SiteMapGenerator package.
*
* (c) Brack Romain <http://www.cyberomulus.me>
* (c) Brack Romain <cyberomulus.me@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand All @@ -16,7 +16,7 @@
/**
* This class represent an URL entry
*
* @author cyberomulus - Brack Romain <me@cyberomulus.me>
* @author cyberomulus - Brack Romain <cyberomulus.me@gmail.com>
*/
class URLEntry extends SiteMapEntry
{
Expand Down
4 changes: 2 additions & 2 deletions src/Formatter/Formatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
* This file is part of the SiteMapGenerator package.
*
* (c) Brack Romain <http://www.cyberomulus.me>
* (c) Brack Romain <cyberomulus.me@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand All @@ -16,7 +16,7 @@
/**
* Abstract class for all formatter
*
* @author cyberomulus - Brack Romain <me@cyberomulus.me>
* @author cyberomulus - Brack Romain <cyberomulus.me@gmail.com>
*/
abstract class Formatter
{
Expand Down
4 changes: 2 additions & 2 deletions src/Formatter/XMLFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
* This file is part of the SiteMapGenerator package.
*
* (c) Brack Romain <http://www.cyberomulus.me>
* (c) Brack Romain <cyberomulus.me@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand All @@ -18,7 +18,7 @@
/**
* This formatter format in XML specification
*
* @author cyberomulus - Brack Romain <me@cyberomulus.me>
* @author cyberomulus - Brack Romain <cyberomulus.me@gmail.com>
*/
class XMLFormatter extends Formatter
{
Expand Down
4 changes: 2 additions & 2 deletions src/SiteMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
* This file is part of the SiteMapGenerator package.
*
* (c) Brack Romain <http://www.cyberomulus.me>
* (c) Brack Romain <cyberomulus.me@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand All @@ -15,7 +15,7 @@
/**
* This class represent a site's map
*
* @author cyberomulus - Brack Romain <me@cyberomulus.me>
* @author cyberomulus - Brack Romain <cyberomulus.me@gmail.com>
*/
class SiteMap
{
Expand Down
4 changes: 2 additions & 2 deletions src/SiteMapIndex.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
* This file is part of the SiteMapGenerator package.
*
* (c) Brack Romain <http://www.cyberomulus.me>
* (c) Brack Romain <cyberomulus.me@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand All @@ -15,7 +15,7 @@
/**
* This class represent a index of site's map
*
* @author cyberomulus - Brack Romain <me@cyberomulus.me>
* @author cyberomulus - Brack Romain <cyberomulus.me@gmail.com>
*/
class SiteMapIndex
{
Expand Down

0 comments on commit fc1ecb7

Please sign in to comment.