PDF rausgenommen
This commit is contained in:
19
msd2/myoos/vendor/symfony/polyfill-intl-icu/LICENSE
vendored
Normal file
19
msd2/myoos/vendor/symfony/polyfill-intl-icu/LICENSE
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
Copyright (c) 2015-2019 Fabien Potencier
|
||||
|
||||
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.
|
23
msd2/myoos/vendor/symfony/polyfill-intl-icu/README.md
vendored
Normal file
23
msd2/myoos/vendor/symfony/polyfill-intl-icu/README.md
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
Symfony Polyfill / Intl: ICU
|
||||
============================
|
||||
|
||||
This component provides a collection of functions/classes using the
|
||||
[`symfony/intl`](https://github.com/symfony/intl) package when the
|
||||
[Intl](http://php.net/intl) extension is not installed, including:
|
||||
|
||||
- [`intl_is_failure()`](http://php.net/manual/en/function.intl-is-failure.php)
|
||||
- [`intl_get_error_code()`](http://php.net/manual/en/function.intl-get-error-code.php)
|
||||
- [`intl_get_error_message()`](http://php.net/manual/en/function.intl-get-error-message.php)
|
||||
- [`intl_error_name()`](http://php.net/manual/en/function.intl-error-name.php)
|
||||
- [`Collator`](http://php.net/Collator)
|
||||
- [`NumberFormatter`](http://php.net/NumberFormatter)
|
||||
- [`Locale`](http://php.net/Locale)
|
||||
- [`IntlDateFormatter`](http://php.net/IntlDateFormatter)
|
||||
|
||||
More information can be found in the
|
||||
[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).
|
||||
|
||||
License
|
||||
=======
|
||||
|
||||
This library is released under the [MIT license](LICENSE).
|
19
msd2/myoos/vendor/symfony/polyfill-intl-icu/bootstrap.php
vendored
Normal file
19
msd2/myoos/vendor/symfony/polyfill-intl-icu/bootstrap.php
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
use Symfony\Component\Intl\Globals\IntlGlobals;
|
||||
|
||||
if (!function_exists('intl_is_failure')) {
|
||||
function intl_is_failure($errorCode) { return IntlGlobals::isFailure($errorCode); }
|
||||
function intl_get_error_code() { return IntlGlobals::getErrorCode(); }
|
||||
function intl_get_error_message() { return IntlGlobals::getErrorMessage(); }
|
||||
function intl_error_name($errorCode) { return IntlGlobals::getErrorName($errorCode); }
|
||||
}
|
34
msd2/myoos/vendor/symfony/polyfill-intl-icu/composer.json
vendored
Normal file
34
msd2/myoos/vendor/symfony/polyfill-intl-icu/composer.json
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "symfony/polyfill-intl-icu",
|
||||
"type": "library",
|
||||
"description": "Symfony polyfill for intl's ICU-related data and classes",
|
||||
"keywords": ["polyfill", "shim", "compatibility", "portable", "intl", "icu"],
|
||||
"homepage": "https://symfony.com",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.3.3",
|
||||
"symfony/intl": "~2.3|~3.0|~4.0"
|
||||
},
|
||||
"autoload": {
|
||||
"files": [ "bootstrap.php" ]
|
||||
},
|
||||
"suggest": {
|
||||
"ext-intl": "For best performance"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.9-dev"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user