diff --git a/.github/workflows/build-docker-simple.yml b/.github/workflows/build-docker-simple.yml new file mode 100644 index 00000000..59d7e113 --- /dev/null +++ b/.github/workflows/build-docker-simple.yml @@ -0,0 +1,65 @@ +--- +name: Build simple LinkAce Docker image + +#on: +# push: +# branches: +# - master +# tags: +# - "*" +on: workflow_dispatch + +jobs: + publish_to_docker_hub: + + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v2 + + - name: Prepare tags + id: prep + run: | + DOCKER_IMAGE=linkace/linkace + VERSION=noop + + if [[ $GITHUB_REF == refs/tags/* ]]; then + VERSION=${GITHUB_REF#refs/tags/} + elif [[ $GITHUB_REF == refs/heads/master ]]; then + VERSION=php-nginx + fi + + TAGS="${DOCKER_IMAGE}:${VERSION}" + if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then + MINOR=${VERSION%.*} + MAJOR=${MINOR%.*} + TAGS="$TAGS-php-nginx,${DOCKER_IMAGE}:php-nginx" + fi + + echo ::set-output name=version::${VERSION} + echo ::set-output name=tags::${TAGS} + echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ') + + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v1 + + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} + + - name: Build and push simple image + id: docker_build + uses: docker/build-push-action@v2 + with: + context: . + file: ./resources/docker/dockerfiles/release-simple.Dockerfile + platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7 + push: true + tags: ${{ steps.prep.outputs.tags }} diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml new file mode 100644 index 00000000..11b28a74 --- /dev/null +++ b/.github/workflows/build-docker.yml @@ -0,0 +1,63 @@ +--- +name: Build regular LinkAce Docker image + +#on: +# push: +# branches: +# - master +# tags: +# - "*" +on: workflow_dispatch + +jobs: + publish_to_docker_hub: + + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v2 + + - name: Prepare tags + id: prep + run: | + DOCKER_IMAGE=linkace/linkace + VERSION=noop + + if [[ $GITHUB_REF == refs/tags/* ]]; then + VERSION=${GITHUB_REF#refs/tags/} + elif [[ $GITHUB_REF == refs/heads/master ]]; then + VERSION=latest + fi + + TAGS="${DOCKER_IMAGE}:${VERSION}" + if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then + TAGS="$TAGS,${DOCKER_IMAGE}:latest" + fi + + echo ::set-output name=version::${VERSION} + echo ::set-output name=tags::${TAGS} + echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ') + + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v1 + + - name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} + + - name: Build and push advanced image + id: docker_build + uses: docker/build-push-action@v2 + with: + context: . + file: ./resources/docker/dockerfiles/release.Dockerfile + platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7 + push: true + tags: ${{ steps.prep.outputs.tags }} diff --git a/.github/workflows/build-package.yml b/.github/workflows/build-package.yml new file mode 100644 index 00000000..a83b3cea --- /dev/null +++ b/.github/workflows/build-package.yml @@ -0,0 +1,100 @@ +name: Build Release Package + +on: + push: + branches: + - master + +jobs: + + build-js: + runs-on: ubuntu-latest + + name: Build assets for the package + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js 14.x + uses: actions/setup-node@v1 + with: + node-version: '14.x' + + - name: Try to build the assets + run: | + npm ci + npm run production + + - name: Upload built assets + uses: actions/upload-artifact@v2 + with: + name: assets + path: public/assets/dist + + - name: Upload mix manifest + uses: actions/upload-artifact@v2 + with: + name: mix-manifest + path: public/mix-manifest.json + + build-package: + runs-on: ubuntu-latest + needs: build-js + + name: Build final dist package + + steps: + - uses: actions/checkout@v2 + + - uses: actions/download-artifact@v2 + with: + name: assets + path: public/assets/dist + + - uses: actions/download-artifact@v2 + with: + name: mix-manifest + path: public + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '7.3' + extensions: mbstring + + - 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@v1 + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: ${{ runner.os }}-composer- + + - name: Prepare the environment + run: cp .env.example .env + + - name: Validate composer.json and composer.lock + run: composer validate + + - name: Install dependencies + run: composer install --prefer-dist --no-progress --no-suggest + + - name: Publish package configuration + run: 'php artisan vendor:publish --provider="Spatie\Backup\BackupServiceProvider"' + + - name: Remove .env file + run: rm .env + + - name: Build the final package + uses: thedoctor0/zip-release@master + with: + filename: linkace.zip + exclusions: '*.git*' + + - name: Upload the package + uses: actions/upload-artifact@v2 + with: + name: linkace-package + path: linkace.zip diff --git a/app/Console/Commands/AsksForUser.php b/app/Console/Commands/AsksForUser.php new file mode 100644 index 00000000..cf1857ca --- /dev/null +++ b/app/Console/Commands/AsksForUser.php @@ -0,0 +1,24 @@ +ask('Please enter the user email address'); + + $this->user = User::where('email', $email)->first(); + + if (empty($this->user)) { + $this->warn('A user with this email address could not be found!'); + } + } while (empty($this->user)); + } +} diff --git a/app/Console/Commands/CheckLinksCommand.php b/app/Console/Commands/CheckLinksCommand.php index fa091a33..55b79091 100644 --- a/app/Console/Commands/CheckLinksCommand.php +++ b/app/Console/Commands/CheckLinksCommand.php @@ -46,6 +46,9 @@ class CheckLinksCommand extends Command /** @var array */ protected $brokenLinks = []; + /** @var array */ + protected $validUrlSchemes = ['http', 'https']; + public function handle(): void { // Check if the command should skip the execution @@ -137,8 +140,14 @@ protected function checkLink(Link $link): void { $this->output->write('Checking link ' . $link->url . ' '); + $urlScheme = parse_url($link->url, PHP_URL_SCHEME); + if (in_array($urlScheme, $this->validUrlSchemes) === false) { + $this->warn('› Invalid scheme [' . $urlScheme . '], skipping Link.'); + return; + } + try { - $response = Http::timeout(10)->get($link->url); + $response = Http::timeout(10)->head($link->url); $statusCode = $response->status(); } catch (\Exception $e) { // Set status code to null so the link will be marked as broken @@ -196,7 +205,7 @@ protected function processWorkingLink(Link $link): void * * @return void */ - protected function sendNotification() + protected function sendNotification(): void { if (empty($this->movedLinks) && empty($this->brokenLinks)) { // Do not send a notification if there are no errors diff --git a/app/Console/Commands/ResetPasswordCommand.php b/app/Console/Commands/ResetPasswordCommand.php index f3669ce0..90bdf006 100644 --- a/app/Console/Commands/ResetPasswordCommand.php +++ b/app/Console/Commands/ResetPasswordCommand.php @@ -13,10 +13,9 @@ */ class ResetPasswordCommand extends Command { - protected $signature = 'reset-password'; + use AsksForUser; - /** @var User */ - protected $user; + protected $signature = 'reset-password'; public function handle(): void { @@ -26,19 +25,6 @@ public function handle(): void $this->resetUserPassword(); } - protected function askForUserEmail() - { - do { - $email = $this->ask('Please enter the user email address'); - - $this->user = User::where('email', $email)->first(); - - if (empty($this->user)) { - $this->warn('A user with this email address could not be found!'); - } - } while (empty($this->user)); - } - protected function resetUserPassword() { do { diff --git a/app/Console/Commands/ViewRecoveryCodesCommand.php b/app/Console/Commands/ViewRecoveryCodesCommand.php new file mode 100644 index 00000000..30e59b1a --- /dev/null +++ b/app/Console/Commands/ViewRecoveryCodesCommand.php @@ -0,0 +1,42 @@ +line('This tool allows you to view the 2FA recovery codes for any user.'); + + $this->askForUserEmail(); + $this->viewBackupCodes(); + } + + protected function viewBackupCodes(): void + { + if (empty($this->user->two_factor_recovery_codes)) { + $this->warn('Two Factor Authentication is not enabled for this user.'); + return; + } + + $this->info('Recovery Codes for user ' . $this->user->name .':'); + + $recoveryCodes = json_decode(decrypt($this->user->two_factor_recovery_codes), true); + foreach ($recoveryCodes as $code) { + $this->line($code); + } + } +} diff --git a/app/Helper/WaybackMachine.php b/app/Helper/WaybackMachine.php index 246fa48f..9ce7fcd3 100644 --- a/app/Helper/WaybackMachine.php +++ b/app/Helper/WaybackMachine.php @@ -30,7 +30,7 @@ public static function saveToArchive(string $url): bool $archiveUrl = self::$baseUrl . '/save/' . $url; - $response = Http::get($archiveUrl); + $response = Http::head($archiveUrl); try { $response->throw(); diff --git a/app/Http/Controllers/App/SearchController.php b/app/Http/Controllers/App/SearchController.php index 1ed2c3f4..67702d20 100644 --- a/app/Http/Controllers/App/SearchController.php +++ b/app/Http/Controllers/App/SearchController.php @@ -23,8 +23,8 @@ public function getSearch(): View ->with('order_by_options', $this->orderByOptions) ->with('query_settings', [ 'old_query' => null, - 'search_title' => false, - 'search_description' => false, + 'search_title' => true, + 'search_description' => true, 'private_only' => false, 'broken_only' => false, 'only_lists' => '', diff --git a/composer.lock b/composer.lock index 2af12a08..a6f37478 100644 --- a/composer.lock +++ b/composer.lock @@ -8,16 +8,16 @@ "packages": [ { "name": "aws/aws-sdk-php", - "version": "3.170.0", + "version": "3.171.14", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "7f457a08219173eba4b856cb7aef3a903cd790cc" + "reference": "2bc8681a623caa13d5c1da90ca4d6c76436b545d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/7f457a08219173eba4b856cb7aef3a903cd790cc", - "reference": "7f457a08219173eba4b856cb7aef3a903cd790cc", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/2bc8681a623caa13d5c1da90ca4d6c76436b545d", + "reference": "2bc8681a623caa13d5c1da90ca4d6c76436b545d", "shasum": "" }, "require": { @@ -89,7 +89,7 @@ "s3", "sdk" ], - "time": "2020-12-15T19:13:22+00:00" + "time": "2021-01-07T19:16:26+00:00" }, { "name": "bacon/bacon-qr-code", @@ -960,16 +960,16 @@ }, { "name": "egulias/email-validator", - "version": "2.1.24", + "version": "2.1.25", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "ca90a3291eee1538cd48ff25163240695bd95448" + "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ca90a3291eee1538cd48ff25163240695bd95448", - "reference": "ca90a3291eee1538cd48ff25163240695bd95448", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4", + "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4", "shasum": "" }, "require": { @@ -1020,7 +1020,7 @@ "type": "github" } ], - "time": "2020-11-14T15:56:27+00:00" + "time": "2020-12-29T14:50:06+00:00" }, { "name": "fideloper/proxy", @@ -1565,16 +1565,16 @@ }, { "name": "laravel/fortify", - "version": "v1.7.2", + "version": "v1.7.4", "source": { "type": "git", "url": "https://github.com/laravel/fortify.git", - "reference": "1333184e4797de9f6fe5891e4b6f07919a151289" + "reference": "2ca0c06bf7385d26730cfc3783865a9c06a51f63" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/fortify/zipball/1333184e4797de9f6fe5891e4b6f07919a151289", - "reference": "1333184e4797de9f6fe5891e4b6f07919a151289", + "url": "https://api.github.com/repos/laravel/fortify/zipball/2ca0c06bf7385d26730cfc3783865a9c06a51f63", + "reference": "2ca0c06bf7385d26730cfc3783865a9c06a51f63", "shasum": "" }, "require": { @@ -1620,20 +1620,20 @@ "auth", "laravel" ], - "time": "2020-11-24T16:52:33+00:00" + "time": "2021-01-07T18:43:41+00:00" }, { "name": "laravel/framework", - "version": "v8.19.0", + "version": "v8.21.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "f5f331cee60f1bbe672503b7eb9ba5b22b2ceacb" + "reference": "a61cab167c35f465a923737ee6e6fb99cd5fde88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/f5f331cee60f1bbe672503b7eb9ba5b22b2ceacb", - "reference": "f5f331cee60f1bbe672503b7eb9ba5b22b2ceacb", + "url": "https://api.github.com/repos/laravel/framework/zipball/a61cab167c35f465a923737ee6e6fb99cd5fde88", + "reference": "a61cab167c35f465a923737ee6e6fb99cd5fde88", "shasum": "" }, "require": { @@ -1783,7 +1783,7 @@ "framework", "laravel" ], - "time": "2020-12-15T16:16:31+00:00" + "time": "2021-01-05T15:43:10+00:00" }, { "name": "league/commonmark", @@ -2298,16 +2298,16 @@ }, { "name": "nesbot/carbon", - "version": "2.42.0", + "version": "2.43.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "d0463779663437392fe42ff339ebc0213bd55498" + "reference": "d32c57d8389113742f4a88725a170236470012e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d0463779663437392fe42ff339ebc0213bd55498", - "reference": "d0463779663437392fe42ff339ebc0213bd55498", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d32c57d8389113742f4a88725a170236470012e2", + "reference": "d32c57d8389113742f4a88725a170236470012e2", "shasum": "" }, "require": { @@ -2383,7 +2383,7 @@ "type": "tidelift" } ], - "time": "2020-11-28T14:25:28+00:00" + "time": "2020-12-17T20:55:32+00:00" }, { "name": "opis/closure", @@ -3714,16 +3714,16 @@ }, { "name": "sentry/sentry", - "version": "3.1.1", + "version": "3.1.2", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-php.git", - "reference": "2a0ecb127dbccf93fb5a37df907ce08822a62e6c" + "reference": "e9b2d45b248d75f4c79a9d166b13b947b72f01fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/2a0ecb127dbccf93fb5a37df907ce08822a62e6c", - "reference": "2a0ecb127dbccf93fb5a37df907ce08822a62e6c", + "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/e9b2d45b248d75f4c79a9d166b13b947b72f01fa", + "reference": "e9b2d45b248d75f4c79a9d166b13b947b72f01fa", "shasum": "" }, "require": { @@ -3751,7 +3751,7 @@ "raven/raven": "*" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.16", + "friendsofphp/php-cs-fixer": "^2.17", "http-interop/http-factory-guzzle": "^1.0", "monolog/monolog": "^1.3|^2.0", "nikic/php-parser": "^4.10.3", @@ -3761,7 +3761,7 @@ "phpstan/phpstan-phpunit": "^0.12", "phpunit/phpunit": "^8.5.13|^9.4", "symfony/phpunit-bridge": "^5.2", - "vimeo/psalm": "^3.4|^4.2" + "vimeo/psalm": "^4.2" }, "suggest": { "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler." @@ -3811,7 +3811,7 @@ "type": "custom" } ], - "time": "2020-12-05T21:59:39+00:00" + "time": "2021-01-07T18:51:44+00:00" }, { "name": "sentry/sentry-laravel", @@ -4008,16 +4008,16 @@ }, { "name": "spatie/laravel-backup", - "version": "6.14.1", + "version": "6.14.2", "source": { "type": "git", "url": "https://github.com/spatie/laravel-backup.git", - "reference": "f8bd2e719a76bd197c5cdec0172b2c9a7b6436da" + "reference": "3374e1eeb09ef32c6bfd495ae1f2f4de4b594922" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/f8bd2e719a76bd197c5cdec0172b2c9a7b6436da", - "reference": "f8bd2e719a76bd197c5cdec0172b2c9a7b6436da", + "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/3374e1eeb09ef32c6bfd495ae1f2f4de4b594922", + "reference": "3374e1eeb09ef32c6bfd495ae1f2f4de4b594922", "shasum": "" }, "require": { @@ -4089,7 +4089,7 @@ "type": "other" } ], - "time": "2020-12-16T07:40:24+00:00" + "time": "2020-12-23T10:13:12+00:00" }, { "name": "spatie/temporary-directory", @@ -4211,16 +4211,16 @@ }, { "name": "symfony/console", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "3e0564fb08d44a98bd5f1960204c958e57bd586b" + "reference": "47c02526c532fb381374dab26df05e7313978976" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/3e0564fb08d44a98bd5f1960204c958e57bd586b", - "reference": "3e0564fb08d44a98bd5f1960204c958e57bd586b", + "url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976", + "reference": "47c02526c532fb381374dab26df05e7313978976", "shasum": "" }, "require": { @@ -4301,20 +4301,20 @@ "type": "tidelift" } ], - "time": "2020-11-28T11:24:18+00:00" + "time": "2020-12-18T08:03:05+00:00" }, { "name": "symfony/css-selector", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256" + "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256", - "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054", + "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054", "shasum": "" }, "require": { @@ -4363,7 +4363,7 @@ "type": "tidelift" } ], - "time": "2020-10-28T21:31:18+00:00" + "time": "2020-12-08T17:02:38+00:00" }, { "name": "symfony/deprecation-contracts", @@ -4431,16 +4431,16 @@ }, { "name": "symfony/error-handler", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "289008c5be039e39908d33ae0a8ac99be1210bba" + "reference": "59b190ce16ddf32771a22087b60f6dafd3407147" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/289008c5be039e39908d33ae0a8ac99be1210bba", - "reference": "289008c5be039e39908d33ae0a8ac99be1210bba", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/59b190ce16ddf32771a22087b60f6dafd3407147", + "reference": "59b190ce16ddf32771a22087b60f6dafd3407147", "shasum": "" }, "require": { @@ -4493,20 +4493,20 @@ "type": "tidelift" } ], - "time": "2020-10-28T21:46:03+00:00" + "time": "2020-12-09T18:54:12+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "aa13a09811e6d2ad43f8fb336bebdb7691d85d3c" + "reference": "1c93f7a1dff592c252574c79a8635a8a80856042" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/aa13a09811e6d2ad43f8fb336bebdb7691d85d3c", - "reference": "aa13a09811e6d2ad43f8fb336bebdb7691d85d3c", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042", + "reference": "1c93f7a1dff592c252574c79a8635a8a80856042", "shasum": "" }, "require": { @@ -4575,7 +4575,7 @@ "type": "tidelift" } ], - "time": "2020-11-01T16:14:45+00:00" + "time": "2020-12-18T08:03:05+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -4655,16 +4655,16 @@ }, { "name": "symfony/finder", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "fd8305521692f27eae3263895d1ef1571c71a78d" + "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/fd8305521692f27eae3263895d1ef1571c71a78d", - "reference": "fd8305521692f27eae3263895d1ef1571c71a78d", + "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba", + "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba", "shasum": "" }, "require": { @@ -4709,20 +4709,20 @@ "type": "tidelift" } ], - "time": "2020-11-18T09:42:36+00:00" + "time": "2020-12-08T17:02:38+00:00" }, { "name": "symfony/http-client", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "5b9fc5d85a6cec73832ff170ccd468d97dd082d9" + "reference": "a77cbec69ea90dea509beef29b79748c0df33a83" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/5b9fc5d85a6cec73832ff170ccd468d97dd082d9", - "reference": "5b9fc5d85a6cec73832ff170ccd468d97dd082d9", + "url": "https://api.github.com/repos/symfony/http-client/zipball/a77cbec69ea90dea509beef29b79748c0df33a83", + "reference": "a77cbec69ea90dea509beef29b79748c0df33a83", "shasum": "" }, "require": { @@ -4792,7 +4792,7 @@ "type": "tidelift" } ], - "time": "2020-11-28T13:45:20+00:00" + "time": "2020-12-14T10:56:50+00:00" }, { "name": "symfony/http-client-contracts", @@ -4872,16 +4872,16 @@ }, { "name": "symfony/http-foundation", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "e4576271ee99123aa59a40564c7b5405f0ebd1e6" + "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e4576271ee99123aa59a40564c7b5405f0ebd1e6", - "reference": "e4576271ee99123aa59a40564c7b5405f0ebd1e6", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a1f6218b29897ab52acba58cfa905b83625bef8d", + "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d", "shasum": "" }, "require": { @@ -4938,20 +4938,20 @@ "type": "tidelift" } ], - "time": "2020-11-27T06:13:25+00:00" + "time": "2020-12-18T10:00:10+00:00" }, { "name": "symfony/http-kernel", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "38907e5ccb2d9d371191a946734afc83c7a03160" + "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/38907e5ccb2d9d371191a946734afc83c7a03160", - "reference": "38907e5ccb2d9d371191a946734afc83c7a03160", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1feb619286d819180f7b8bc0dc44f516d9c62647", + "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647", "shasum": "" }, "require": { @@ -5047,20 +5047,20 @@ "type": "tidelift" } ], - "time": "2020-11-30T05:54:18+00:00" + "time": "2020-12-18T13:49:39+00:00" }, { "name": "symfony/mime", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "05f667e8fa029568964fd3bec6bc17765b853cc5" + "reference": "de97005aef7426ba008c46ba840fc301df577ada" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/05f667e8fa029568964fd3bec6bc17765b853cc5", - "reference": "05f667e8fa029568964fd3bec6bc17765b853cc5", + "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada", + "reference": "de97005aef7426ba008c46ba840fc301df577ada", "shasum": "" }, "require": { @@ -5124,11 +5124,11 @@ "type": "tidelift" } ], - "time": "2020-10-30T14:55:39+00:00" + "time": "2020-12-09T18:54:12+00:00" }, { "name": "symfony/options-resolver", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", @@ -5194,16 +5194,16 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41" + "reference": "c6c942b1ac76c82448322025e084cadc56048b4e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41", - "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e", + "reference": "c6c942b1ac76c82448322025e084cadc56048b4e", "shasum": "" }, "require": { @@ -5215,7 +5215,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5266,20 +5266,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024" + "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024", - "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6", + "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6", "shasum": "" }, "require": { @@ -5291,7 +5291,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5343,20 +5343,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c" + "reference": "267a9adeb8ecb8071040a740930e077cdfb987af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c", - "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af", + "reference": "267a9adeb8ecb8071040a740930e077cdfb987af", "shasum": "" }, "require": { @@ -5368,7 +5368,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5421,20 +5421,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117" + "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117", - "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44", + "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44", "shasum": "" }, "require": { @@ -5448,7 +5448,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5505,20 +5505,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "727d1096295d807c309fb01a851577302394c897" + "reference": "6e971c891537eb617a00bb07a43d182a6915faba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897", - "reference": "727d1096295d807c309fb01a851577302394c897", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba", + "reference": "6e971c891537eb617a00bb07a43d182a6915faba", "shasum": "" }, "require": { @@ -5530,7 +5530,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5586,20 +5586,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T17:09:11+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "39d483bdf39be819deabf04ec872eb0b2410b531" + "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531", - "reference": "39d483bdf39be819deabf04ec872eb0b2410b531", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13", + "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13", "shasum": "" }, "require": { @@ -5611,7 +5611,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5663,20 +5663,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930" + "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930", - "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", + "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", "shasum": "" }, "require": { @@ -5685,7 +5685,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5736,20 +5736,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed" + "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed", - "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2", + "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2", "shasum": "" }, "require": { @@ -5758,7 +5758,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5812,20 +5812,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de" + "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de", - "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91", + "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91", "shasum": "" }, "require": { @@ -5834,7 +5834,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5892,20 +5892,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-uuid", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", - "reference": "7095799250ff244f3015dc492480175a249e7b55" + "reference": "17e0611d2e180a91d02b4fa8b03aab0368b661bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/7095799250ff244f3015dc492480175a249e7b55", - "reference": "7095799250ff244f3015dc492480175a249e7b55", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/17e0611d2e180a91d02b4fa8b03aab0368b661bc", + "reference": "17e0611d2e180a91d02b4fa8b03aab0368b661bc", "shasum": "" }, "require": { @@ -5917,7 +5917,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -5968,20 +5968,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/process", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "240e74140d4d956265048f3025c0aecbbc302d54" + "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/240e74140d4d956265048f3025c0aecbbc302d54", - "reference": "240e74140d4d956265048f3025c0aecbbc302d54", + "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd", + "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd", "shasum": "" }, "require": { @@ -6027,20 +6027,20 @@ "type": "tidelift" } ], - "time": "2020-11-02T15:47:15+00:00" + "time": "2020-12-08T17:03:37+00:00" }, { "name": "symfony/routing", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "130ac5175ad2fd417978baebd8062e2e6b2bc28b" + "reference": "934ac2720dcc878a47a45c986b483a7ee7193620" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/130ac5175ad2fd417978baebd8062e2e6b2bc28b", - "reference": "130ac5175ad2fd417978baebd8062e2e6b2bc28b", + "url": "https://api.github.com/repos/symfony/routing/zipball/934ac2720dcc878a47a45c986b483a7ee7193620", + "reference": "934ac2720dcc878a47a45c986b483a7ee7193620", "shasum": "" }, "require": { @@ -6114,7 +6114,7 @@ "type": "tidelift" } ], - "time": "2020-11-27T00:39:34+00:00" + "time": "2020-12-08T17:03:37+00:00" }, { "name": "symfony/service-contracts", @@ -6194,16 +6194,16 @@ }, { "name": "symfony/string", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "40e975edadd4e32cd16f3753b3bad65d9ac48242" + "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/40e975edadd4e32cd16f3753b3bad65d9ac48242", - "reference": "40e975edadd4e32cd16f3753b3bad65d9ac48242", + "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed", + "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed", "shasum": "" }, "require": { @@ -6270,20 +6270,20 @@ "type": "tidelift" } ], - "time": "2020-10-24T12:08:07+00:00" + "time": "2020-12-05T07:33:16+00:00" }, { "name": "symfony/translation", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "52f486a707510884450df461b5a6429dd7a67379" + "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/52f486a707510884450df461b5a6429dd7a67379", - "reference": "52f486a707510884450df461b5a6429dd7a67379", + "url": "https://api.github.com/repos/symfony/translation/zipball/a04209ba0d1391c828e5b2373181dac63c52ee70", + "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70", "shasum": "" }, "require": { @@ -6360,7 +6360,7 @@ "type": "tidelift" } ], - "time": "2020-11-28T11:24:18+00:00" + "time": "2020-12-08T17:03:37+00:00" }, { "name": "symfony/translation-contracts", @@ -6439,16 +6439,16 @@ }, { "name": "symfony/var-dumper", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "173a79c462b1c81e1fa26129f71e41333d846b26" + "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/173a79c462b1c81e1fa26129f71e41333d846b26", - "reference": "173a79c462b1c81e1fa26129f71e41333d846b26", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13e7e882eaa55863faa7c4ad7c60f12f1a8b5089", + "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089", "shasum": "" }, "require": { @@ -6520,7 +6520,7 @@ "type": "tidelift" } ], - "time": "2020-11-27T00:39:34+00:00" + "time": "2020-12-16T17:02:19+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -6830,16 +6830,16 @@ "packages-dev": [ { "name": "barryvdh/laravel-debugbar", - "version": "v3.5.1", + "version": "v3.5.2", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc" + "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc", - "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/cae0a8d1cb89b0f0522f65e60465e16d738e069b", + "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b", "shasum": "" }, "require": { @@ -6852,6 +6852,7 @@ "symfony/finder": "^4.3|^5" }, "require-dev": { + "mockery/mockery": "^1.3.3", "orchestra/testbench-dusk": "^4|^5|^6", "phpunit/phpunit": "^8.5|^9.0", "squizlabs/php_codesniffer": "^3.5" @@ -6902,48 +6903,48 @@ "type": "github" } ], - "time": "2020-09-07T19:32:39+00:00" + "time": "2021-01-06T14:21:44+00:00" }, { "name": "barryvdh/laravel-ide-helper", - "version": "v2.8.2", + "version": "v2.9.0", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-ide-helper.git", - "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca" + "reference": "64a6b902583802c162cdccf7e76dc8619368bf1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca", - "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca", + "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/64a6b902583802c162cdccf7e76dc8619368bf1a", + "reference": "64a6b902583802c162cdccf7e76dc8619368bf1a", "shasum": "" }, "require": { "barryvdh/reflection-docblock": "^2.0.6", "composer/composer": "^1.6 || ^2", - "doctrine/dbal": "~2.3", + "doctrine/dbal": "^2.6 || ^3", "ext-json": "*", - "illuminate/console": "^6 || ^7 || ^8", - "illuminate/filesystem": "^6 || ^7 || ^8", - "illuminate/support": "^6 || ^7 || ^8", - "php": ">=7.2", + "illuminate/console": "^8", + "illuminate/filesystem": "^8", + "illuminate/support": "^8", + "php": "^7.3 || ^8.0", "phpdocumentor/type-resolver": "^1.1.0" }, "require-dev": { "ext-pdo_sqlite": "*", "friendsofphp/php-cs-fixer": "^2", - "illuminate/config": "^6 || ^7 || ^8", - "illuminate/view": "^6 || ^7 || ^8", - "mockery/mockery": "^1.3.3", - "orchestra/testbench": "^4 || ^5 || ^6", + "illuminate/config": "^8", + "illuminate/view": "^8", + "mockery/mockery": "^1.4", + "orchestra/testbench": "^6", "phpunit/phpunit": "^8.5 || ^9", - "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4", + "spatie/phpunit-snapshot-assertions": "^3 || ^4", "vimeo/psalm": "^3.12" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.8-dev" + "dev-master": "2.9-dev" }, "laravel": { "providers": [ @@ -6984,7 +6985,7 @@ "type": "github" } ], - "time": "2020-12-06T08:55:05+00:00" + "time": "2020-12-29T10:11:05+00:00" }, { "name": "barryvdh/reflection-docblock", @@ -7492,16 +7493,16 @@ }, { "name": "facade/ignition", - "version": "2.5.3", + "version": "2.5.8", "source": { "type": "git", "url": "https://github.com/facade/ignition.git", - "reference": "d8dc4f90ed469f9f9313b976fb078c20585d5c99" + "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/ignition/zipball/d8dc4f90ed469f9f9313b976fb078c20585d5c99", - "reference": "d8dc4f90ed469f9f9313b976fb078c20585d5c99", + "url": "https://api.github.com/repos/facade/ignition/zipball/8e907d81244649c5ea746e2ec30c32c5f59df472", + "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472", "shasum": "" }, "require": { @@ -7559,7 +7560,7 @@ "laravel", "page" ], - "time": "2020-12-09T20:25:45+00:00" + "time": "2020-12-29T09:12:55+00:00" }, { "name": "facade/ignition-contracts", @@ -7612,16 +7613,16 @@ }, { "name": "fakerphp/faker", - "version": "v1.12.1", + "version": "v1.13.0", "source": { "type": "git", "url": "https://github.com/FakerPHP/Faker.git", - "reference": "841e8bdde345cc1ea9f98e776959e7531cadea0e" + "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/841e8bdde345cc1ea9f98e776959e7531cadea0e", - "reference": "841e8bdde345cc1ea9f98e776959e7531cadea0e", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913", + "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913", "shasum": "" }, "require": { @@ -7656,7 +7657,7 @@ "faker", "fixtures" ], - "time": "2020-12-11T10:39:41+00:00" + "time": "2020-12-18T16:50:48+00:00" }, { "name": "filp/whoops", @@ -8078,16 +8079,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.10.3", + "version": "v4.10.4", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984" + "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984", - "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e", + "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e", "shasum": "" }, "require": { @@ -8126,7 +8127,7 @@ "parser", "php" ], - "time": "2020-12-03T17:45:45+00:00" + "time": "2020-12-20T10:01:03+00:00" }, { "name": "nunomaduro/collision", @@ -8463,16 +8464,16 @@ }, { "name": "phpspec/prophecy", - "version": "1.12.1", + "version": "1.12.2", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d" + "reference": "245710e971a030f42e08f4912863805570f23d39" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d", - "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39", + "reference": "245710e971a030f42e08f4912863805570f23d39", "shasum": "" }, "require": { @@ -8484,7 +8485,7 @@ }, "require-dev": { "phpspec/phpspec": "^6.0", - "phpunit/phpunit": "^8.0 || ^9.0 <9.3" + "phpunit/phpunit": "^8.0 || ^9.0" }, "type": "library", "extra": { @@ -8522,7 +8523,7 @@ "spy", "stub" ], - "time": "2020-09-29T09:10:42+00:00" + "time": "2020-12-19T10:15:11+00:00" }, { "name": "phpunit/php-code-coverage", @@ -8999,12 +9000,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "d5961914bf7f90e81af509b81e51450bff419815" + "reference": "a2c04f857299a7119e96448249a9dd5954e099c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/d5961914bf7f90e81af509b81e51450bff419815", - "reference": "d5961914bf7f90e81af509b81e51450bff419815", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/a2c04f857299a7119e96448249a9dd5954e099c1", + "reference": "a2c04f857299a7119e96448249a9dd5954e099c1", "shasum": "" }, "conflict": { @@ -9138,7 +9139,7 @@ "phpmussel/phpmussel": ">=1,<1.6", "phpmyadmin/phpmyadmin": "<4.9.6|>=5,<5.0.3", "phpoffice/phpexcel": "<1.8.2", - "phpoffice/phpspreadsheet": "<1.8", + "phpoffice/phpspreadsheet": "<1.16", "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", "phpwhois/phpwhois": "<=4.2.5", "phpxmlrpc/extras": "<0.6.1", @@ -9161,8 +9162,8 @@ "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11", "sensiolabs/connect": "<4.2.3", "serluck/phpwhois": "<=4.2.6", - "shopware/core": "<=6.3.2", - "shopware/platform": "<=6.3.2", + "shopware/core": "<=6.3.4", + "shopware/platform": "<=6.3.4", "shopware/shopware": "<5.6.9", "silverstripe/admin": ">=1.0.3,<1.0.4|>=1.1,<1.1.1", "silverstripe/assets": ">=1,<1.4.7|>=1.5,<1.5.2", @@ -9308,7 +9309,7 @@ "type": "tidelift" } ], - "time": "2020-12-08T15:02:56+00:00" + "time": "2020-12-31T19:24:22+00:00" }, { "name": "sebastian/cli-parser", @@ -10366,16 +10367,16 @@ }, { "name": "symfony/debug", - "version": "v4.4.17", + "version": "v4.4.18", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "65fe7b49868378319b82da3035fb30801b931c47" + "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/65fe7b49868378319b82da3035fb30801b931c47", - "reference": "65fe7b49868378319b82da3035fb30801b931c47", + "url": "https://api.github.com/repos/symfony/debug/zipball/5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544", + "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544", "shasum": "" }, "require": { @@ -10428,20 +10429,20 @@ "type": "tidelift" } ], - "time": "2020-10-28T20:42:29+00:00" + "time": "2020-12-10T16:34:26+00:00" }, { "name": "symfony/filesystem", - "version": "v5.2.0", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "bb92ba7f38b037e531908590a858a04d85c0e238" + "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/bb92ba7f38b037e531908590a858a04d85c0e238", - "reference": "bb92ba7f38b037e531908590a858a04d85c0e238", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/fa8f8cab6b65e2d99a118e082935344c5ba8c60d", + "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d", "shasum": "" }, "require": { @@ -10487,7 +10488,7 @@ "type": "tidelift" } ], - "time": "2020-11-12T09:58:18+00:00" + "time": "2020-11-30T17:05:38+00:00" }, { "name": "theseer/tokenizer", diff --git a/package-lock.json b/package-lock.json index 5a5c040b..3c951f43 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "linkace", - "version": "1.0.1", + "version": "1.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -2990,9 +2990,9 @@ } }, "csv-parse": { - "version": "4.14.1", - "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.14.1.tgz", - "integrity": "sha512-4wmcO7QbWtDAncGFaBwlWFPhEN4Akr64IbM4zvDwEOFekI8blLc04Nw7XjQjtSNy+3AUAgBgtUa9nWo5Cq89Xg==" + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.14.2.tgz", + "integrity": "sha512-YE2xlTKtM035/94llhgsp9qFQxGi47EkQJ1pZ+mLT/98GpIsbjkMGAb7Rmu9hNxVfYFOLf10hP+rPVqnoccLgw==" }, "cyclist": { "version": "1.0.1", @@ -7723,9 +7723,9 @@ "dev": true }, "sass": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.30.0.tgz", - "integrity": "sha512-26EUhOXRLaUY7+mWuRFqGeGGNmhB1vblpTENO1Z7mAzzIZeVxZr9EZoaY1kyGLFWdSOZxRMAufiN2mkbO6dAlw==", + "version": "1.32.2", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.32.2.tgz", + "integrity": "sha512-u1pUuzqwz3SAgvHSWp1k0mRhX82b2DdlVnP6UIetQPZtYbuJUDaPQhZE12jyjB7vYeOScfz9WPsZJB6Rpk7heA==", "dev": true, "requires": { "chokidar": ">=2.0.0 <4.0.0" @@ -7806,7 +7806,7 @@ "dev": true }, "selectize": { - "version": "github:selectize/selectize.js#99557d7e698a924d0401a43e21eccd2c44a77b8d", + "version": "github:selectize/selectize.js#7769a7eb9efe0d8d7a74d0f087eab2b76341a2ab", "from": "github:selectize/selectize.js#master", "requires": { "jquery-ui": "^1.12.1", diff --git a/package.json b/package.json index dc032dc4..bd437b20 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "linkace", - "version": "1.0.1", + "version": "1.1.0", "description": "A small, selfhosted bookmark manager with advanced features, built with Laravel and Docker", "homepage": "https://github.com/Kovah/LinkAce", "repository": { @@ -16,7 +16,7 @@ "cross-env": "^6.0.3", "laravel-mix": "^5.0.9", "resolve-url-loader": "^3.1.2", - "sass": "^1.30.0", + "sass": "^1.32.2", "sass-loader": "^8.0.2", "vue-template-compiler": "^2.6.12" }, diff --git a/resources/views/actions/settings/partials/user/app-settings/sharing.blade.php b/resources/views/actions/settings/partials/user/app-settings/sharing.blade.php index 4c3dfddf..6ea78fb9 100644 --- a/resources/views/actions/settings/partials/user/app-settings/sharing.blade.php +++ b/resources/views/actions/settings/partials/user/app-settings/sharing.blade.php @@ -15,6 +15,7 @@ class="sharing-checkbox-input" @if(old('share.' . $key) ?: usersettings('share_' . $key)) checked @endif> @endforeach @@ -22,7 +23,7 @@ class="sharing-checkbox-input" @if ($errors->has('timezone')) diff --git a/resources/views/components/icon/ban.blade.php b/resources/views/components/icon/ban.blade.php index 0f47959d..91657fb0 100644 --- a/resources/views/components/icon/ban.blade.php +++ b/resources/views/components/icon/ban.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/bookmark.blade.php b/resources/views/components/icon/bookmark.blade.php index fbaf4006..0ca606fc 100644 --- a/resources/views/components/icon/bookmark.blade.php +++ b/resources/views/components/icon/bookmark.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/500px.blade.php b/resources/views/components/icon/brand/500px.blade.php index 7eb96302..993f3d52 100644 --- a/resources/views/components/icon/brand/500px.blade.php +++ b/resources/views/components/icon/brand/500px.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/amazon.blade.php b/resources/views/components/icon/brand/amazon.blade.php index e38c3096..85ccf359 100644 --- a/resources/views/components/icon/brand/amazon.blade.php +++ b/resources/views/components/icon/brand/amazon.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/app-store-ios.blade.php b/resources/views/components/icon/brand/app-store-ios.blade.php index eab40f52..63626f74 100644 --- a/resources/views/components/icon/brand/app-store-ios.blade.php +++ b/resources/views/components/icon/brand/app-store-ios.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/apple.blade.php b/resources/views/components/icon/brand/apple.blade.php index 50d731f2..31e281fb 100644 --- a/resources/views/components/icon/brand/apple.blade.php +++ b/resources/views/components/icon/brand/apple.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/artstation.blade.php b/resources/views/components/icon/brand/artstation.blade.php index af3f3c0a..e0acb581 100644 --- a/resources/views/components/icon/brand/artstation.blade.php +++ b/resources/views/components/icon/brand/artstation.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/atlassian.blade.php b/resources/views/components/icon/brand/atlassian.blade.php index 89d80ca4..49da7ae8 100644 --- a/resources/views/components/icon/brand/atlassian.blade.php +++ b/resources/views/components/icon/brand/atlassian.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/bandcamp.blade.php b/resources/views/components/icon/brand/bandcamp.blade.php index 189a2a25..50681a37 100644 --- a/resources/views/components/icon/brand/bandcamp.blade.php +++ b/resources/views/components/icon/brand/bandcamp.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/behance.blade.php b/resources/views/components/icon/brand/behance.blade.php index 39a9fb79..984a5d51 100644 --- a/resources/views/components/icon/brand/behance.blade.php +++ b/resources/views/components/icon/brand/behance.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/bitbucket.blade.php b/resources/views/components/icon/brand/bitbucket.blade.php index 34da73d9..e3062d0c 100644 --- a/resources/views/components/icon/brand/bitbucket.blade.php +++ b/resources/views/components/icon/brand/bitbucket.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/bitcoin.blade.php b/resources/views/components/icon/brand/bitcoin.blade.php index 1317e0ff..5b89a77e 100644 --- a/resources/views/components/icon/brand/bitcoin.blade.php +++ b/resources/views/components/icon/brand/bitcoin.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/blogger.blade.php b/resources/views/components/icon/brand/blogger.blade.php index 92dd2b34..a54c68d6 100644 --- a/resources/views/components/icon/brand/blogger.blade.php +++ b/resources/views/components/icon/brand/blogger.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/buffer.blade.php b/resources/views/components/icon/brand/buffer.blade.php index be30095f..e840860a 100644 --- a/resources/views/components/icon/brand/buffer.blade.php +++ b/resources/views/components/icon/brand/buffer.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/chrome.blade.php b/resources/views/components/icon/brand/chrome.blade.php index 1b5536a1..f87e3eaf 100644 --- a/resources/views/components/icon/brand/chrome.blade.php +++ b/resources/views/components/icon/brand/chrome.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 496 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 496 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/codepen.blade.php b/resources/views/components/icon/brand/codepen.blade.php index 7e52c502..35a22822 100644 --- a/resources/views/components/icon/brand/codepen.blade.php +++ b/resources/views/components/icon/brand/codepen.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/dev.blade.php b/resources/views/components/icon/brand/dev.blade.php index 0d2cec42..619b3cf2 100644 --- a/resources/views/components/icon/brand/dev.blade.php +++ b/resources/views/components/icon/brand/dev.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/deviantart.blade.php b/resources/views/components/icon/brand/deviantart.blade.php index a5b09da4..630824a8 100644 --- a/resources/views/components/icon/brand/deviantart.blade.php +++ b/resources/views/components/icon/brand/deviantart.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 320 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 320 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/discord.blade.php b/resources/views/components/icon/brand/discord.blade.php index 9b25761d..d618648b 100644 --- a/resources/views/components/icon/brand/discord.blade.php +++ b/resources/views/components/icon/brand/discord.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/docker.blade.php b/resources/views/components/icon/brand/docker.blade.php index 34ab0627..b268f5a1 100644 --- a/resources/views/components/icon/brand/docker.blade.php +++ b/resources/views/components/icon/brand/docker.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/dribbble.blade.php b/resources/views/components/icon/brand/dribbble.blade.php index 5dbdef73..df7de908 100644 --- a/resources/views/components/icon/brand/dribbble.blade.php +++ b/resources/views/components/icon/brand/dribbble.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/dropbox.blade.php b/resources/views/components/icon/brand/dropbox.blade.php index 0de62cf5..334b6abf 100644 --- a/resources/views/components/icon/brand/dropbox.blade.php +++ b/resources/views/components/icon/brand/dropbox.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 528 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 528 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/ebay.blade.php b/resources/views/components/icon/brand/ebay.blade.php index 8e37ce49..7b9999c8 100644 --- a/resources/views/components/icon/brand/ebay.blade.php +++ b/resources/views/components/icon/brand/ebay.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/etsy.blade.php b/resources/views/components/icon/brand/etsy.blade.php index 08666b76..88c43644 100644 --- a/resources/views/components/icon/brand/etsy.blade.php +++ b/resources/views/components/icon/brand/etsy.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/evernote.blade.php b/resources/views/components/icon/brand/evernote.blade.php index 433520a4..60b24fe1 100644 --- a/resources/views/components/icon/brand/evernote.blade.php +++ b/resources/views/components/icon/brand/evernote.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/facebook.blade.php b/resources/views/components/icon/brand/facebook.blade.php index fdcd4f1a..f85ab988 100644 --- a/resources/views/components/icon/brand/facebook.blade.php +++ b/resources/views/components/icon/brand/facebook.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/firefox.blade.php b/resources/views/components/icon/brand/firefox.blade.php index 901a95bf..db84c2e5 100644 --- a/resources/views/components/icon/brand/firefox.blade.php +++ b/resources/views/components/icon/brand/firefox.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/flickr.blade.php b/resources/views/components/icon/brand/flickr.blade.php index 6266c99c..f65abcd9 100644 --- a/resources/views/components/icon/brand/flickr.blade.php +++ b/resources/views/components/icon/brand/flickr.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/flipboard.blade.php b/resources/views/components/icon/brand/flipboard.blade.php index 6bab7f6f..da5dd3ad 100644 --- a/resources/views/components/icon/brand/flipboard.blade.php +++ b/resources/views/components/icon/brand/flipboard.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/get-pocket.blade.php b/resources/views/components/icon/brand/get-pocket.blade.php index caa9c369..3142a3d3 100644 --- a/resources/views/components/icon/brand/get-pocket.blade.php +++ b/resources/views/components/icon/brand/get-pocket.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/github.blade.php b/resources/views/components/icon/brand/github.blade.php index 35fe598d..72221cfa 100644 --- a/resources/views/components/icon/brand/github.blade.php +++ b/resources/views/components/icon/brand/github.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/gitlab.blade.php b/resources/views/components/icon/brand/gitlab.blade.php index 33a6c779..919ab3f3 100644 --- a/resources/views/components/icon/brand/gitlab.blade.php +++ b/resources/views/components/icon/brand/gitlab.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/gitter.blade.php b/resources/views/components/icon/brand/gitter.blade.php index c859fa52..7ab46890 100644 --- a/resources/views/components/icon/brand/gitter.blade.php +++ b/resources/views/components/icon/brand/gitter.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/google-drive.blade.php b/resources/views/components/icon/brand/google-drive.blade.php index f791ba3f..0fd953aa 100644 --- a/resources/views/components/icon/brand/google-drive.blade.php +++ b/resources/views/components/icon/brand/google-drive.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/google-play.blade.php b/resources/views/components/icon/brand/google-play.blade.php index 462d1477..06f19485 100644 --- a/resources/views/components/icon/brand/google-play.blade.php +++ b/resources/views/components/icon/brand/google-play.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/google.blade.php b/resources/views/components/icon/brand/google.blade.php index 1bc96b05..395137b1 100644 --- a/resources/views/components/icon/brand/google.blade.php +++ b/resources/views/components/icon/brand/google.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 488 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 488 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/hacker-news.blade.php b/resources/views/components/icon/brand/hacker-news.blade.php index b300bf03..caee08b7 100644 --- a/resources/views/components/icon/brand/hacker-news.blade.php +++ b/resources/views/components/icon/brand/hacker-news.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/imdb.blade.php b/resources/views/components/icon/brand/imdb.blade.php index 2d8d943b..b49fa9ba 100644 --- a/resources/views/components/icon/brand/imdb.blade.php +++ b/resources/views/components/icon/brand/imdb.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/instagram.blade.php b/resources/views/components/icon/brand/instagram.blade.php index 4608d0ef..2f71d357 100644 --- a/resources/views/components/icon/brand/instagram.blade.php +++ b/resources/views/components/icon/brand/instagram.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/jsfiddle.blade.php b/resources/views/components/icon/brand/jsfiddle.blade.php index 65dc8d9b..6cea552c 100644 --- a/resources/views/components/icon/brand/jsfiddle.blade.php +++ b/resources/views/components/icon/brand/jsfiddle.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/keybase.blade.php b/resources/views/components/icon/brand/keybase.blade.php index 08a9e1b2..31ac5593 100644 --- a/resources/views/components/icon/brand/keybase.blade.php +++ b/resources/views/components/icon/brand/keybase.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/kickstarter.blade.php b/resources/views/components/icon/brand/kickstarter.blade.php index aeef0906..cada8111 100644 --- a/resources/views/components/icon/brand/kickstarter.blade.php +++ b/resources/views/components/icon/brand/kickstarter.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/lastfm.blade.php b/resources/views/components/icon/brand/lastfm.blade.php index 58b3532f..182b189a 100644 --- a/resources/views/components/icon/brand/lastfm.blade.php +++ b/resources/views/components/icon/brand/lastfm.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/linkedin.blade.php b/resources/views/components/icon/brand/linkedin.blade.php index 34ad696c..10240f70 100644 --- a/resources/views/components/icon/brand/linkedin.blade.php +++ b/resources/views/components/icon/brand/linkedin.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/mastodon.blade.php b/resources/views/components/icon/brand/mastodon.blade.php index dc21d9f0..c5630d0b 100644 --- a/resources/views/components/icon/brand/mastodon.blade.php +++ b/resources/views/components/icon/brand/mastodon.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/medium.blade.php b/resources/views/components/icon/brand/medium.blade.php index 7d166c11..65aefc6b 100644 --- a/resources/views/components/icon/brand/medium.blade.php +++ b/resources/views/components/icon/brand/medium.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/meetup.blade.php b/resources/views/components/icon/brand/meetup.blade.php index 00b32c21..73faffbd 100644 --- a/resources/views/components/icon/brand/meetup.blade.php +++ b/resources/views/components/icon/brand/meetup.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/microsoft.blade.php b/resources/views/components/icon/brand/microsoft.blade.php index 9d36bd6a..fcab712b 100644 --- a/resources/views/components/icon/brand/microsoft.blade.php +++ b/resources/views/components/icon/brand/microsoft.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/mixcloud.blade.php b/resources/views/components/icon/brand/mixcloud.blade.php index b691f008..42dd5db5 100644 --- a/resources/views/components/icon/brand/mixcloud.blade.php +++ b/resources/views/components/icon/brand/mixcloud.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/npm.blade.php b/resources/views/components/icon/brand/npm.blade.php index 0f31dc9f..b771d4be 100644 --- a/resources/views/components/icon/brand/npm.blade.php +++ b/resources/views/components/icon/brand/npm.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/openid.blade.php b/resources/views/components/icon/brand/openid.blade.php index 3129a3b4..e5215064 100644 --- a/resources/views/components/icon/brand/openid.blade.php +++ b/resources/views/components/icon/brand/openid.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/patreon.blade.php b/resources/views/components/icon/brand/patreon.blade.php index 67b9af72..c5b9cef9 100644 --- a/resources/views/components/icon/brand/patreon.blade.php +++ b/resources/views/components/icon/brand/patreon.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/paypal.blade.php b/resources/views/components/icon/brand/paypal.blade.php index a626ae47..8270cc0a 100644 --- a/resources/views/components/icon/brand/paypal.blade.php +++ b/resources/views/components/icon/brand/paypal.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/php.blade.php b/resources/views/components/icon/brand/php.blade.php index e7f259b7..ab5e082c 100644 --- a/resources/views/components/icon/brand/php.blade.php +++ b/resources/views/components/icon/brand/php.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/pinterest.blade.php b/resources/views/components/icon/brand/pinterest.blade.php index 91a37eda..b51d4af5 100644 --- a/resources/views/components/icon/brand/pinterest.blade.php +++ b/resources/views/components/icon/brand/pinterest.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/playstation.blade.php b/resources/views/components/icon/brand/playstation.blade.php index ec294fb7..3886592e 100644 --- a/resources/views/components/icon/brand/playstation.blade.php +++ b/resources/views/components/icon/brand/playstation.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/product-hunt.blade.php b/resources/views/components/icon/brand/product-hunt.blade.php index 02e7e37e..31bcb6e5 100644 --- a/resources/views/components/icon/brand/product-hunt.blade.php +++ b/resources/views/components/icon/brand/product-hunt.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/quora.blade.php b/resources/views/components/icon/brand/quora.blade.php index 2b5f720b..3a938579 100644 --- a/resources/views/components/icon/brand/quora.blade.php +++ b/resources/views/components/icon/brand/quora.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/reddit.blade.php b/resources/views/components/icon/brand/reddit.blade.php index 42d8d16b..1675d161 100644 --- a/resources/views/components/icon/brand/reddit.blade.php +++ b/resources/views/components/icon/brand/reddit.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/researchgate.blade.php b/resources/views/components/icon/brand/researchgate.blade.php index b203acdb..a85f2435 100644 --- a/resources/views/components/icon/brand/researchgate.blade.php +++ b/resources/views/components/icon/brand/researchgate.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/skype.blade.php b/resources/views/components/icon/brand/skype.blade.php index 3f24a5c8..1f8888be 100644 --- a/resources/views/components/icon/brand/skype.blade.php +++ b/resources/views/components/icon/brand/skype.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/slack.blade.php b/resources/views/components/icon/brand/slack.blade.php index 4df58dad..d1c1b14f 100644 --- a/resources/views/components/icon/brand/slack.blade.php +++ b/resources/views/components/icon/brand/slack.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/slideshare.blade.php b/resources/views/components/icon/brand/slideshare.blade.php index 6795638e..2eee1271 100644 --- a/resources/views/components/icon/brand/slideshare.blade.php +++ b/resources/views/components/icon/brand/slideshare.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/sms.blade.php b/resources/views/components/icon/brand/sms.blade.php index a779cdf1..fb6b5319 100644 --- a/resources/views/components/icon/brand/sms.blade.php +++ b/resources/views/components/icon/brand/sms.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/snapchat.blade.php b/resources/views/components/icon/brand/snapchat.blade.php index bbcbf82f..ee34fa91 100644 --- a/resources/views/components/icon/brand/snapchat.blade.php +++ b/resources/views/components/icon/brand/snapchat.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/soundcloud.blade.php b/resources/views/components/icon/brand/soundcloud.blade.php index 5cd975dd..1ca790db 100644 --- a/resources/views/components/icon/brand/soundcloud.blade.php +++ b/resources/views/components/icon/brand/soundcloud.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/spotify.blade.php b/resources/views/components/icon/brand/spotify.blade.php index d7123eae..b8c4154d 100644 --- a/resources/views/components/icon/brand/spotify.blade.php +++ b/resources/views/components/icon/brand/spotify.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 496 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 496 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/stack-exchange.blade.php b/resources/views/components/icon/brand/stack-exchange.blade.php index 55f40008..96a3be81 100644 --- a/resources/views/components/icon/brand/stack-exchange.blade.php +++ b/resources/views/components/icon/brand/stack-exchange.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/stack-overflow.blade.php b/resources/views/components/icon/brand/stack-overflow.blade.php index 4b843121..7c1811e4 100644 --- a/resources/views/components/icon/brand/stack-overflow.blade.php +++ b/resources/views/components/icon/brand/stack-overflow.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/steam.blade.php b/resources/views/components/icon/brand/steam.blade.php index 7f9dc879..4a3fb8ef 100644 --- a/resources/views/components/icon/brand/steam.blade.php +++ b/resources/views/components/icon/brand/steam.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/telegram.blade.php b/resources/views/components/icon/brand/telegram.blade.php index 758abca0..33a860bd 100644 --- a/resources/views/components/icon/brand/telegram.blade.php +++ b/resources/views/components/icon/brand/telegram.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 496 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 496 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/trello.blade.php b/resources/views/components/icon/brand/trello.blade.php index 30b1d129..601dc079 100644 --- a/resources/views/components/icon/brand/trello.blade.php +++ b/resources/views/components/icon/brand/trello.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/tripadvisor.blade.php b/resources/views/components/icon/brand/tripadvisor.blade.php index 41c4243d..9ed8fed0 100644 --- a/resources/views/components/icon/brand/tripadvisor.blade.php +++ b/resources/views/components/icon/brand/tripadvisor.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/tumblr.blade.php b/resources/views/components/icon/brand/tumblr.blade.php index d8de01cd..a377c066 100644 --- a/resources/views/components/icon/brand/tumblr.blade.php +++ b/resources/views/components/icon/brand/tumblr.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/twitch.blade.php b/resources/views/components/icon/brand/twitch.blade.php index 9713c2e9..673027be 100644 --- a/resources/views/components/icon/brand/twitch.blade.php +++ b/resources/views/components/icon/brand/twitch.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/twitter.blade.php b/resources/views/components/icon/brand/twitter.blade.php index a3d2af73..47070f15 100644 --- a/resources/views/components/icon/brand/twitter.blade.php +++ b/resources/views/components/icon/brand/twitter.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/vimeo.blade.php b/resources/views/components/icon/brand/vimeo.blade.php index bdf33018..78d3774d 100644 --- a/resources/views/components/icon/brand/vimeo.blade.php +++ b/resources/views/components/icon/brand/vimeo.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/weibo.blade.php b/resources/views/components/icon/brand/weibo.blade.php index a619eedb..95cd1410 100644 --- a/resources/views/components/icon/brand/weibo.blade.php +++ b/resources/views/components/icon/brand/weibo.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/weixin.blade.php b/resources/views/components/icon/brand/weixin.blade.php index 229ee2bb..2689017f 100644 --- a/resources/views/components/icon/brand/weixin.blade.php +++ b/resources/views/components/icon/brand/weixin.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/whatsapp.blade.php b/resources/views/components/icon/brand/whatsapp.blade.php index 2f540ae4..e7c7216a 100644 --- a/resources/views/components/icon/brand/whatsapp.blade.php +++ b/resources/views/components/icon/brand/whatsapp.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/wikipedia-w.blade.php b/resources/views/components/icon/brand/wikipedia-w.blade.php index 0d8b7f5b..11c0a4ff 100644 --- a/resources/views/components/icon/brand/wikipedia-w.blade.php +++ b/resources/views/components/icon/brand/wikipedia-w.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/wordpress.blade.php b/resources/views/components/icon/brand/wordpress.blade.php index ae5f45ba..b15f1c18 100644 --- a/resources/views/components/icon/brand/wordpress.blade.php +++ b/resources/views/components/icon/brand/wordpress.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/xing.blade.php b/resources/views/components/icon/brand/xing.blade.php index 872c035c..d3760857 100644 --- a/resources/views/components/icon/brand/xing.blade.php +++ b/resources/views/components/icon/brand/xing.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/yelp.blade.php b/resources/views/components/icon/brand/yelp.blade.php index 80f27ee0..f768133d 100644 --- a/resources/views/components/icon/brand/yelp.blade.php +++ b/resources/views/components/icon/brand/yelp.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 384 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/brand/youtube.blade.php b/resources/views/components/icon/brand/youtube.blade.php index 4e975666..522648e8 100644 --- a/resources/views/components/icon/brand/youtube.blade.php +++ b/resources/views/components/icon/brand/youtube.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/caret-down.blade.php b/resources/views/components/icon/caret-down.blade.php index 805b6d18..3b679521 100644 --- a/resources/views/components/icon/caret-down.blade.php +++ b/resources/views/components/icon/caret-down.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 320 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 320 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/check.blade.php b/resources/views/components/icon/check.blade.php index 2d155d3b..420a3594 100644 --- a/resources/views/components/icon/check.blade.php +++ b/resources/views/components/icon/check.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/cog.blade.php b/resources/views/components/icon/cog.blade.php index 22032286..c63070b6 100644 --- a/resources/views/components/icon/cog.blade.php +++ b/resources/views/components/icon/cog.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/edit.blade.php b/resources/views/components/icon/edit.blade.php index 87f79ff9..80a62a63 100644 --- a/resources/views/components/icon/edit.blade.php +++ b/resources/views/components/icon/edit.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/envelope.blade.php b/resources/views/components/icon/envelope.blade.php index 1c47349e..8d564048 100644 --- a/resources/views/components/icon/envelope.blade.php +++ b/resources/views/components/icon/envelope.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/external-link.blade.php b/resources/views/components/icon/external-link.blade.php index d02fc903..955a1fdc 100644 --- a/resources/views/components/icon/external-link.blade.php +++ b/resources/views/components/icon/external-link.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/file-import.blade.php b/resources/views/components/icon/file-import.blade.php index b3e26f59..fd4361b7 100644 --- a/resources/views/components/icon/file-import.blade.php +++ b/resources/views/components/icon/file-import.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/info.blade.php b/resources/views/components/icon/info.blade.php index b2c73c3c..9469ff7a 100644 --- a/resources/views/components/icon/info.blade.php +++ b/resources/views/components/icon/info.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/key.blade.php b/resources/views/components/icon/key.blade.php index 3e5fbaef..7ea4c57e 100644 --- a/resources/views/components/icon/key.blade.php +++ b/resources/views/components/icon/key.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/link.blade.php b/resources/views/components/icon/link.blade.php index d4139494..338a22ee 100644 --- a/resources/views/components/icon/link.blade.php +++ b/resources/views/components/icon/link.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 98 228', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 98 228', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/linkace-icon.blade.php b/resources/views/components/icon/linkace-icon.blade.php index d4139494..338a22ee 100644 --- a/resources/views/components/icon/linkace-icon.blade.php +++ b/resources/views/components/icon/linkace-icon.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 98 228', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 98 228', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/list.blade.php b/resources/views/components/icon/list.blade.php index fd0bf150..848aa30d 100644 --- a/resources/views/components/icon/list.blade.php +++ b/resources/views/components/icon/list.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/lock.blade.php b/resources/views/components/icon/lock.blade.php index a2149a92..ddbb8276 100644 --- a/resources/views/components/icon/lock.blade.php +++ b/resources/views/components/icon/lock.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/plus.blade.php b/resources/views/components/icon/plus.blade.php index 78c7bbec..4c21d95f 100644 --- a/resources/views/components/icon/plus.blade.php +++ b/resources/views/components/icon/plus.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/recycle.blade.php b/resources/views/components/icon/recycle.blade.php index 5071d37e..fe8ad39b 100644 --- a/resources/views/components/icon/recycle.blade.php +++ b/resources/views/components/icon/recycle.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/reply.blade.php b/resources/views/components/icon/reply.blade.php index d0a836fd..81001182 100644 --- a/resources/views/components/icon/reply.blade.php +++ b/resources/views/components/icon/reply.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/save.blade.php b/resources/views/components/icon/save.blade.php index 028bf399..57f0a74d 100644 --- a/resources/views/components/icon/save.blade.php +++ b/resources/views/components/icon/save.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/search.blade.php b/resources/views/components/icon/search.blade.php index 49f0d79c..ba7eec7b 100644 --- a/resources/views/components/icon/search.blade.php +++ b/resources/views/components/icon/search.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/share.blade.php b/resources/views/components/icon/share.blade.php index a8ad2e3b..1b1b37e5 100644 --- a/resources/views/components/icon/share.blade.php +++ b/resources/views/components/icon/share.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/shield.blade.php b/resources/views/components/icon/shield.blade.php index 11849595..67cd0dac 100644 --- a/resources/views/components/icon/shield.blade.php +++ b/resources/views/components/icon/shield.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/sms.blade.php b/resources/views/components/icon/sms.blade.php index a779cdf1..fb6b5319 100644 --- a/resources/views/components/icon/sms.blade.php +++ b/resources/views/components/icon/sms.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/sort-down.blade.php b/resources/views/components/icon/sort-down.blade.php index 5aef4475..4c0211a1 100644 --- a/resources/views/components/icon/sort-down.blade.php +++ b/resources/views/components/icon/sort-down.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 320 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 320 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/sort-up.blade.php b/resources/views/components/icon/sort-up.blade.php index a2fc3197..200bcae7 100644 --- a/resources/views/components/icon/sort-up.blade.php +++ b/resources/views/components/icon/sort-up.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 320 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 320 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/sort.blade.php b/resources/views/components/icon/sort.blade.php index 7ba5c31c..e8cacdaa 100644 --- a/resources/views/components/icon/sort.blade.php +++ b/resources/views/components/icon/sort.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 320 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 320 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/tags.blade.php b/resources/views/components/icon/tags.blade.php index 22bd7c10..36069464 100644 --- a/resources/views/components/icon/tags.blade.php +++ b/resources/views/components/icon/tags.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 640 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/toggle-on.blade.php b/resources/views/components/icon/toggle-on.blade.php index d87a9e48..654a67dd 100644 --- a/resources/views/components/icon/toggle-on.blade.php +++ b/resources/views/components/icon/toggle-on.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 576 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/trash.blade.php b/resources/views/components/icon/trash.blade.php index 274d3f6c..0538084a 100644 --- a/resources/views/components/icon/trash.blade.php +++ b/resources/views/components/icon/trash.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/unlink.blade.php b/resources/views/components/icon/unlink.blade.php index d3d5921a..8fa073f2 100644 --- a/resources/views/components/icon/unlink.blade.php +++ b/resources/views/components/icon/unlink.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/unlock.blade.php b/resources/views/components/icon/unlock.blade.php index f99bda16..ac9d5581 100644 --- a/resources/views/components/icon/unlock.blade.php +++ b/resources/views/components/icon/unlock.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 448 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/components/icon/upload.blade.php b/resources/views/components/icon/upload.blade.php index d95d8fd3..270d97b1 100644 --- a/resources/views/components/icon/upload.blade.php +++ b/resources/views/components/icon/upload.blade.php @@ -1 +1 @@ -merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' =>'http://www.w3.org/2000/svg']) }}> +merge(['class' => 'icon', 'viewBox' =>'0 0 512 512', 'xmlns' => 'http://www.w3.org/2000/svg', 'aria-hidden' => 'true', 'focusable' => 'false']) }}> diff --git a/resources/views/models/links/partials/link-icon.blade.php b/resources/views/models/links/partials/link-icon.blade.php index 0298b9cc..5f08fc11 100644 --- a/resources/views/models/links/partials/link-icon.blade.php +++ b/resources/views/models/links/partials/link-icon.blade.php @@ -1 +1,2 @@ +{{ $title }} diff --git a/resources/views/models/links/partials/share-link.blade.php b/resources/views/models/links/partials/share-link.blade.php index 5e08d960..d5dddbdb 100644 --- a/resources/views/models/links/partials/share-link.blade.php +++ b/resources/views/models/links/partials/share-link.blade.php @@ -1,3 +1,4 @@ + {{ $title }} diff --git a/resources/views/models/links/partials/single-card.blade.php b/resources/views/models/links/partials/single-card.blade.php index 1bb2a7e7..76814db4 100644 --- a/resources/views/models/links/partials/single-card.blade.php +++ b/resources/views/models/links/partials/single-card.blade.php @@ -4,7 +4,10 @@
@if($link->is_private) - + + + @lang('link.private') + @endif {!! $link->getIcon('mr-1') !!} @@ -25,15 +28,18 @@ diff --git a/resources/views/models/links/partials/single-detailed.blade.php b/resources/views/models/links/partials/single-detailed.blade.php index 505a3b85..933a09e1 100644 --- a/resources/views/models/links/partials/single-detailed.blade.php +++ b/resources/views/models/links/partials/single-detailed.blade.php @@ -4,7 +4,10 @@
@if($link->is_private) - + + + @lang('link.private') + @endif {!! $link->getIcon('mr-1') !!} {{ $link->title }} @@ -16,6 +19,7 @@ data-toggle="collapse" data-target="#sharing-{{ $link->id }}" aria-expanded="false" aria-controls="sharing-{{ $link->id }}"> + @lang('sharing.share_link')
diff --git a/resources/views/models/links/partials/single-simple.blade.php b/resources/views/models/links/partials/single-simple.blade.php index 2f6f643b..e4575fa7 100644 --- a/resources/views/models/links/partials/single-simple.blade.php +++ b/resources/views/models/links/partials/single-simple.blade.php @@ -3,7 +3,10 @@
diff --git a/resources/views/models/links/partials/single-table.blade.php b/resources/views/models/links/partials/single-table.blade.php index 486704bc..4c2bf461 100644 --- a/resources/views/models/links/partials/single-table.blade.php +++ b/resources/views/models/links/partials/single-table.blade.php @@ -4,7 +4,10 @@ {{ $link->title }} @if($link->is_private) - + + + @lang('link.private') + @endif @@ -20,10 +23,12 @@