-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac330ed
commit 00ac8c4
Showing
409 changed files
with
61,647 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
// autoload.php @generated by Composer | ||
|
||
require_once __DIR__ . '/composer/autoload_real.php'; | ||
|
||
return ComposerAutoloaderInit86e02c580f8e6930f39d749d3a111004::getLoader(); |
2 changes: 2 additions & 0 deletions
2
modules/addons/NFEioServiceInvoices/lib/vendor/clue/stream-filter/.github/FUNDING.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: clue | ||
custom: https://clue.engineering/support |
75 changes: 75 additions & 0 deletions
75
modules/addons/NFEioServiceInvoices/lib/vendor/clue/stream-filter/CHANGELOG.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Changelog | ||
|
||
## 1.5.0 (2020-10-02) | ||
|
||
* Feature: Improve performance by using global imports. | ||
(#38 by @clue) | ||
|
||
* Improve API documentation and add support / sponsorship info. | ||
(#30 by @clue and #35 by @SimonFrings) | ||
|
||
* Improve test suite and add `.gitattributes` to exclude dev files from exports. | ||
Prepare PHP 8 support, update to PHPUnit 9 and simplify test matrix. | ||
(#32 and #37 by @clue and #34 and #36 by @SimonFrings) | ||
|
||
## 1.4.1 (2019-04-09) | ||
|
||
* Fix: Check if the function is declared before declaring it. | ||
(#23 by @Niko9911) | ||
|
||
* Improve test suite to also test against PHP 7.2 and | ||
add test for base64 encoding and decoding filters. | ||
(#22 by @arubacao and #25 by @Nyholm and @clue) | ||
|
||
## 1.4.0 (2017-08-18) | ||
|
||
* Feature / Fix: The `fun()` function does not pass filter parameter `null` | ||
to underlying `stream_filter_append()` by default | ||
(#15 by @Nyholm) | ||
|
||
Certain filters (such as `convert.quoted-printable-encode`) do not accept | ||
a filter parameter at all. If no explicit filter parameter is given, we no | ||
longer pass a default `null` value. | ||
|
||
```php | ||
$encode = Filter\fun('convert.quoted-printable-encode'); | ||
assert('t=C3=A4st' === $encode('täst')); | ||
``` | ||
|
||
* Add examples and improve documentation | ||
(#13 and #20 by @clue and #18 by @Nyholm) | ||
|
||
* Improve test suite by adding PHPUnit to require-dev, | ||
fix HHVM build for now again and ignore future HHVM build errors, | ||
lock Travis distro so new future defaults will not break the build | ||
and test on PHP 7.1 | ||
(#12, #14 and #19 by @clue and #16 by @Nyholm) | ||
|
||
## 1.3.0 (2015-11-08) | ||
|
||
* Feature: Support accessing built-in filters as callbacks | ||
(#5 by @clue) | ||
|
||
```php | ||
$fun = Filter\fun('zlib.deflate'); | ||
|
||
$ret = $fun('hello') . $fun('world') . $fun(); | ||
assert('helloworld' === gzinflate($ret)); | ||
``` | ||
|
||
## 1.2.0 (2015-10-23) | ||
|
||
* Feature: Invoke close event when closing filter (flush buffer) | ||
(#9 by @clue) | ||
|
||
## 1.1.0 (2015-10-22) | ||
|
||
* Feature: Abort filter operation when catching an Exception | ||
(#10 by @clue) | ||
|
||
* Feature: Additional safeguards to prevent filter state corruption | ||
(#7 by @clue) | ||
|
||
## 1.0.0 (2015-10-18) | ||
|
||
* First tagged release |
21 changes: 21 additions & 0 deletions
21
modules/addons/NFEioServiceInvoices/lib/vendor/clue/stream-filter/LICENSE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015 Christian Lück | ||
|
||
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: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
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. |
Oops, something went wrong.