Skip to content
This repository has been archived by the owner on Jul 25, 2019. It is now read-only.

Commit

Permalink
Updating license
Browse files Browse the repository at this point in the history
  • Loading branch information
flemeur committed Mar 4, 2014
1 parent 3da01bf commit dfe4a91
Show file tree
Hide file tree
Showing 20 changed files with 40 additions and 358 deletions.
360 changes: 21 additions & 339 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class Module implements AutoloaderProviderInterface, ConsoleUsageProviderInterface
{
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "flaming-code/flaming-sms",
"description": "Module that provides sms sending functionality for ZF2 applications",
"type": "library",
"license": "GPL-2.0",
"license": "MIT",
"homepage": "https://github.com/FlamingCode/FlamingSms",
"keywords": [
"flamingsms",
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Cli/SmsQueueController.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class SmsQueueController extends AbstractCliController
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Controller/IncommingController.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class IncommingController extends AbstractActionController
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Controller/NotificationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class NotificationController extends AbstractActionController
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Controller/Plugin/SmsSender.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class SmsSender extends AbstractPlugin
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Entity/IncommingSms.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*
* @ORM\Entity(repositoryClass="FlamingSms\Repository\IncommingSms")
* @ORM\Table(name="incommingSmses")
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Entity/IncommingSmsInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
interface IncommingSmsInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Entity/OutgoingSms.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*
* @ORM\Entity(repositoryClass="FlamingSms\Repository\OutgoingSms")
* @ORM\Table(name="outgoingSmses")
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Entity/OutgoingSmsInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
interface OutgoingSmsInterface extends SmsInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Entity/SmsInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
interface SmsInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Repository/IncommingSms.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class IncommingSms extends EntityRepository
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Repository/OutgoingSms.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class OutgoingSms extends EntityRepository
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/Service/SmsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class SmsService extends AbstractService
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/SmsGateway/AbstractGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
abstract class AbstractGateway implements GatewayInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/SmsGateway/CoolSms.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class CoolSms extends AbstractGateway
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/SmsGateway/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class Factory implements AbstractFactoryInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/SmsGateway/FakeGw.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
class FakeGw extends AbstractGateway
{
Expand Down
2 changes: 1 addition & 1 deletion src/FlamingSms/SmsGateway/GatewayInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @author Flemming Andersen <[email protected]>
* @copyright (c) 2013, Flaming Code
* @link http://github.com/FlamingCode/FlamingSms for the canonical source repository
* @license http://opensource.org/licenses/GPL-2.0 GPL-2.0
* @license http://opensource.org/licenses/MIT MIT
*/
interface GatewayInterface
{
Expand Down

0 comments on commit dfe4a91

Please sign in to comment.