diff --git a/components/Blueprints/vendor-patched/symfony/process/.gitignore b/components/Blueprints/vendor-patched/symfony/process/.gitignore deleted file mode 100644 index c49a5d8df..000000000 --- a/components/Blueprints/vendor-patched/symfony/process/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -vendor/ -composer.lock -phpunit.xml diff --git a/components/DataLiberation/vendor-patched/psr/event-dispatcher/.editorconfig b/components/DataLiberation/vendor-patched/psr/event-dispatcher/.editorconfig deleted file mode 100644 index 164f092d6..000000000 --- a/components/DataLiberation/vendor-patched/psr/event-dispatcher/.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -; This file is for unifying the coding style for different editors and IDEs. -; More information at http://editorconfig.org - -root = true - -[*] -charset = utf-8 -indent_size = 4 -indent_style = space -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true - -[Makefile] -indent_style = tab diff --git a/components/DataLiberation/vendor-patched/psr/event-dispatcher/.gitignore b/components/DataLiberation/vendor-patched/psr/event-dispatcher/.gitignore deleted file mode 100644 index 3a9875b46..000000000 --- a/components/DataLiberation/vendor-patched/psr/event-dispatcher/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/vendor/ -composer.lock diff --git a/components/DataLiberation/vendor-patched/rowbot/idna/.gitattributes b/components/DataLiberation/vendor-patched/rowbot/idna/.gitattributes deleted file mode 100755 index dfe077042..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/idna/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto diff --git a/components/DataLiberation/vendor-patched/rowbot/idna/.github/workflows/tests.yml b/components/DataLiberation/vendor-patched/rowbot/idna/.github/workflows/tests.yml deleted file mode 100644 index b15958f8e..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/idna/.github/workflows/tests.yml +++ /dev/null @@ -1,272 +0,0 @@ -name: Tests - -on: - pull_request: - push: - paths-ignore: - - '**.md' - -jobs: - tests: - name: Tests without intl - runs-on: ${{ matrix.operating-system }} - - strategy: - fail-fast: false - matrix: - php-version: - - 7.1 - - 7.2 - - 7.3 - - 7.4 - - 8.0 - operating-system: [ubuntu-latest] - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - extensions: :intl - coverage: none - - - name: Get composer cache directory - id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" - - - name: Cache dependencies - uses: actions/cache@v2 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Cache test data - uses: actions/cache@v2 - env: - test-data-files: tests/data/unicode-idna-test-data - with: - path: ${{ env.test-data-files }} - key: unicode-test-data-${{ hashFiles(env.test-data-files) }} - restore-keys: unicode-test-data- - - - name: Install dependencies - run: composer install - - - name: Run PHPStan - run: vendor/bin/phpstan analyse - - - name: Run PHPCS - run: vendor/bin/phpcs - - - name: Tests - run: vendor/bin/phpunit - - tests-intl: - name: Tests with intl - runs-on: ${{ matrix.operating-system }} - - strategy: - fail-fast: false - matrix: - php-version: - - 7.1 - - 7.2 - - 7.3 - - 7.4 - - 8.0 - - 8.1 - operating-system: [ubuntu-latest] - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - extensions: intl - coverage: none - - - name: Get composer cache directory - id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" - - - name: Cache dependencies - uses: actions/cache@v2 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Cache test data - uses: actions/cache@v2 - env: - test-data-files: tests/data/unicode-idna-test-data - with: - path: ${{ env.test-data-files }} - key: unicode-test-data-${{ hashFiles(env.test-data-files) }} - restore-keys: unicode-test-data- - - - name: Install dependencies - run: composer install - - - name: Run PHPStan - run: vendor/bin/phpstan analyse - - - name: Run PHPCS - run: vendor/bin/phpcs - - - name: Tests - run: vendor/bin/phpunit - - tests-unstable: - name: Test Unstable - runs-on: ${{ matrix.operating-system }} - continue-on-error: true - - strategy: - fail-fast: false - matrix: - php-version: - - nightly - operating-system: [ubuntu-latest] - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - extensions: :intl - coverage: none - - - name: Get composer cache directory - id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" - - - name: Cache dependencies - uses: actions/cache@v2 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Cache test data - uses: actions/cache@v2 - env: - test-data-files: tests/data/unicode-idna-test-data - with: - path: ${{ env.test-data-files }} - key: unicode-test-data-${{ hashFiles(env.test-data-files) }} - restore-keys: unicode-test-data- - - - name: Install dependencies - run: composer install --ignore-platform-reqs - - - name: Tests - run: vendor/bin/phpunit - - tests-code-coverage: - name: Code Coverage - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: 7.4 - extensions: :intl - coverage: pcov - - - name: Get composer cache directory - id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" - - - name: Cache dependencies - uses: actions/cache@v2 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Cache test data - uses: actions/cache@v2 - env: - test-data-files: tests/data/unicode-idna-test-data - with: - path: ${{ env.test-data-files }} - key: unicode-test-data-${{ hashFiles(env.test-data-files) }} - restore-keys: unicode-test-data- - - - name: Install dependencies - run: composer install - - - name: Tests with code coverage - run: | - mkdir -p ./build/coverage/ - vendor/bin/phpunit --coverage-clover ./build/coverage/clover.xml - - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v2 - with: - token: ${{ secrets.CODECOV_TOKEN }} - files: ./build/coverage/clover.xml - - tests-jit: - name: Test JIT - runs-on: ${{ matrix.operating-system }} - - strategy: - fail-fast: false - matrix: - php-version: - - 8.0 - operating-system: [ubuntu-latest] - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - coverage: none - extensions: :intl - ini-values: opcache.enable_cli=1, opcache.jit=1255, opcache.jit_buffer_size=64M - - - name: Get composer cache directory - id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" - - - name: Cache dependencies - uses: actions/cache@v2 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Cache test data - uses: actions/cache@v2 - env: - test-data-files: tests/data/unicode-idna-test-data - with: - path: ${{ env.test-data-files }} - key: unicode-test-data-${{ hashFiles(env.test-data-files) }} - restore-keys: unicode-test-data- - - - name: Install dependencies - run: composer install - - - name: Tests - run: vendor/bin/phpunit diff --git a/components/DataLiberation/vendor-patched/rowbot/idna/.gitignore b/components/DataLiberation/vendor-patched/rowbot/idna/.gitignore deleted file mode 100755 index da3851392..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/idna/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -composer.phar -composer.lock -/vendor/ -/.vscode/ -/build/ -/tests/data/ -.phpunit.result.cache diff --git a/components/DataLiberation/vendor-patched/rowbot/idna/.phpcs.xml b/components/DataLiberation/vendor-patched/rowbot/idna/.phpcs.xml deleted file mode 100644 index 8a8c9273e..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/idna/.phpcs.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - src - */tests/* - */data/* - */Data/* - */build/* - src/Regex.php - - - - - - diff --git a/components/DataLiberation/vendor-patched/rowbot/punycode/.gitattributes b/components/DataLiberation/vendor-patched/rowbot/punycode/.gitattributes deleted file mode 100755 index dfe077042..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/punycode/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto diff --git a/components/DataLiberation/vendor-patched/rowbot/punycode/.github/workflows/tests.yml b/components/DataLiberation/vendor-patched/rowbot/punycode/.github/workflows/tests.yml deleted file mode 100644 index 4fe842185..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/punycode/.github/workflows/tests.yml +++ /dev/null @@ -1,176 +0,0 @@ -name: Tests - -on: - pull_request: - push: - paths-ignore: - - '**.md' - -jobs: - tests: - name: Tests - runs-on: ${{ matrix.operating-system }} - - strategy: - fail-fast: false - matrix: - php-version: - - 7.1 - - 7.2 - - 7.3 - - 7.4 - - 8.0 - - 8.1 - - 8.2 - - 8.3 - operating-system: [ubuntu-latest] - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - coverage: none - - - name: Get composer cache directory - id: composer-cache - run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - - name: Cache dependencies - uses: actions/cache@v4 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Install dependencies - run: composer install - - - name: Run PHPStan - run: vendor/bin/phpstan analyse - - - name: Run PHPCS - run: vendor/bin/phpcs - - - name: Tests - run: vendor/bin/phpunit - - tests-unstable: - name: Test Unstable - runs-on: ${{ matrix.operating-system }} - continue-on-error: true - - strategy: - fail-fast: false - matrix: - php-version: - - nightly - operating-system: [ubuntu-latest] - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - coverage: none - - - name: Get composer cache directory - id: composer-cache - run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - - name: Cache dependencies - uses: actions/cache@v4 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Install dependencies - run: composer install --ignore-platform-reqs - - - name: Tests - run: vendor/bin/phpunit - - tests-code-coverage: - name: Code Coverage - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: 7.4 - coverage: pcov - - - name: Get composer cache directory - id: composer-cache - run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - - name: Cache dependencies - uses: actions/cache@v4 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Install dependencies - run: composer install - - - name: Tests with code coverage - run: | - mkdir -p ./build/coverage/ - vendor/bin/phpunit --coverage-clover ./build/coverage/clover.xml - - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 - with: - token: ${{ secrets.CODECOV_TOKEN }} - files: ./build/coverage/clover.xml - - tests-jit: - name: Test JIT - runs-on: ${{ matrix.operating-system }} - - strategy: - fail-fast: false - matrix: - php-version: - - 8.0 - operating-system: [ubuntu-latest] - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - coverage: none - ini-values: opcache.enable_cli=1, opcache.jit=1255, opcache.jit_buffer_size=64M - - - name: Get composer cache directory - id: composer-cache - run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - - name: Cache dependencies - uses: actions/cache@v4 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Install dependencies - run: composer install - - - name: Tests - run: vendor/bin/phpunit diff --git a/components/DataLiberation/vendor-patched/rowbot/punycode/.gitignore b/components/DataLiberation/vendor-patched/rowbot/punycode/.gitignore deleted file mode 100755 index 7d6e0d5aa..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/punycode/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -composer.phar -composer.lock -/vendor/ -/.vscode/ -/build/ -.phpunit.result.cache diff --git a/components/DataLiberation/vendor-patched/rowbot/punycode/.phpcs.xml b/components/DataLiberation/vendor-patched/rowbot/punycode/.phpcs.xml deleted file mode 100644 index 254d47651..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/punycode/.phpcs.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - src - - - - - - diff --git a/components/DataLiberation/vendor-patched/rowbot/url/.github/workflows/coverage.yml b/components/DataLiberation/vendor-patched/rowbot/url/.github/workflows/coverage.yml deleted file mode 100644 index f43d6a74f..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/url/.github/workflows/coverage.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Code Coverage -on: - push: - paths-ignore: - - '**.md' - - pull_request: - paths-ignore: - - '**.md' - -jobs: - coverage: - name: PHP ${{ matrix.php }} on ${{ matrix.os }} ${{ matrix.arch }} - runs-on: ${{ matrix.os }} - container: shivammathur/node:latest-${{ matrix.arch }} - defaults: - run: - shell: bash - strategy: - fail-fast: true - matrix: - os: - - ubuntu-latest - arch: - - amd64 - - i386 - php: - - 8.1 - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: mbstring, opcache, pcre, gmp - coverage: pcov - env: - fail-fast: true - - - name: Install dependencies - run: composer update --no-interaction - - - name: Generate Coverage - run: | - mkdir -p ./build/coverage/ - vendor/bin/phpunit --coverage-clover ./build/coverage/clover.xml - - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 - if: ${{ !env.ACT }} - with: - token: ${{ secrets.CODECOV_TOKEN }} - files: ./build/coverage/clover.xml - name: PHP ${{ matrix.php }} on ${{ matrix.os }} ${{ matrix.arch }} diff --git a/components/DataLiberation/vendor-patched/rowbot/url/.github/workflows/tests.yml b/components/DataLiberation/vendor-patched/rowbot/url/.github/workflows/tests.yml deleted file mode 100644 index c219ba609..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/url/.github/workflows/tests.yml +++ /dev/null @@ -1,70 +0,0 @@ -name: Test URL -on: - push: - paths-ignore: - - '**.md' - - pull_request: - paths-ignore: - - '**.md' - -jobs: - test: - name: PHP ${{ matrix.php }} ${{ matrix.php-jit == 'on' && 'with' || 'without' }} JIT on ${{ matrix.os }} ${{ matrix.arch }} - runs-on: ${{ matrix.os }} - container: shivammathur/node:latest-${{ matrix.arch }} - continue-on-error: ${{ matrix.php == 'nightly' }} - defaults: - run: - shell: bash - strategy: - fail-fast: true - matrix: - os: - - ubuntu-latest - arch: - - amd64 - - i386 - php: - - 8.1 - - 8.2 - - 8.3 - php-jit: - - on - - off - include: - - php: nightly - os: ubuntu-latest - arch: amd64 - php-jit: on - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: mbstring, opcache, pcre, gmp - ini-values: zend.assertions=1, opcache.enable_cli=1, opcache.memory_consumption=256, opcache.jit=${{ matrix.php-jit == 'on' && 1255 || 'disable' }}, opcache.jit_buffer_size=${{ matrix.php-jit == 'on' && '256M' || '0' }} - coverage: none - env: - fail-fast: true - - - name: Install dependencies - run: | - if [[ ${{ matrix.php == 'nightly' }} ]]; then - composer update --no-interaction --ignore-platform-reqs - else - composer update --no-interaction - fi - - - name: Run PHPCS - run: vendor/bin/phpcs - - - name: Run PHPStan - run: vendor/bin/phpstan - - - name: Run Tests - run: vendor/bin/phpunit diff --git a/components/DataLiberation/vendor-patched/rowbot/url/.gitignore b/components/DataLiberation/vendor-patched/rowbot/url/.gitignore deleted file mode 100644 index a8f6aa1cd..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/url/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/vendor/ -/composer.lock -.vscode -/build/ -/tests/WhatWg/data/ -/.phpunit.cache/ diff --git a/components/DataLiberation/vendor-patched/rowbot/url/.phpcs.xml b/components/DataLiberation/vendor-patched/rowbot/url/.phpcs.xml deleted file mode 100644 index 3a17c01e6..000000000 --- a/components/DataLiberation/vendor-patched/rowbot/url/.phpcs.xml +++ /dev/null @@ -1,199 +0,0 @@ - - - src - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/components/Markdown/vendor-patched/league/commonmark/.phpstorm.meta.php b/components/Markdown/vendor-patched/league/commonmark/.phpstorm.meta.php deleted file mode 100644 index 5eb9270da..000000000 --- a/components/Markdown/vendor-patched/league/commonmark/.phpstorm.meta.php +++ /dev/null @@ -1,106 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace PHPSTORM_META -{ - expectedArguments(\League\CommonMark\Util\HtmlElement::__construct(), 0, 'a', 'abbr', 'address', 'area', 'article', 'aside', 'audio', 'b', 'base', 'bdi', 'bdo', 'blockquote', 'body', 'br', 'button', 'canvas', 'caption', 'cite', 'code', 'col', 'colgroup', 'data', 'datalist', 'dd', 'del', 'details', 'dfn', 'dialog', 'div', 'dl', 'dt', 'em', 'embed', 'fieldset', 'figure', 'footer', 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'i', 'iframe', 'img', 'input', 'ins', 'kdb', 'keygen', 'label', 'legend', 'li', 'link', 'main', 'map', 'mark', 'menu', 'menuitem', 'meta', 'meter', 'nav', 'noscript', 'object', 'ol', 'optgroup', 'option', 'output', 'p', 'param', 'pre', 'progress', 'q', 's', 'samp', 'script', 'section', 'select', 'small', 'source', 'span', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'time', 'tr', 'track', 'u', 'ul', 'var', 'video', 'wbr'); - - expectedArguments(\League\CommonMark\Extension\CommonMark\Node\Block\Heading::__construct(), 0, 1, 2, 3, 4, 5, 6); - expectedReturnValues(\League\CommonMark\Extension\CommonMark\Node\Block\Heading::getLevel(), 1, 2, 3, 4, 5, 6); - - registerArgumentsSet('league_commonmark_htmlblock_types', \League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock::TYPE_1_CODE_CONTAINER, \League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock::TYPE_2_COMMENT, \League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock::TYPE_3, \League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock::TYPE_4, \League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock::TYPE_5_CDATA, \League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock::TYPE_6_BLOCK_ELEMENT, \League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock::TYPE_7_MISC_ELEMENT); - expectedArguments(\League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock::__construct(), 0, argumentsSet('league_commonmark_htmlblock_types')); - expectedArguments(\League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock::setType(), 0, argumentsSet('league_commonmark_htmlblock_types')); - expectedReturnValues(\League\CommonMark\Extension\CommonMark\Node\Block\HtmlBlock::getType(), argumentsSet('league_commonmark_htmlblock_types')); - expectedArguments(\League\CommonMark\Util\RegexHelper::getHtmlBlockOpenRegex(), 0, argumentsSet('league_commonmark_htmlblock_types')); - expectedArguments(\League\CommonMark\Util\RegexHelper::getHtmlBlockCloseRegex(), 0, argumentsSet('league_commonmark_htmlblock_types')); - - registerArgumentsSet('league_commonmark_newline_types', \League\CommonMark\Node\Inline\Newline::HARDBREAK, \League\CommonMark\Node\Inline\Newline::SOFTBREAK); - expectedArguments(\League\CommonMark\Node\Inline\Newline::__construct(), 0, argumentsSet('league_commonmark_newline_types')); - expectedReturnValues(\League\CommonMark\Node\Inline\Newline::getType(), argumentsSet('league_commonmark_newline_types')); - - registerArgumentsSet('league_commonmark_options', - 'html_input', - 'allow_unsafe_links', - 'max_nesting_level', - 'max_delimiters_per_line', - 'renderer', - 'renderer/block_separator', - 'renderer/inner_separator', - 'renderer/soft_break', - 'commonmark', - 'commonmark/enable_em', - 'commonmark/enable_strong', - 'commonmark/use_asterisk', - 'commonmark/use_underscore', - 'commonmark/unordered_list_markers', - 'disallowed_raw_html', - 'disallowed_raw_html/disallowed_tags', - 'external_link', - 'external_link/html_class', - 'external_link/internal_hosts', - 'external_link/nofollow', - 'external_link/noopener', - 'external_link/noreferrer', - 'external_link/open_in_new_window', - 'footnote', - 'footnote/backref_class', - 'footnote/backref_symbol', - 'footnote/container_add_hr', - 'footnote/container_class', - 'footnote/ref_class', - 'footnote/ref_id_prefix', - 'footnote/footnote_class', - 'footnote/footnote_id_prefix', - 'heading_permalink', - 'heading_permalink/apply_id_to_heading', - 'heading_permalink/heading_class', - 'heading_permalink/html_class', - 'heading_permalink/fragment_prefix', - 'heading_permalink/id_prefix', - 'heading_permalink/inner_contents', - 'heading_permalink/insert', - 'heading_permalink/max_heading_level', - 'heading_permalink/min_heading_level', - 'heading_permalink/symbol', - 'heading_permalink/title', - 'mentions', - 'smartpunct/double_quote_closer', - 'smartpunct/double_quote_opener', - 'smartpunct/single_quote_closer', - 'smartpunct/single_quote_opener', - 'slug_normalizer', - 'slug_normalizer/instance', - 'slug_normalizer/max_length', - 'slug_normalizer/unique', - 'table', - 'table/wrap', - 'table/wrap/attributes', - 'table/wrap/enabled', - 'table/wrap/tag', - 'table/alignment_attributes', - 'table/alignment_attributes/left', - 'table/alignment_attributes/center', - 'table/alignment_attributes/right', - 'table/max_autocompleted_cells', - 'table_of_contents', - 'table_of_contents/html_class', - 'table_of_contents/max_heading_level', - 'table_of_contents/min_heading_level', - 'table_of_contents/normalize', - 'table_of_contents/placeholder', - 'table_of_contents/position', - 'table_of_contents/style', - ); - expectedArguments(\League\Config\ConfigurationInterface::get(), 0, argumentsSet('league_commonmark_options')); - expectedArguments(\League\Config\ConfigurationInterface::exists(), 0, argumentsSet('league_commonmark_options')); - expectedArguments(\League\Config\MutableConfigurationInterface::set(), 0, argumentsSet('league_commonmark_options')); -} diff --git a/components/Markdown/vendor-patched/nette/utils/.phpstorm.meta.php b/components/Markdown/vendor-patched/nette/utils/.phpstorm.meta.php deleted file mode 100644 index 25851af66..000000000 --- a/components/Markdown/vendor-patched/nette/utils/.phpstorm.meta.php +++ /dev/null @@ -1,13 +0,0 @@ -