Skip to content

Commit 0fa71de

Browse files
committed
chore: move to @code-lts namespace and update LICENCE
1 parent bedd55e commit 0fa71de

File tree

3 files changed

+22
-21
lines changed

3 files changed

+22
-21
lines changed

LICENCE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
BSD 2-Clause License
22

3-
Copyright (c) 2016, Samyoul
3+
Copyright (c) 2016-2018, Samyoul
4+
Copyright (c) 2020, William Desportes
45
All rights reserved.
56

67
Redistribution and use in source and binary forms, with or without

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# U2F-php-server
22

3-
[![Latest Stable Version](https://img.shields.io/packagist/v/samyoul/u2f-php-server.svg?style=flat-square)](https://packagist.org/packages/samyoul/u2f-php-server)
4-
[![GitHub license](https://img.shields.io/github/license/Samyoul/U2F-php-server?style=flat-square)](LICENCE)
3+
[![Latest Stable Version](https://img.shields.io/packagist/v/code-lts/u2f-php-server.svg?style=flat-square)](https://packagist.org/packages/code-lts/u2f-php-server)
4+
[![GitHub license](https://img.shields.io/github/license/code-lts/U2F-php-server?style=flat-square)](LICENCE)
55

66
Server-side handling of FIDO U2F registration and authentication for PHP.
77

@@ -12,19 +12,19 @@ FIDO's U2F enables you to add a simple unobtrusive method of 2nd factor authenti
1212

1313
**Base Library**
1414

15-
https://github.com/Samyoul/U2F-php-server
15+
https://github.com/code-lts/U2F-php-server
1616

1717
**Fido Test Suite (UTD)**
1818

19-
https://github.com/Samyoul/U2F-php-UTD
19+
https://github.com/code-lts/U2F-php-UTD
2020

2121
**Frameworks**
2222

23-
*Laravel* https://github.com/Samyoul/U2F-Laravel-server
23+
*Laravel* https://github.com/code-lts/U2F-Laravel-server
2424

25-
*Yii* https://github.com/Samyoul/U2F-Yii-server
25+
*Yii* https://github.com/code-lts/U2F-Yii-server
2626

27-
*CodeIgniter* https://github.com/Samyoul/U2F-CodeIgniter-server
27+
*CodeIgniter* https://github.com/code-lts/U2F-CodeIgniter-server
2828

2929

3030
## Contents
@@ -52,7 +52,7 @@ https://github.com/Samyoul/U2F-php-UTD
5252

5353
## Installation
5454

55-
`composer require samyoul/u2f-php-server`
55+
`composer require code-lts/u2f-php-server`
5656

5757
## Requirements
5858

@@ -131,12 +131,12 @@ TODO the descriptions
131131

132132
## Example Code
133133

134-
For a full working code example for this repository please see [the dedicated example repository](https://github.com/Samyoul/U2F-php-server-examples)
134+
For a full working code example for this repository please see [the dedicated example repository](https://github.com/code-lts/U2F-php-server-examples)
135135

136136
You can also install it with the following:
137137

138138
```sh
139-
$ git clone https://github.com/Samyoul/U2F-php-server-examples.git
139+
$ git clone https://github.com/code-lts/U2F-php-server-examples.git
140140
$ cd u2f-php-server-examples
141141
$ composer install
142142
```
@@ -434,12 +434,12 @@ echo View::make('template/location/u2f-authentication-result.html', [
434434

435435
---
436436

437-
Again, if you want to just download some example code to play with just install the full working code examples written for this repository please see [the dedicated example repository](https://github.com/Samyoul/U2F-php-server-examples)
437+
Again, if you want to just download some example code to play with just install the full working code examples written for this repository please see [the dedicated example repository](https://github.com/code-lts/U2F-php-server-examples)
438438

439439
You can also install it with the following:
440440

441441
```sh
442-
$ git clone https://github.com/Samyoul/U2F-php-server-examples.git
442+
$ git clone https://github.com/code-lts/U2F-php-server-examples.git
443443
$ cd u2f-php-server-examples
444444
$ composer install
445445
```
@@ -448,7 +448,7 @@ $ composer install
448448

449449
### Laravel Framework
450450

451-
See the dedicated repository : https://github.com/Samyoul/U2F-Laravel-server
451+
See the dedicated repository : https://github.com/code-lts/U2F-Laravel-server
452452

453453
Installation:
454454

@@ -458,7 +458,7 @@ composer require u2f-laravel-server
458458

459459
### Yii Framework
460460

461-
See the dedicated repository : https://github.com/Samyoul/U2F-Yii-server
461+
See the dedicated repository : https://github.com/code-lts/U2F-Yii-server
462462

463463
Installation:
464464

@@ -468,7 +468,7 @@ composer require u2f-yii-server
468468

469469
### CodeIgniter Framework
470470

471-
See the dedicated repository : https://github.com/Samyoul/U2F-CodeIgniter-server
471+
See the dedicated repository : https://github.com/code-lts/U2F-CodeIgniter-server
472472

473473
Installation:
474474

@@ -482,7 +482,7 @@ composer require u2f-codeigniter-server
482482

483483
## Licence
484484

485-
The repository is licensed under a BSD license. [Read details here](https://github.com/Samyoul/U2F-php-server/blob/master/LICENCE)
485+
The repository is licensed under a BSD license. [Read details here](https://github.com/code-lts/U2F-php-server/blob/master/LICENCE)
486486

487487
## Credits
488488

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "samyoul/u2f-php-server",
2+
"name": "code-lts/u2f-php-server",
33
"description": "Server side handling class for FIDO U2F registration and authentication",
44
"license":"BSD-2-Clause",
5-
"homepage": "https://github.com/Samyoul/U2F-php-server#readme",
5+
"homepage": "https://github.com/code-lts/U2F-php-server#readme",
66
"authors": [
77
{
88
"name": "Samuel Hawksby-Robinson",
99
"email": "[email protected]"
1010
}
1111
],
1212
"support": {
13-
"issues": "https://github.com/Samyoul/U2F-php-server/issues",
14-
"source": "https://github.com/Samyoul/U2F-php-server"
13+
"issues": "https://github.com/code-lts/U2F-php-server/issues",
14+
"source": "https://github.com/code-lts/U2F-php-server"
1515
},
1616
"scripts": {
1717
"phpunit": "./vendor/bin/phpunit"

0 commit comments

Comments
 (0)