File tree 11 files changed +150
-26
lines changed
11 files changed +150
-26
lines changed Original file line number Diff line number Diff line change 1
1
# [ PHP] Ultra Small Proxy 2
2
- PHP: ** 7.2.5+** , current release: ** 2.1** build 2022-04-23
2
+ PHP: ** 7.2.5+** , current release: ** 2.1.1 ** build 2022-04-25
3
3
4
4
** Ultra Small Proxy is a light-weight proxy written in PHP.**
5
5
@@ -170,7 +170,9 @@ Other methods:
170
170
171
171
### Changelog
172
172
173
- - ` 2.1 ` -- package was added to packagist (2022-04-23)
173
+ - ` 2.1.0 ` -- package was added to packagist (2022-04-23)
174
+
175
+ - ` 2.1.1 ` -- updated PHPDoc (2022-04-25)
174
176
175
177
### Ultra Small Proxy is free to use but if you liked then you can donate project via BTC:
176
178
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /**
4
+ * This file is part of szczyglis/php-ultra-small-proxy.
5
+ *
6
+ * (c) Marcin Szczyglinski <szczyglis@protonmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
3
12
require __DIR__ . '/vendor/autoload.php ' ;
4
13
14
+ /**
15
+ * @package szczyglis/php-ultra-small-proxy
16
+ * @author Marcin Szczyglinski <szczyglis@protonmail.com>
17
+ * @copyright 2022 Marcin Szczyglinski
18
+ * @license http://www.opensource.org/licenses/MIT The MIT License
19
+ * @link https://github.com/szczyglis-dev/php-ultra-small-proxy
20
+ */
21
+
5
22
use Szczyglis \UltraSmallProxy \UltraSmallProxy ;
6
23
use Szczyglis \UltraSmallProxy \Config ;
7
24
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /**
4
+ * This file is part of szczyglis/php-ultra-small-proxy.
5
+ *
6
+ * (c) Marcin Szczyglinski <szczyglis@protonmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
3
12
session_start ();
4
13
14
+ /**
15
+ * @package szczyglis/php-ultra-small-proxy
16
+ * @author Marcin Szczyglinski <szczyglis@protonmail.com>
17
+ * @copyright 2022 Marcin Szczyglinski
18
+ * @license http://www.opensource.org/licenses/MIT The MIT License
19
+ * @link https://github.com/szczyglis-dev/php-ultra-small-proxy
20
+ */
21
+
5
22
echo '<h1>ULTRA SMALL PROXY - LOOPBACK TEST</h1><hr> ' ;
6
23
echo '<h1>URLS REWRITE TEST</h1> ' ;
7
24
echo '<h5>(check the page source here)</h5> ' ;
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /**
4
+ * This file is part of szczyglis/php-ultra-small-proxy.
5
+ *
6
+ * (c) Marcin Szczyglinski <szczyglis@protonmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
3
12
namespace Szczyglis \UltraSmallProxy ;
4
13
5
14
/**
6
- * @package UltraSmallProxy
15
+ * Cache
16
+ *
17
+ * @package szczyglis/php-ultra-small-proxy
7
18
* @author Marcin Szczyglinski <szczyglis@protonmail.com>
19
+ * @copyright 2022 Marcin Szczyglinski
20
+ * @license http://www.opensource.org/licenses/MIT The MIT License
8
21
* @link https://github.com/szczyglis-dev/php-ultra-small-proxy
9
- * @license MIT
10
- * @version 2.1 | 2022.04.23
11
22
*/
12
23
13
24
class Cache
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /**
4
+ * This file is part of szczyglis/php-ultra-small-proxy.
5
+ *
6
+ * (c) Marcin Szczyglinski <szczyglis@protonmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
3
12
namespace Szczyglis \UltraSmallProxy ;
4
13
5
14
/**
6
- * @package UltraSmallProxy
15
+ * Config
16
+ *
17
+ * @package szczyglis/php-ultra-small-proxy
7
18
* @author Marcin Szczyglinski <szczyglis@protonmail.com>
19
+ * @copyright 2022 Marcin Szczyglinski
20
+ * @license http://www.opensource.org/licenses/MIT The MIT License
8
21
* @link https://github.com/szczyglis-dev/php-ultra-small-proxy
9
- * @license MIT
10
- * @version 2.1 | 2022.04.23
11
22
*/
12
23
13
24
class Config
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /**
4
+ * This file is part of szczyglis/php-ultra-small-proxy.
5
+ *
6
+ * (c) Marcin Szczyglinski <szczyglis@protonmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
3
12
namespace Szczyglis \UltraSmallProxy ;
4
13
5
14
/**
6
- * @package UltraSmallProxy
15
+ * Cookie
16
+ *
17
+ * @package szczyglis/php-ultra-small-proxy
7
18
* @author Marcin Szczyglinski <szczyglis@protonmail.com>
19
+ * @copyright 2022 Marcin Szczyglinski
20
+ * @license http://www.opensource.org/licenses/MIT The MIT License
8
21
* @link https://github.com/szczyglis-dev/php-ultra-small-proxy
9
- * @license MIT
10
- * @version 2.1 | 2022.04.23
11
22
*/
12
23
13
24
class Cookie
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /**
4
+ * This file is part of szczyglis/php-ultra-small-proxy.
5
+ *
6
+ * (c) Marcin Szczyglinski <szczyglis@protonmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
3
12
namespace Szczyglis \UltraSmallProxy ;
4
13
5
14
/**
6
- * @package UltraSmallProxy
15
+ * Debug
16
+ *
17
+ * @package szczyglis/php-ultra-small-proxy
7
18
* @author Marcin Szczyglinski <szczyglis@protonmail.com>
19
+ * @copyright 2022 Marcin Szczyglinski
20
+ * @license http://www.opensource.org/licenses/MIT The MIT License
8
21
* @link https://github.com/szczyglis-dev/php-ultra-small-proxy
9
- * @license MIT
10
- * @version 2.1 | 2022.04.23
11
22
*/
12
23
13
24
class Debug
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /**
4
+ * This file is part of szczyglis/php-ultra-small-proxy.
5
+ *
6
+ * (c) Marcin Szczyglinski <szczyglis@protonmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
3
12
namespace Szczyglis \UltraSmallProxy ;
4
13
5
14
/**
6
- * @package UltraSmallProxy
15
+ * Http
16
+ *
17
+ * @package szczyglis/php-ultra-small-proxy
7
18
* @author Marcin Szczyglinski <szczyglis@protonmail.com>
19
+ * @copyright 2022 Marcin Szczyglinski
20
+ * @license http://www.opensource.org/licenses/MIT The MIT License
8
21
* @link https://github.com/szczyglis-dev/php-ultra-small-proxy
9
- * @license MIT
10
- * @version 2.1 | 2022.04.23
11
22
*/
12
23
13
24
class Http
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /**
4
+ * This file is part of szczyglis/php-ultra-small-proxy.
5
+ *
6
+ * (c) Marcin Szczyglinski <szczyglis@protonmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
3
12
namespace Szczyglis \UltraSmallProxy ;
4
13
5
14
/**
6
- * @package UltraSmallProxy
15
+ * Parser
16
+ *
17
+ * @package szczyglis/php-ultra-small-proxy
7
18
* @author Marcin Szczyglinski <szczyglis@protonmail.com>
19
+ * @copyright 2022 Marcin Szczyglinski
20
+ * @license http://www.opensource.org/licenses/MIT The MIT License
8
21
* @link https://github.com/szczyglis-dev/php-ultra-small-proxy
9
- * @license MIT
10
- * @version 2.1 | 2022.04.23
11
22
*/
12
23
13
24
class Parser
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /**
4
+ * This file is part of szczyglis/php-ultra-small-proxy.
5
+ *
6
+ * (c) Marcin Szczyglinski <szczyglis@protonmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
3
12
namespace Szczyglis \UltraSmallProxy ;
4
13
5
14
/**
6
- * @package UltraSmallProxy
15
+ * Toolbar
16
+ *
17
+ * @package szczyglis/php-ultra-small-proxy
7
18
* @author Marcin Szczyglinski <szczyglis@protonmail.com>
19
+ * @copyright 2022 Marcin Szczyglinski
20
+ * @license http://www.opensource.org/licenses/MIT The MIT License
8
21
* @link https://github.com/szczyglis-dev/php-ultra-small-proxy
9
- * @license MIT
10
- * @version 2.1 | 2022.04.23
11
22
*/
12
23
13
24
class Toolbar
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /**
4
+ * This file is part of szczyglis/php-ultra-small-proxy.
5
+ *
6
+ * (c) Marcin Szczyglinski <szczyglis@protonmail.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
3
12
namespace Szczyglis \UltraSmallProxy ;
4
13
5
14
/**
6
- * @package UltraSmallProxy
15
+ * UltraSmallProxy
16
+ *
17
+ * @package szczyglis/php-ultra-small-proxy
7
18
* @author Marcin Szczyglinski <szczyglis@protonmail.com>
19
+ * @copyright 2022 Marcin Szczyglinski
20
+ * @license http://www.opensource.org/licenses/MIT The MIT License
8
21
* @link https://github.com/szczyglis-dev/php-ultra-small-proxy
9
- * @license MIT
10
- * @version 2.1 | 2022.04.23
11
22
*/
12
23
class UltraSmallProxy
13
24
{
You can’t perform that action at this time.
0 commit comments