Skip to content

Commit f338e1e

Browse files
committed
Remove references to onelogin support.
1 parent ac376fe commit f338e1e

17 files changed

Lines changed: 66 additions & 91 deletions

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
Copyright (c) 2010-2016 OneLogin, Inc.
1+
Copyright (c) 2010-2022 OneLogin, Inc.
2+
Copyright (c) 2023 IAM Digital Services, SL.
23

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

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ Installation
8282

8383
#### Option 1. clone the repository from github ####
8484

85-
git clone git@github.com:onelogin/php-saml.git
85+
git clone git@github.com:SAML-Toolkits/php-saml.git
8686

8787
Then pull the 3.X.X branch/tag
8888

8989
#### Option 2. Download from github ####
9090

9191
The toolkit is hosted on github. You can download it from:
9292

93-
* https://github.com/onelogin/php-saml/releases
93+
* https://github.com/SAML-Toolkits/php-saml/releases
9494

9595
Search for 3.X.X releases
9696

@@ -171,7 +171,7 @@ In order to avoid them, the SP can keep a list of SAML Messages or Assertion IDs
171171
to be stored the amount of time of the SAML Message life time, so
172172
we don't need to store all processed message/assertion Ids, but the most recent ones.
173173

174-
The OneLogin_Saml2_Auth class contains the [getLastRequestID](https://github.com/onelogin/php-saml/blob/b8214b74dd72960fa6aa88ab454667c64cea935c/src/Saml2/Auth.php#L657), [getLastMessageId](https://github.com/onelogin/php-saml/blob/b8214b74dd72960fa6aa88ab454667c64cea935c/src/Saml2/Auth.php#L762) and [getLastAssertionId](https://github.com/onelogin/php-saml/blob/b8214b74dd72960fa6aa88ab454667c64cea935c/src/Saml2/Auth.php#L770) methods to retrieve the IDs
174+
The OneLogin\Saml2\Auth class contains the [getLastRequestID](https://github.com/SAML-Toolkits/php-saml/blob/b8214b74dd72960fa6aa88ab454667c64cea935c/src/Saml2/Auth.php#L657), [getLastMessageId](https://github.com/SAML-Toolkits/php-saml/blob/b8214b74dd72960fa6aa88ab454667c64cea935c/src/Saml2/Auth.php#L762) and [getLastAssertionId](https://github.com/SAML-Toolkits/php-saml/blob/b8214b74dd72960fa6aa88ab454667c64cea935c/src/Saml2/Auth.php#L770) methods to retrieve the IDs
175175

176176
Checking that the ID of the current Message/Assertion does not exists in the list of the ones already processed will prevent reply
177177
attacks.
@@ -182,7 +182,7 @@ Getting started
182182

183183
### Knowing the toolkit ###
184184

185-
The new OneLogin SAML Toolkit contains different folders (`certs`, `endpoints`,
185+
The new SAML Toolkit contains different folders (`certs`, `endpoints`,
186186
`lib`, `demo`, etc.) and some files.
187187

188188
Let's start describing the folders:
@@ -308,7 +308,7 @@ $settings = array(
308308
// URL Location where the <Response> from the IdP will be returned
309309
'url' => '',
310310
// SAML protocol binding to be used when returning the <Response>
311-
// message. OneLogin Toolkit supports this endpoint for the
311+
// message. SAML Toolkit supports this endpoint for the
312312
// HTTP-POST binding only.
313313
'binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST',
314314
),
@@ -334,7 +334,7 @@ $settings = array(
334334
// URL Location where the <Response> from the IdP will be returned
335335
'url' => '',
336336
// SAML protocol binding to be used when returning the <Response>
337-
// message. OneLogin Toolkit supports the HTTP-Redirect binding
337+
// message. SAML Toolkit supports the HTTP-Redirect binding
338338
// only for this endpoint.
339339
'binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect',
340340
),
@@ -639,7 +639,7 @@ After that line we will be able to use the classes (and their methods) of the
639639
toolkit (because the external and the Saml2 libraries files are loaded).
640640

641641
That toolkit depends on [xmlseclibs](https://github.com/robrichards/xmlseclibs) 3.X.X branch,
642-
you will need to get its code and place on your project and reuse the _toolkit_loader.php
642+
you will need to get its code and place on your project and reuse the _toolkit_loader.php
643643
file to include xmlseclibs as well.
644644

645645

@@ -1228,7 +1228,7 @@ Lets describe now the classes and methods of the SAML2 library.
12281228

12291229
##### OneLogin\Saml2\Auth - Auth.php #####
12301230

1231-
Main class of OneLogin PHP Toolkit
1231+
Main class of SAML PHP Toolkit
12321232

12331233
* `Auth` - Initializes the SP SAML instance
12341234
* `login` - Initiates the SSO process.
@@ -1325,7 +1325,7 @@ SAML 2 Logout Response class
13251325

13261326
##### OneLogin\Saml2\Settings - `Settings.php` #####
13271327

1328-
Configuration of the OneLogin PHP Toolkit
1328+
Configuration of the SAML PHP Toolkit
13291329

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

14381438
### SP setup ###
14391439

1440-
The Onelogin's PHP Toolkit allows you to provide the settings info in two ways:
1440+
The SAML PHP Toolkit allows you to provide the settings info in two ways:
14411441

14421442
* Use a `settings.php` file that we should locate at the base folder of the
14431443
toolkit.
@@ -1512,7 +1512,7 @@ must be done.
15121512

15131513
### SP setup ###
15141514

1515-
The Onelogin's PHP Toolkit allows you to provide the settings info in two ways:
1515+
The SAML PHP Toolkit allows you to provide the settings info in two ways:
15161516

15171517
* Use a `settings.php` file that we should locate at the base folder of the
15181518
toolkit.
@@ -1580,4 +1580,3 @@ demo1, only changes the targets.
15801580
to the IdP (to the SLS endpoint of the IdP).The IdP receives the Logout
15811581
Response, process it and close the session at of the IdP. Notice that the
15821582
SLO Workflow starts and ends at the IdP.
1583-

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "onelogin/php-saml",
3-
"description": "OneLogin PHP SAML Toolkit",
3+
"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": ">=7.3",

phpdoc.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<phpdoc>
3-
<title>OneLogin's SAML PHP Toolkit</title>
3+
<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>

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</report>
1313
</coverage>
1414
<testsuites>
15-
<testsuite name="OneLogin PHP-SAML Test Suite">
15+
<testsuite name="PHP-SAML Test Suite">
1616
<directory>./tests/src</directory>
1717
</testsuite>
1818
</testsuites>

src/Saml2/Auth.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* (c) OneLogin Inc
6-
*
75
* For the full copyright and license information, please view the LICENSE
86
* file that was distributed with this source code.
97
*
108
* @package OneLogin
11-
* @author OneLogin Inc <saml-info@onelogin.com>
12-
* @license MIT https://github.com/onelogin/php-saml/blob/master/LICENSE
13-
* @link https://github.com/onelogin/php-saml
9+
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
10+
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
11+
* @link https://github.com/SAML-Toolkits/php-saml
1412
*/
1513

1614
namespace OneLogin\Saml2;
@@ -20,7 +18,7 @@
2018
use Exception;
2119

2220
/**
23-
* Main class of OneLogin's PHP Toolkit
21+
* Main class of SAML PHP Toolkit
2422
*/
2523
class Auth
2624
{

src/Saml2/AuthnRequest.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* (c) OneLogin Inc
6-
*
75
* For the full copyright and license information, please view the LICENSE
86
* file that was distributed with this source code.
97
*
108
* @package OneLogin
11-
* @author OneLogin Inc <saml-info@onelogin.com>
12-
* @license MIT https://github.com/onelogin/php-saml/blob/master/LICENSE
13-
* @link https://github.com/onelogin/php-saml
9+
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
10+
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
11+
* @link https://github.com/SAML-Toolkits/php-saml
1412
*/
1513

1614
namespace OneLogin\Saml2;

src/Saml2/Constants.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,19 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* (c) OneLogin Inc
6-
*
75
* For the full copyright and license information, please view the LICENSE
86
* file that was distributed with this source code.
97
*
108
* @package OneLogin
11-
* @author OneLogin Inc <saml-info@onelogin.com>
12-
* @license MIT https://github.com/onelogin/php-saml/blob/master/LICENSE
13-
* @link https://github.com/onelogin/php-saml
9+
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
10+
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
11+
* @link https://github.com/SAML-Toolkits/php-saml
1412
*/
1513

1614
namespace OneLogin\Saml2;
1715

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

src/Saml2/Error.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,21 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* (c) OneLogin Inc
6-
*
75
* For the full copyright and license information, please view the LICENSE
86
* file that was distributed with this source code.
97
*
108
* @package OneLogin
11-
* @author OneLogin Inc <saml-info@onelogin.com>
12-
* @license MIT https://github.com/onelogin/php-saml/blob/master/LICENSE
13-
* @link https://github.com/onelogin/php-saml
9+
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
10+
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
11+
* @link https://github.com/SAML-Toolkits/php-saml
1412
*/
1513

1614
namespace OneLogin\Saml2;
1715

1816
use Exception;
1917

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

src/Saml2/IdPMetadataParser.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
/**
33
* This file is part of php-saml.
44
*
5-
* (c) OneLogin Inc
6-
*
75
* For the full copyright and license information, please view the LICENSE
86
* file that was distributed with this source code.
97
*
108
* @package OneLogin
11-
* @author OneLogin Inc <saml-info@onelogin.com>
12-
* @license MIT https://github.com/onelogin/php-saml/blob/master/LICENSE
13-
* @link https://github.com/onelogin/php-saml
9+
* @author Sixto Martin <sixto.martin.garcia@gmail.com>
10+
* @license MIT https://github.com/SAML-Toolkits/php-saml/blob/master/LICENSE
11+
* @link https://github.com/SAML-Toolkits/php-saml
1412
*/
1513

1614
namespace OneLogin\Saml2;
@@ -19,7 +17,7 @@
1917
use Exception;
2018

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

0 commit comments

Comments
 (0)