-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IP-234: Install & configure the new version of the cookies consent pl…
…ugin
- Loading branch information
1 parent
60b139c
commit 8964f63
Showing
5 changed files
with
684 additions
and
715 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,88 @@ | ||
{ | ||
"name": "laravel/laravel", | ||
"description": "The Laravel Framework.", | ||
"keywords": [ | ||
"framework", | ||
"laravel" | ||
], | ||
"license": "MIT", | ||
"type": "project", | ||
"require": { | ||
"php": "^8.2.0", | ||
"ext-libxml": "*", | ||
"ext-simplexml": "*", | ||
"ext-zip": "*", | ||
"accentinteractive/laravel-logcleaner": "^1.1", | ||
"awobaz/compoships": "^2.1", | ||
"cocur/slugify": "^4.5.1", | ||
"doctrine/dbal": "^3.0", | ||
"drewm/mailchimp-api": "^2.5", | ||
"google/cloud-translate": "^1.10", | ||
"intervention/image": "^2.4", | ||
"laravel/framework": "^11.19.0", | ||
"laravel/helpers": "^1.1", | ||
"laravel/socialite": "^5.15.1", | ||
"laravel/tinker": "^2.5", | ||
"laravel/ui": "^4.0", | ||
"league/flysystem-aws-s3-v3": "^3.0", | ||
"nunomaduro/collision": "^8.4", | ||
"predis/predis": "^1.1", | ||
"scify/laravel-cookies-consent": "^1.1.3", | ||
"sentry/sentry-laravel": "^4.7.1", | ||
"socialiteproviders/twitter": "^4.1", | ||
"spatie/laravel-newsletter": "^5.2.0", | ||
"spatie/laravel-sitemap": "^7.2.1" | ||
}, | ||
"require-dev": { | ||
"barryvdh/laravel-debugbar": "^3.13", | ||
"barryvdh/laravel-ide-helper": "^3.1.0", | ||
"fakerphp/faker": "^1.14", | ||
"filp/whoops": "~2.0", | ||
"laravel/pint": "^1.17.0", | ||
"mockery/mockery": "~1.0", | ||
"phpunit/phpunit": "^10.0", | ||
"symfony/thanks": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"App\\": "app/", | ||
"Database\\Factories\\": "database/factories/", | ||
"Database\\Seeders\\": "database/seeders/" | ||
}, | ||
"files": [ | ||
"app/Utils/UrlHelpers.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"dont-discover": [] | ||
} | ||
"name": "laravel/laravel", | ||
"description": "The Laravel Framework.", | ||
"keywords": [ | ||
"framework", | ||
"laravel" | ||
], | ||
"license": "MIT", | ||
"type": "project", | ||
"require": { | ||
"php": "^8.2.0", | ||
"ext-libxml": "*", | ||
"ext-simplexml": "*", | ||
"ext-zip": "*", | ||
"accentinteractive/laravel-logcleaner": "^1.1", | ||
"awobaz/compoships": "^2.1", | ||
"cocur/slugify": "^4.5.1", | ||
"doctrine/dbal": "^3.0", | ||
"drewm/mailchimp-api": "^2.5", | ||
"google/cloud-translate": "^1.10", | ||
"intervention/image": "^2.4", | ||
"laravel/framework": "^11.19.0", | ||
"laravel/helpers": "^1.1", | ||
"laravel/socialite": "^5.15.1", | ||
"laravel/tinker": "^2.5", | ||
"laravel/ui": "^4.0", | ||
"league/flysystem-aws-s3-v3": "^3.0", | ||
"nunomaduro/collision": "^8.4", | ||
"predis/predis": "^1.1", | ||
"scify/laravel-cookies-consent": "dev-main", | ||
"sentry/sentry-laravel": "^4.7.1", | ||
"socialiteproviders/twitter": "^4.1", | ||
"spatie/laravel-newsletter": "^5.2.0", | ||
"spatie/laravel-sitemap": "^7.2.1" | ||
}, | ||
"require-dev": { | ||
"barryvdh/laravel-debugbar": "^3.13", | ||
"barryvdh/laravel-ide-helper": "^3.1.0", | ||
"fakerphp/faker": "^1.14", | ||
"filp/whoops": "~2.0", | ||
"laravel/pint": "^1.17.0", | ||
"mockery/mockery": "~1.0", | ||
"phpunit/phpunit": "^10.0", | ||
"symfony/thanks": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"App\\": "app/", | ||
"Database\\Factories\\": "database/factories/", | ||
"Database\\Seeders\\": "database/seeders/" | ||
}, | ||
"scripts": { | ||
"post-root-package-install": [ | ||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
], | ||
"post-create-project-cmd": [ | ||
"@php artisan key:generate" | ||
], | ||
"post-autoload-dump": [ | ||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | ||
"@php artisan package:discover" | ||
] | ||
}, | ||
"config": { | ||
"preferred-install": "dist", | ||
"sort-packages": true, | ||
"optimize-autoloader": true, | ||
"platform-check": false, | ||
"allow-plugins": { | ||
"symfony/thanks": true, | ||
"php-http/discovery": true | ||
} | ||
"files": [ | ||
"app/Utils/UrlHelpers.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"dont-discover": [] | ||
} | ||
}, | ||
"scripts": { | ||
"post-root-package-install": [ | ||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
], | ||
"post-create-project-cmd": [ | ||
"@php artisan key:generate" | ||
], | ||
"post-autoload-dump": [ | ||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | ||
"@php artisan package:discover" | ||
] | ||
}, | ||
"config": { | ||
"preferred-install": "dist", | ||
"sort-packages": true, | ||
"optimize-autoloader": true, | ||
"platform-check": false, | ||
"allow-plugins": { | ||
"symfony/thanks": true, | ||
"php-http/discovery": true | ||
} | ||
} | ||
} |
Oops, something went wrong.