Skip to content

Commit

Permalink
Merge branch 'T1844_copyright_notice' into SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
G. Brannon Smith committed Dec 9, 2015
2 parents 1aa0c78 + 9d0920a commit ab8de20
Show file tree
Hide file tree
Showing 19 changed files with 114 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .arcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"project.name" : "signifyd-php",
"phabricator.uri" : "https://signifyd.phacility.com/",
"history.immutable" : true
}
8 changes: 8 additions & 0 deletions .arclint
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"linters": {
"php": {
"type": "php",
"include": "(\\.php$)"
}
}
}
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
.idea/*
.vagrant/*
VAGRANTFILE
index.php
index.php

# Ignore the files and directories created by Eclipse
.cache
.classpath
.project
.settings
.buildpath
28 changes: 28 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
The MIT License (MIT)
http://opensource.org/licenses/MIT

Copyright © 2015 SIGNIFYD Inc. All rights reserved.


Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:



The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.



THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Signifyd client plugin for PHP. Intstall with Composer (https://getcomposer.org/)
SIGNIFYD client plugin for PHP. Intstall with Composer (https://getcomposer.org/)
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Signifyd client API plugin for PHP",
"type": "library",
"license": [
"OSL-3.0"
"MIT"
],
"require": {
"php": ">=5.4.0"
Expand Down
5 changes: 5 additions & 0 deletions lib/Core/SignifydAPI.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Core;

class SignifydAPI
Expand Down
6 changes: 5 additions & 1 deletion lib/Core/SignifydModel.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Core;

/**
* Class SignifydModel Base class for all API model data. Handles data validation
* Class SignifydModel Base class for all API model data. Handles data validation.
*/
abstract class SignifydModel
{
Expand Down
4 changes: 4 additions & 0 deletions lib/Core/SignifydSettings.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Core;

/**
Expand Down
5 changes: 5 additions & 0 deletions lib/Models/Address.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Models;

use Signifyd\Core\SignifydModel;
Expand Down
5 changes: 5 additions & 0 deletions lib/Models/Card.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Models;

use Signifyd\Core\SignifydModel;
Expand Down
5 changes: 5 additions & 0 deletions lib/Models/CaseModel.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Models;

use Signifyd\Core\SignifydModel;
Expand Down
4 changes: 4 additions & 0 deletions lib/Models/PaymentUpdate.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Models;

use Signifyd\Core\SignifydModel;
Expand Down
5 changes: 5 additions & 0 deletions lib/Models/Product.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Models;

use Signifyd\Core\SignifydModel;
Expand Down
5 changes: 5 additions & 0 deletions lib/Models/Purchase.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Models;

use Signifyd\Core\SignifydModel;
Expand Down
5 changes: 5 additions & 0 deletions lib/Models/Recipient.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Models;

use Signifyd\Core\SignifydModel;
Expand Down
5 changes: 5 additions & 0 deletions lib/Models/Seller.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Models;

use Signifyd\Core\SignifydModel;
Expand Down
5 changes: 5 additions & 0 deletions lib/Models/Shipment.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Models;

use Signifyd\Core\SignifydModel;
Expand Down
5 changes: 5 additions & 0 deletions lib/Models/UserAccount.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php

/**
* Copyright © 2015 SIGNIFYD Inc. All rights reserved.
* See LICENSE.txt for license details.
*/
namespace Signifyd\Models;

use Signifyd\Core\SignifydModel;
Expand Down

0 comments on commit ab8de20

Please sign in to comment.