Skip to content

Commit a18e4cf

Browse files
committed
Remove references to onelogin support.
1 parent 761a6e8 commit a18e4cf

16 files changed

+37
-54
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright (c) 2010-2022 OneLogin, Inc.
2-
Copyright (c) 2022-2023 IAM DIgital Services, SL.
2+
Copyright (c) 2023 IAM Digital Services, SL.
33

44
Permission is hereby granted, free of charge, to any person
55
obtaining a copy of this software and associated documentation

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@ Lets describe now the classes and methods of the SAML2 library.
12321232

12331233
##### OneLogin\Saml2\Auth - Auth.php #####
12341234

1235-
Main class of PHP Toolkit
1235+
Main class of SAML PHP Toolkit
12361236

12371237
* `Auth` - Initializes the SP SAML instance
12381238
* `login` - Initiates the SSO process.
@@ -1329,7 +1329,7 @@ SAML 2 Logout Response class
13291329

13301330
##### OneLogin\Saml2\Settings - `Settings.php` #####
13311331

1332-
Configuration of the PHP Toolkit
1332+
Configuration of the SAML PHP Toolkit
13331333

13341334
* `Settings` - Initializes the settings: Sets the paths of
13351335
the different folders and Loads settings info from settings file or
@@ -1442,7 +1442,7 @@ Demos require that SP and IdP are well configured before test it.
14421442

14431443
### SP setup ###
14441444

1445-
The PHP Toolkit allows you to provide the settings info in two ways:
1445+
The SAML PHP Toolkit allows you to provide the settings info in two ways:
14461446

14471447
* Use a `settings.php` file that we should locate at the base folder of the
14481448
toolkit.
@@ -1517,7 +1517,7 @@ must be done.
15171517

15181518
### SP setup ###
15191519

1520-
The PHP Toolkit allows you to provide the settings info in two ways:
1520+
The SAML PHP Toolkit allows you to provide the settings info in two ways:
15211521

15221522
* Use a `settings.php` file that we should locate at the base folder of the
15231523
toolkit.

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
"name": "onelogin/php-saml",
33
"description": "PHP SAML Toolkit",
44
"license": "MIT",
5-
"homepage": "https://developers.onelogin.com/saml/php",
6-
"keywords": ["saml", "saml2", "onelogin"],
5+
"homepage": "https://github.com/SAML-Toolkits/php-saml",
6+
"keywords": ["saml", "saml2", "sso", "federation", "identity"],
77
"autoload": {
88
"psr-4": {
99
"OneLogin\\": "src/"
1010
}
1111
},
1212
"support": {
13-
"email": "sixto.garcia@onelogin.com",
14-
"issues": "https://github.com/onelogin/php-saml/issues",
15-
"source": "https://github.com/onelogin/php-saml/"
13+
"email": "sixto.martin.garcia@gmail.com",
14+
"issues": "https://github.com/onelogin/SAML-Toolkits/issues",
15+
"source": "https://github.com/onelogin/SAML-Toolkits/"
1616
},
1717
"require": {
1818
"php": ">=5.4",

phpdoc.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<phpdoc>
33
<title>SAML PHP Toolkit</title>
44
<parser>
5-
<default-package-name>OneLogin_SAML_Toolkit</default-package-name>
5+
<default-package-name>PHP_SAML_Toolkit</default-package-name>
66
<target>docs/Saml3</target>
77
</parser>
88
<extensions>

src/Saml2/Auth.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* Originally created by OneLogin Inc
6-
* Currently supported by IAM Digital Services S.L
7-
*
85
* For the full copyright and license information, please view the LICENSE
96
* file that was distributed with this source code.
107
*
8+
* @package OneLogin
119
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
1210
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
1311
* @link https://github.com/SAML-Toolkits/php-saml
@@ -20,7 +18,11 @@
2018
use Exception;
2119

2220
/**
21+
<<<<<<< HEAD
2322
* Main class of PHP Toolkit
23+
=======
24+
* Main class of SAML PHP Toolkit
25+
>>>>>>> f338e1e... Remove references to onelogin support.
2426
*/
2527
class Auth
2628
{

src/Saml2/AuthnRequest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* Originally created by OneLogin Inc
6-
* Currently supported by IAM Digital Services S.L
7-
*
85
* For the full copyright and license information, please view the LICENSE
96
* file that was distributed with this source code.
107
*
8+
* @package OneLogin
119
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
1210
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
1311
* @link https://github.com/SAML-Toolkits/php-saml

src/Saml2/Constants.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* Originally created by OneLogin Inc
6-
* Currently supported by IAM Digital Services S.L
7-
*
85
* For the full copyright and license information, please view the LICENSE
96
* file that was distributed with this source code.
107
*
8+
* @package OneLogin
119
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
1210
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
1311
* @link https://github.com/SAML-Toolkits/php-saml
@@ -16,7 +14,7 @@
1614
namespace OneLogin\Saml2;
1715

1816
/**
19-
* Constants of PHP Toolkit
17+
* Constants of SAML PHP Toolkit
2018
*
2119
* Defines all required constants
2220
*/

src/Saml2/Error.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* Originally created by OneLogin Inc
6-
* Currently supported by IAM Digital Services S.L
7-
*
85
* For the full copyright and license information, please view the LICENSE
96
* file that was distributed with this source code.
107
*
8+
* @package OneLogin
119
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
1210
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
1311
* @link https://github.com/SAML-Toolkits/php-saml
@@ -18,7 +16,7 @@
1816
use Exception;
1917

2018
/**
21-
* Error class of PHP Toolkit
19+
* Error class of SAML PHP Toolkit
2220
*
2321
* Defines the Error class
2422
*/

src/Saml2/IdPMetadataParser.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* Originally created by OneLogin Inc
6-
* Currently supported by IAM Digital Services S.L
7-
*
85
* For the full copyright and license information, please view the LICENSE
96
* file that was distributed with this source code.
107
*
8+
* @package OneLogin
119
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
1210
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
1311
* @link https://github.com/SAML-Toolkits/php-saml
@@ -19,7 +17,7 @@
1917
use Exception;
2018

2119
/**
22-
* IdP Metadata Parser of PHP Toolkit
20+
* IdP Metadata Parser of SAML PHP Toolkit
2321
*/
2422
class IdPMetadataParser
2523
{

src/Saml2/LogoutRequest.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,14 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* Originally created by OneLogin Inc
6-
* Currently supported by IAM Digital Services S.L
7-
*
85
* For the full copyright and license information, please view the LICENSE
96
* file that was distributed with this source code.
107
*
8+
* @package OneLogin
119
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
1210
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
1311
* @link https://github.com/SAML-Toolkits/php-saml
1412
*/
15-
1613
namespace OneLogin\Saml2;
1714

1815
use RobRichards\XMLSecLibs\XMLSecurityKey;

0 commit comments

Comments
 (0)