Skip to content

Commit ad995c8

Browse files
committed
restore original mentions
1 parent 4799737 commit ad995c8

File tree

5 files changed

+54
-7
lines changed

5 files changed

+54
-7
lines changed

FtpClient.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
<?php
2+
/*
3+
* This file is part of the `nicolab/php-ftp-client` package.
4+
*
5+
* (c) Nicolas Tallefourtane <dev@nicolab.net>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*
10+
* @copyright Nicolas Tallefourtane https://nicolab.net
11+
*/
212

313
namespace yii2mod\ftp;
414

@@ -663,7 +673,7 @@ public function rawlist($directory = '.', $recursive = false, $includeHidden = f
663673
// $list can be false, convert to empty array
664674
$list = [];
665675
}
666-
676+
667677
$items = [];
668678
if (false == $recursive) {
669679
foreach ($list as $path => $item) {

FtpException.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
<?php
2+
/*
3+
* This file is part of the `nicolab/php-ftp-client` package.
4+
*
5+
* (c) Nicolas Tallefourtane <dev@nicolab.net>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*
10+
* @copyright Nicolas Tallefourtane https://nicolab.net
11+
*/
212

313
namespace yii2mod\ftp;
414

FtpWrapper.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
<?php
2+
/*
3+
* This file is part of the `nicolab/php-ftp-client` package.
4+
*
5+
* (c) Nicolas Tallefourtane <dev@nicolab.net>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*
10+
* @copyright Nicolas Tallefourtane https://nicolab.net
11+
*/
212

313
namespace yii2mod\ftp;
414

LICENSE.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1-
Copyright (c) 2015 yii2mod
1+
The MIT License (MIT)
22

3-
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:
3+
Copyright (c) 2014 Nicolas Tallefourtane dev@nicolab.net
44

5-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
612

7-
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.
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@
88

99
[![Latest Stable Version](https://poser.pugx.org/yii2mod/yii2-ftp/v/stable)](https://packagist.org/packages/yii2mod/yii2-ftp) [![Total Downloads](https://poser.pugx.org/yii2mod/yii2-ftp/downloads)](https://packagist.org/packages/yii2mod/yii2-ftp) [![License](https://poser.pugx.org/yii2mod/yii2-ftp/license)](https://packagist.org/packages/yii2mod/yii2-ftp)
1010

11+
> yii2-ftp is a fork of [Nicolab/php-ftp-client](https://github.com/Nicolab/php-ftp-client) v1.2.0
12+
1113
Installation
1214
------------
1315

14-
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
16+
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
1517

1618
Either run
1719

@@ -200,4 +202,4 @@ Result :
200202
5 => string '214 Pure-FTPd - http://pureftpd.org/' (length=36)
201203

202204

203-
_Note : The result depend of FTP server._
205+
_Note : The result depend of FTP server._

0 commit comments

Comments
 (0)