From de2f631051be918ba747d8ad4d37ee62e0db02f5 Mon Sep 17 00:00:00 2001 From: szabomarton Date: Tue, 8 Apr 2025 11:19:40 +0200 Subject: [PATCH] todo --- FullStack_Orai/naptar/.editorconfig | 18 + FullStack_Orai/naptar/.env.example | 65 + FullStack_Orai/naptar/.gitattributes | 11 + FullStack_Orai/naptar/.gitignore | 23 + FullStack_Orai/naptar/README.md | 66 + .../app/Http/Controllers/Controller.php | 8 + FullStack_Orai/naptar/app/Models/User.php | 48 + .../app/Providers/AppServiceProvider.php | 24 + FullStack_Orai/naptar/artisan | 18 + FullStack_Orai/naptar/bootstrap/app.php | 19 + .../naptar/bootstrap/cache/.gitignore | 2 + FullStack_Orai/naptar/bootstrap/providers.php | 5 + FullStack_Orai/naptar/composer.json | 72 + FullStack_Orai/naptar/composer.lock | 8141 +++++++++++++++++ FullStack_Orai/naptar/config/app.php | 126 + FullStack_Orai/naptar/config/auth.php | 115 + FullStack_Orai/naptar/config/cache.php | 108 + FullStack_Orai/naptar/config/database.php | 174 + FullStack_Orai/naptar/config/filesystems.php | 80 + FullStack_Orai/naptar/config/logging.php | 132 + FullStack_Orai/naptar/config/mail.php | 116 + FullStack_Orai/naptar/config/queue.php | 112 + FullStack_Orai/naptar/config/sanctum.php | 83 + FullStack_Orai/naptar/config/services.php | 38 + FullStack_Orai/naptar/config/session.php | 217 + FullStack_Orai/naptar/database/.gitignore | 1 + .../naptar/database/factories/UserFactory.php | 44 + .../0001_01_01_000000_create_users_table.php | 49 + .../0001_01_01_000001_create_cache_table.php | 35 + .../0001_01_01_000002_create_jobs_table.php | 57 + ...04_08_081011_create_felhasznalok_table.php | 29 + ..._08_081608_create_esemenytipusok_table.php | 27 + ...25_04_08_081651_create_esemenyek_table.php | 34 + ...5_04_08_081732_create_resztvevok_table.php | 29 + ...57_create_personal_access_tokens_table.php | 33 + .../database/seeders/DatabaseSeeder.php | 23 + .../database/seeders/EsemenyekSeeder.php | 17 + .../database/seeders/EsemenytipusokSeeder.php | 17 + .../database/seeders/FelhasznalokSeeder.php | 26 + .../database/seeders/ResztvevokSeeder.php | 17 + FullStack_Orai/naptar/package.json | 16 + FullStack_Orai/naptar/phpunit.xml | 33 + FullStack_Orai/naptar/public/.htaccess | 25 + FullStack_Orai/naptar/public/favicon.ico | 0 FullStack_Orai/naptar/public/index.php | 20 + FullStack_Orai/naptar/public/robots.txt | 2 + FullStack_Orai/naptar/resources/css/app.css | 11 + FullStack_Orai/naptar/resources/js/app.js | 1 + .../naptar/resources/js/bootstrap.js | 4 + .../naptar/resources/views/welcome.blade.php | 277 + FullStack_Orai/naptar/routes/api.php | 8 + FullStack_Orai/naptar/routes/console.php | 8 + FullStack_Orai/naptar/routes/web.php | 7 + FullStack_Orai/naptar/storage/app/.gitignore | 4 + .../naptar/storage/app/private/.gitignore | 2 + .../naptar/storage/app/public/.gitignore | 2 + .../naptar/storage/framework/.gitignore | 9 + .../naptar/storage/framework/cache/.gitignore | 3 + .../storage/framework/cache/data/.gitignore | 2 + .../storage/framework/sessions/.gitignore | 2 + .../storage/framework/testing/.gitignore | 2 + .../naptar/storage/framework/views/.gitignore | 2 + FullStack_Orai/naptar/storage/logs/.gitignore | 2 + .../naptar/tests/Feature/ExampleTest.php | 19 + FullStack_Orai/naptar/tests/TestCase.php | 10 + .../naptar/tests/Unit/ExampleTest.php | 16 + FullStack_Orai/naptar/vite.config.js | 13 + FullStack_Orai/Órai feladat.pdf | Bin 0 -> 111026 bytes 68 files changed, 10759 insertions(+) create mode 100644 FullStack_Orai/naptar/.editorconfig create mode 100644 FullStack_Orai/naptar/.env.example create mode 100644 FullStack_Orai/naptar/.gitattributes create mode 100644 FullStack_Orai/naptar/.gitignore create mode 100644 FullStack_Orai/naptar/README.md create mode 100644 FullStack_Orai/naptar/app/Http/Controllers/Controller.php create mode 100644 FullStack_Orai/naptar/app/Models/User.php create mode 100644 FullStack_Orai/naptar/app/Providers/AppServiceProvider.php create mode 100644 FullStack_Orai/naptar/artisan create mode 100644 FullStack_Orai/naptar/bootstrap/app.php create mode 100644 FullStack_Orai/naptar/bootstrap/cache/.gitignore create mode 100644 FullStack_Orai/naptar/bootstrap/providers.php create mode 100644 FullStack_Orai/naptar/composer.json create mode 100644 FullStack_Orai/naptar/composer.lock create mode 100644 FullStack_Orai/naptar/config/app.php create mode 100644 FullStack_Orai/naptar/config/auth.php create mode 100644 FullStack_Orai/naptar/config/cache.php create mode 100644 FullStack_Orai/naptar/config/database.php create mode 100644 FullStack_Orai/naptar/config/filesystems.php create mode 100644 FullStack_Orai/naptar/config/logging.php create mode 100644 FullStack_Orai/naptar/config/mail.php create mode 100644 FullStack_Orai/naptar/config/queue.php create mode 100644 FullStack_Orai/naptar/config/sanctum.php create mode 100644 FullStack_Orai/naptar/config/services.php create mode 100644 FullStack_Orai/naptar/config/session.php create mode 100644 FullStack_Orai/naptar/database/.gitignore create mode 100644 FullStack_Orai/naptar/database/factories/UserFactory.php create mode 100644 FullStack_Orai/naptar/database/migrations/0001_01_01_000000_create_users_table.php create mode 100644 FullStack_Orai/naptar/database/migrations/0001_01_01_000001_create_cache_table.php create mode 100644 FullStack_Orai/naptar/database/migrations/0001_01_01_000002_create_jobs_table.php create mode 100644 FullStack_Orai/naptar/database/migrations/2025_04_08_081011_create_felhasznalok_table.php create mode 100644 FullStack_Orai/naptar/database/migrations/2025_04_08_081608_create_esemenytipusok_table.php create mode 100644 FullStack_Orai/naptar/database/migrations/2025_04_08_081651_create_esemenyek_table.php create mode 100644 FullStack_Orai/naptar/database/migrations/2025_04_08_081732_create_resztvevok_table.php create mode 100644 FullStack_Orai/naptar/database/migrations/2025_04_08_090657_create_personal_access_tokens_table.php create mode 100644 FullStack_Orai/naptar/database/seeders/DatabaseSeeder.php create mode 100644 FullStack_Orai/naptar/database/seeders/EsemenyekSeeder.php create mode 100644 FullStack_Orai/naptar/database/seeders/EsemenytipusokSeeder.php create mode 100644 FullStack_Orai/naptar/database/seeders/FelhasznalokSeeder.php create mode 100644 FullStack_Orai/naptar/database/seeders/ResztvevokSeeder.php create mode 100644 FullStack_Orai/naptar/package.json create mode 100644 FullStack_Orai/naptar/phpunit.xml create mode 100644 FullStack_Orai/naptar/public/.htaccess create mode 100644 FullStack_Orai/naptar/public/favicon.ico create mode 100644 FullStack_Orai/naptar/public/index.php create mode 100644 FullStack_Orai/naptar/public/robots.txt create mode 100644 FullStack_Orai/naptar/resources/css/app.css create mode 100644 FullStack_Orai/naptar/resources/js/app.js create mode 100644 FullStack_Orai/naptar/resources/js/bootstrap.js create mode 100644 FullStack_Orai/naptar/resources/views/welcome.blade.php create mode 100644 FullStack_Orai/naptar/routes/api.php create mode 100644 FullStack_Orai/naptar/routes/console.php create mode 100644 FullStack_Orai/naptar/routes/web.php create mode 100644 FullStack_Orai/naptar/storage/app/.gitignore create mode 100644 FullStack_Orai/naptar/storage/app/private/.gitignore create mode 100644 FullStack_Orai/naptar/storage/app/public/.gitignore create mode 100644 FullStack_Orai/naptar/storage/framework/.gitignore create mode 100644 FullStack_Orai/naptar/storage/framework/cache/.gitignore create mode 100644 FullStack_Orai/naptar/storage/framework/cache/data/.gitignore create mode 100644 FullStack_Orai/naptar/storage/framework/sessions/.gitignore create mode 100644 FullStack_Orai/naptar/storage/framework/testing/.gitignore create mode 100644 FullStack_Orai/naptar/storage/framework/views/.gitignore create mode 100644 FullStack_Orai/naptar/storage/logs/.gitignore create mode 100644 FullStack_Orai/naptar/tests/Feature/ExampleTest.php create mode 100644 FullStack_Orai/naptar/tests/TestCase.php create mode 100644 FullStack_Orai/naptar/tests/Unit/ExampleTest.php create mode 100644 FullStack_Orai/naptar/vite.config.js create mode 100644 FullStack_Orai/Órai feladat.pdf diff --git a/FullStack_Orai/naptar/.editorconfig b/FullStack_Orai/naptar/.editorconfig new file mode 100644 index 0000000..8f0de65 --- /dev/null +++ b/FullStack_Orai/naptar/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[docker-compose.yml] +indent_size = 4 diff --git a/FullStack_Orai/naptar/.env.example b/FullStack_Orai/naptar/.env.example new file mode 100644 index 0000000..35db1dd --- /dev/null +++ b/FullStack_Orai/naptar/.env.example @@ -0,0 +1,65 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +APP_LOCALE=en +APP_FALLBACK_LOCALE=en +APP_FAKER_LOCALE=en_US + +APP_MAINTENANCE_DRIVER=file +# APP_MAINTENANCE_STORE=database + +PHP_CLI_SERVER_WORKERS=4 + +BCRYPT_ROUNDS=12 + +LOG_CHANNEL=stack +LOG_STACK=single +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=sqlite +# DB_HOST=127.0.0.1 +# DB_PORT=3306 +# DB_DATABASE=laravel +# DB_USERNAME=root +# DB_PASSWORD= + +SESSION_DRIVER=database +SESSION_LIFETIME=120 +SESSION_ENCRYPT=false +SESSION_PATH=/ +SESSION_DOMAIN=null + +BROADCAST_CONNECTION=log +FILESYSTEM_DISK=local +QUEUE_CONNECTION=database + +CACHE_STORE=database +# CACHE_PREFIX= + +MEMCACHED_HOST=127.0.0.1 + +REDIS_CLIENT=phpredis +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=log +MAIL_SCHEME=null +MAIL_HOST=127.0.0.1 +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +VITE_APP_NAME="${APP_NAME}" diff --git a/FullStack_Orai/naptar/.gitattributes b/FullStack_Orai/naptar/.gitattributes new file mode 100644 index 0000000..fcb21d3 --- /dev/null +++ b/FullStack_Orai/naptar/.gitattributes @@ -0,0 +1,11 @@ +* text=auto eol=lf + +*.blade.php diff=html +*.css diff=css +*.html diff=html +*.md diff=markdown +*.php diff=php + +/.github export-ignore +CHANGELOG.md export-ignore +.styleci.yml export-ignore diff --git a/FullStack_Orai/naptar/.gitignore b/FullStack_Orai/naptar/.gitignore new file mode 100644 index 0000000..c7cf1fa --- /dev/null +++ b/FullStack_Orai/naptar/.gitignore @@ -0,0 +1,23 @@ +/.phpunit.cache +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/storage/pail +/vendor +.env +.env.backup +.env.production +.phpactor.json +.phpunit.result.cache +Homestead.json +Homestead.yaml +npm-debug.log +yarn-error.log +/auth.json +/.fleet +/.idea +/.nova +/.vscode +/.zed diff --git a/FullStack_Orai/naptar/README.md b/FullStack_Orai/naptar/README.md new file mode 100644 index 0000000..1a4c26b --- /dev/null +++ b/FullStack_Orai/naptar/README.md @@ -0,0 +1,66 @@ +

Laravel Logo

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com). + +### Premium Partners + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[WebReinvent](https://webreinvent.com/)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[DevSquad](https://devsquad.com/hire-laravel-developers)** +- **[Jump24](https://jump24.co.uk)** +- **[Redberry](https://redberry.international/laravel/)** +- **[Active Logic](https://activelogic.com)** +- **[byte5](https://byte5.de)** +- **[OP.GG](https://op.gg)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/FullStack_Orai/naptar/app/Http/Controllers/Controller.php b/FullStack_Orai/naptar/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..8677cd5 --- /dev/null +++ b/FullStack_Orai/naptar/app/Http/Controllers/Controller.php @@ -0,0 +1,8 @@ + */ + use HasFactory, Notifiable; + + /** + * The attributes that are mass assignable. + * + * @var list + */ + protected $fillable = [ + 'name', + 'email', + 'password', + ]; + + /** + * The attributes that should be hidden for serialization. + * + * @var list + */ + protected $hidden = [ + 'password', + 'remember_token', + ]; + + /** + * Get the attributes that should be cast. + * + * @return array + */ + protected function casts(): array + { + return [ + 'email_verified_at' => 'datetime', + 'password' => 'hashed', + ]; + } +} diff --git a/FullStack_Orai/naptar/app/Providers/AppServiceProvider.php b/FullStack_Orai/naptar/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..452e6b6 --- /dev/null +++ b/FullStack_Orai/naptar/app/Providers/AppServiceProvider.php @@ -0,0 +1,24 @@ +handleCommand(new ArgvInput); + +exit($status); diff --git a/FullStack_Orai/naptar/bootstrap/app.php b/FullStack_Orai/naptar/bootstrap/app.php new file mode 100644 index 0000000..d654276 --- /dev/null +++ b/FullStack_Orai/naptar/bootstrap/app.php @@ -0,0 +1,19 @@ +withRouting( + web: __DIR__.'/../routes/web.php', + api: __DIR__.'/../routes/api.php', + commands: __DIR__.'/../routes/console.php', + health: '/up', + ) + ->withMiddleware(function (Middleware $middleware) { + // + }) + ->withExceptions(function (Exceptions $exceptions) { + // + })->create(); diff --git a/FullStack_Orai/naptar/bootstrap/cache/.gitignore b/FullStack_Orai/naptar/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/FullStack_Orai/naptar/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/FullStack_Orai/naptar/bootstrap/providers.php b/FullStack_Orai/naptar/bootstrap/providers.php new file mode 100644 index 0000000..38b258d --- /dev/null +++ b/FullStack_Orai/naptar/bootstrap/providers.php @@ -0,0 +1,5 @@ +=5.0.0" + }, + "require-dev": { + "doctrine/dbal": "^4.0.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2024-02-09T16:56:22+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.3", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + }, + "time": "2024-07-08T12:26:09+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.10" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2024-02-18T20:23:39+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "8c784d071debd117328803d86b2097615b457500" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500", + "reference": "8c784d071debd117328803d86b2097615b457500", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2024-10-09T13:47:03+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" + }, + "require-dev": { + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2025-03-06T22:45:56+00:00" + }, + { + "name": "fruitcake/php-cors", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0", + "symfony/http-foundation": "^4.4|^5.4|^6|^7" + }, + "require-dev": { + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barryvdh", + "email": "barryvdh@gmail.com" + } + ], + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", + "keywords": [ + "cors", + "laravel", + "symfony" + ], + "support": { + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2023-10-12T05:21:21+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.3", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:45:45+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.9.3", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", + "guzzlehttp/psr7": "^2.7.0", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "guzzle/client-integration-tests": "3.0.2", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2025-03-27T13:37:11+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c", + "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.2.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2025-03-27T13:27:01+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.7.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.7.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2025-03-27T12:30:47+00:00" + }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.4", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "30e286560c137526eccd4ce21b2de477ab0676d2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2", + "reference": "30e286560c137526eccd4ce21b2de477ab0676d2", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.4" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2025-02-03T10:55:03+00:00" + }, + { + "name": "laravel/framework", + "version": "v12.7.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "a4ba76e06fe6dd02312359f8184ab259900a7780" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/a4ba76e06fe6dd02312359f8184ab259900a7780", + "reference": "a4ba76e06fe6dd02312359f8184ab259900a7780", + "shasum": "" + }, + "require": { + "brick/math": "^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.4", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.3", + "guzzlehttp/guzzle": "^7.8.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.3.0", + "laravel/serializable-closure": "^1.3|^2.0", + "league/commonmark": "^2.6", + "league/flysystem": "^3.25.1", + "league/flysystem-local": "^3.25.1", + "league/uri": "^7.5.1", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^3.8.4", + "nunomaduro/termwind": "^2.0", + "php": "^8.2", + "psr/container": "^1.1.1|^2.0.1", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "ramsey/uuid": "^4.7", + "symfony/console": "^7.2.0", + "symfony/error-handler": "^7.2.0", + "symfony/finder": "^7.2.0", + "symfony/http-foundation": "^7.2.0", + "symfony/http-kernel": "^7.2.0", + "symfony/mailer": "^7.2.0", + "symfony/mime": "^7.2.0", + "symfony/polyfill-php83": "^1.31", + "symfony/process": "^7.2.0", + "symfony/routing": "^7.2.0", + "symfony/uid": "^7.2.0", + "symfony/var-dumper": "^7.2.0", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.6.1", + "voku/portable-ascii": "^2.0.2" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "psr/log-implementation": "1.0|2.0|3.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/concurrency": "self.version", + "illuminate/conditionable": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version", + "spatie/once": "*" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.322.9", + "ext-gmp": "*", + "fakerphp/faker": "^1.24", + "guzzlehttp/promises": "^2.0.3", + "guzzlehttp/psr7": "^2.4", + "laravel/pint": "^1.18", + "league/flysystem-aws-s3-v3": "^3.25.1", + "league/flysystem-ftp": "^3.25.1", + "league/flysystem-path-prefixing": "^3.25.1", + "league/flysystem-read-only": "^3.25.1", + "league/flysystem-sftp-v3": "^3.25.1", + "mockery/mockery": "^1.6.10", + "orchestra/testbench-core": "^10.0.0", + "pda/pheanstalk": "^5.0.6", + "php-http/discovery": "^1.15", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1", + "predis/predis": "^2.3", + "resend/resend-php": "^0.10.0", + "symfony/cache": "^7.2.0", + "symfony/http-client": "^7.2.0", + "symfony/psr-http-message-bridge": "^7.2.0", + "symfony/translation": "^7.2.0" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).", + "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).", + "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).", + "mockery/mockery": "Required to use mocking (^1.6).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).", + "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).", + "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).", + "predis/predis": "Required to use the predis connector (^2.3).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^7.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "12.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/functions.php", + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Log/functions.php", + "src/Illuminate/Support/functions.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2025-04-03T18:00:49+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.3.5", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1", + "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "ext-mbstring": "*", + "php": "^8.1", + "symfony/console": "^6.2|^7.0" + }, + "conflict": { + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" + }, + "require-dev": { + "illuminate/collections": "^10.0|^11.0|^12.0", + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3|^3.4", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-mockery": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Add beautiful and user-friendly forms to your command-line applications.", + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.3.5" + }, + "time": "2025-02-11T13:34:40+00:00" + }, + { + "name": "laravel/sanctum", + "version": "v4.0.8", + "source": { + "type": "git", + "url": "https://github.com/laravel/sanctum.git", + "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/ec1dd9ddb2ab370f79dfe724a101856e0963f43c", + "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/console": "^11.0|^12.0", + "illuminate/contracts": "^11.0|^12.0", + "illuminate/database": "^11.0|^12.0", + "illuminate/support": "^11.0|^12.0", + "php": "^8.2", + "symfony/console": "^7.0" + }, + "require-dev": { + "mockery/mockery": "^1.6", + "orchestra/testbench": "^9.0|^10.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sanctum\\SanctumServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sanctum\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", + "keywords": [ + "auth", + "laravel", + "sanctum" + ], + "support": { + "issues": "https://github.com/laravel/sanctum/issues", + "source": "https://github.com/laravel/sanctum" + }, + "time": "2025-01-26T19:34:36+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v2.0.4", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b352cf0534aa1ae6b4d825d1e762e35d43f8a841", + "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "illuminate/support": "^10.0|^11.0|^12.0", + "nesbot/carbon": "^2.67|^3.0", + "pestphp/pest": "^2.36|^3.0", + "phpstan/phpstan": "^2.0", + "symfony/var-dumper": "^6.2.0|^7.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2025-03-19T13:51:03+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.10.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3", + "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)." + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.10.1" + }, + "time": "2025-01-27T14:24:01+00:00" + }, + { + "name": "league/commonmark", + "version": "2.6.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "d990688c91cedfb69753ffc2512727ec646df2ad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d990688c91cedfb69753ffc2512727ec646df2ad", + "reference": "d990688c91cedfb69753ffc2512727ec646df2ad", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.31.1", + "commonmark/commonmark.js": "0.31.1", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 | ^7.0", + "symfony/process": "^5.4 | ^6.0 | ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2024-12-29T14:10:59+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "league/flysystem", + "version": "3.29.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.295.10", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-mongodb": "^1.3", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", + "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.29.1" + }, + "time": "2024-10-08T08:58:34+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.29.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0" + }, + "time": "2024-08-09T21:24:39+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.16.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2024-09-21T08:32:55+00:00" + }, + { + "name": "league/uri", + "version": "7.5.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri.git", + "reference": "81fb5145d2644324614cc532b28efd0215bda430" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430", + "reference": "81fb5145d2644324614cc532b28efd0215bda430", + "shasum": "" + }, + "require": { + "league/uri-interfaces": "^7.5", + "php": "^8.1" + }, + "conflict": { + "league/uri-schemes": "^1.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-fileinfo": "to create Data URI from file contennts", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain", + "league/uri-components": "Needed to easily manipulate URI objects components", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "URI manipulation library", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "middleware", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "uri-template", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri/tree/7.5.1" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2024-12-08T08:40:02+00:00" + }, + { + "name": "league/uri-interfaces", + "version": "7.5.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri-interfaces.git", + "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742", + "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "php": "^8.1", + "psr/http-factory": "^1", + "psr/http-message": "^1.1 || ^2.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "Common interfaces and classes for URI representation and interaction", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2024-12-08T08:18:47+00:00" + }, + { + "name": "monolog/monolog", + "version": "3.9.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6", + "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "php-console/php-console": "^3.1.8", + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^10.5.17 || ^11.0.7", + "predis/predis": "^1.1 || ^2", + "rollbar/rollbar": "^4.0", + "ruflin/elastica": "^7 || ^8", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.9.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2025-03-24T10:02:05+00:00" + }, + { + "name": "nesbot/carbon", + "version": "3.9.0", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon.git", + "reference": "6d16a8a015166fe54e22c042e0805c5363aef50d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/6d16a8a015166fe54e22c042e0805c5363aef50d", + "reference": "6d16a8a015166fe54e22c042e0805c5363aef50d", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "<100.0", + "ext-json": "*", + "php": "^8.1", + "psr/clock": "^1.0", + "symfony/clock": "^6.3 || ^7.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^3.6.3 || ^4.0", + "doctrine/orm": "^2.15.2 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.57.2", + "kylekatarnls/multi-tester": "^2.5.3", + "ondrejmirtes/better-reflection": "^6.25.0.4", + "phpmd/phpmd": "^2.15.0", + "phpstan/extension-installer": "^1.3.1", + "phpstan/phpstan": "^1.11.2", + "phpunit/phpunit": "^10.5.20", + "squizlabs/php_codesniffer": "^3.9.0" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev", + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "docs": "https://carbon.nesbot.com/docs", + "issues": "https://github.com/CarbonPHP/carbon/issues", + "source": "https://github.com/CarbonPHP/carbon" + }, + "funding": [ + { + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "type": "tidelift" + } + ], + "time": "2025-03-27T12:57:33+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.2", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0", + "php": "8.1 - 8.4" + }, + "require-dev": { + "nette/tester": "^2.5.2", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.2" + }, + "time": "2024-10-06T23:10:23+00:00" + }, + { + "name": "nette/utils", + "version": "v4.0.6", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "ce708655043c7050eb050df361c5e313cf708309" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/ce708655043c7050eb050df361c5e313cf708309", + "reference": "ce708655043c7050eb050df361c5e313cf708309", + "shasum": "" + }, + "require": { + "php": "8.0 - 8.4" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.0.6" + }, + "time": "2025-03-30T21:06:30+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.4.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "447a020a1f875a434d62f2a401f53b82a396e494" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494", + "reference": "447a020a1f875a434d62f2a401f53b82a396e494", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0" + }, + "time": "2024-12-30T11:07:19+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda", + "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.2", + "symfony/console": "^7.1.8" + }, + "require-dev": { + "illuminate/console": "^11.33.2", + "laravel/pint": "^1.18.2", + "mockery/mockery": "^1.6.12", + "pestphp/pest": "^2.36.0", + "phpstan/phpstan": "^1.12.11", + "phpstan/phpstan-strict-rules": "^1.6.1", + "symfony/var-dumper": "^7.1.8", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Its like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2024-11-21T10:39:51+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.3", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:41:07+00:00" + }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "time": "2023-09-23T14:17:50+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory" + }, + "time": "2024-04-15T12:06:14+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.12.8", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625", + "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": false, + "forward-command": false + }, + "branch-alias": { + "dev-main": "0.12.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.8" + }, + "time": "2025-03-16T03:05:19+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "2.1.1", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.45", + "fakerphp/faker": "^1.24", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^2.1", + "mockery/mockery": "^1.6", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.4", + "phpspec/prophecy-phpunit": "^2.3", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^10.5", + "ramsey/coding-standard": "^2.3", + "ramsey/conventional-commits": "^1.6", + "roave/security-advisories": "dev-latest" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.1.1" + }, + "time": "2025-03-22T05:38:12+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.7.6", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", + "ext-json": "*", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^8.5 || ^9", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.7.6" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2024-04-27T21:32:50+00:00" + }, + { + "name": "symfony/clock", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/clock": "^1.0", + "symfony/polyfill-php83": "^1.28" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/now.php" + ], + "psr-4": { + "Symfony\\Component\\Clock\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Decouples applications from the system clock", + "homepage": "https://symfony.com", + "keywords": [ + "clock", + "psr20", + "time" + ], + "support": { + "source": "https://github.com/symfony/clock/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/console", + "version": "v7.2.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "e51498ea18570c062e7df29d05a7003585b19b88" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/e51498ea18570c062e7df29d05a7003585b19b88", + "reference": "e51498ea18570c062e7df29d05a7003585b19b88", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^6.4|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v7.2.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-03-12T08:11:12+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2", + "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v7.2.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b", + "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^6.4|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v7.2.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-03-03T07:12:39+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1", + "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.2.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "87a71856f2f56e4100373e92529eed3171695cfb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb", + "reference": "87a71856f2f56e4100373e92529eed3171695cfb", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.2.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-12-30T19:00:17+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v7.2.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "371272aeb6286f8135e028ca535f8e4d6f114126" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/371272aeb6286f8135e028ca535f8e4d6f114126", + "reference": "371272aeb6286f8135e028ca535f8e4d6f114126", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "doctrine/dbal": "<3.6", + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" + }, + "require-dev": { + "doctrine/dbal": "^3.6|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.4.12|^7.1.5", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", + "symfony/rate-limiter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v7.2.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-03-25T15:54:33+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v7.2.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "b1fe91bc1fa454a806d3f98db4ba826eb9941a54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b1fe91bc1fa454a806d3f98db4ba826eb9941a54", + "reference": "b1fe91bc1fa454a806d3f98db4ba826eb9941a54", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<6.4", + "symfony/cache": "<6.4", + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<6.4", + "symfony/form": "<6.4", + "symfony/http-client": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<6.4", + "symfony/messenger": "<6.4", + "symfony/translation": "<6.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<6.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.4", + "twig/twig": "<3.12" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^6.4|^7.0", + "symfony/clock": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/css-selector": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^6.4|^7.0", + "symfony/property-access": "^7.1", + "symfony/routing": "^6.4|^7.0", + "symfony/serializer": "^7.1", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/translation": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^6.4|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0", + "symfony/var-exporter": "^6.4|^7.0", + "twig/twig": "^3.12" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v7.2.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-03-28T13:32:50+00:00" + }, + { + "name": "symfony/mailer", + "version": "v7.2.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3", + "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.2", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/mime": "^7.2", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/messenger": "<6.4", + "symfony/mime": "<6.4", + "symfony/twig-bridge": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/twig-bridge": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Helps sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v7.2.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-27T11:08:17+00:00" + }, + { + "name": "symfony/mime", + "version": "v7.2.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "87ca22046b78c3feaff04b337f33b38510fd686b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/87ca22046b78c3feaff04b337f33b38510fd686b", + "reference": "87ca22046b78c3feaff04b337f33b38510fd686b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<6.4", + "symfony/serializer": "<6.4.3|>7.0,<7.0.3" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/property-access": "^6.4|^7.0", + "symfony/property-info": "^6.4|^7.0", + "symfony/serializer": "^6.4.3|^7.0.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v7.2.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-02-19T08:51:20+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "symfony/polyfill-intl-normalizer": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php83\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Uuid\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for uuid functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/process", + "version": "v7.2.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "87b7c93e57df9d8e39a093d32587702380ff045d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/87b7c93e57df9d8e39a093d32587702380ff045d", + "reference": "87b7c93e57df9d8e39a093d32587702380ff045d", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v7.2.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-03-13T12:21:46+00:00" + }, + { + "name": "symfony/routing", + "version": "v7.2.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996", + "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/yaml": "<6.4" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v7.2.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-17T10:56:55+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/string", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82", + "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/emoji": "^7.1", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-11-13T13:31:26+00:00" + }, + { + "name": "symfony/translation", + "version": "v7.2.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "283856e6981286cc0d800b53bd5703e8e363f05a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/283856e6981286cc0d800b53bd5703e8e363f05a", + "reference": "283856e6981286cc0d800b53bd5703e8e363f05a", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<6.4", + "symfony/yaml": "<6.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.18|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v7.2.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-02-13T10:27:23+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", + "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/uid", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "2d294d0c48df244c71c105a169d0190bfb080426" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426", + "reference": "2d294d0c48df244c71c105a169d0190bfb080426", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v7.2.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "82b478c69745d8878eb60f9a049a4d584996f73a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a", + "reference": "82b478c69745d8878eb60f9a049a4d584996f73a", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/uid": "^6.4|^7.0", + "twig/twig": "^3.12" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v7.2.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-17T11:39:41+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "0d72ac1c00084279c1816675284073c5a337c20d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d", + "reference": "0d72ac1c00084279c1816675284073c5a337c20d", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^7.4 || ^8.0", + "symfony/css-selector": "^5.4 || ^6.0 || ^7.0" + }, + "require-dev": { + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^8.5.21 || ^9.5.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0" + }, + "time": "2024-12-21T16:25:41+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.6.1", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.3", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-filter": "*", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "5.6-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:52:34+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "https://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.3" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2024-11-21T01:49:47+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [ + { + "name": "fakerphp/faker", + "version": "v1.24.1", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" + }, + "time": "2024-11-21T13:46:39+00:00" + }, + { + "name": "filp/whoops", + "version": "2.18.0", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e", + "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.18.0" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2025-03-15T12:00:00+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, + { + "name": "laravel/pail", + "version": "v1.2.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/pail.git", + "reference": "f31f4980f52be17c4667f3eafe034e6826787db2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pail/zipball/f31f4980f52be17c4667f3eafe034e6826787db2", + "reference": "f31f4980f52be17c4667f3eafe034e6826787db2", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/console": "^10.24|^11.0|^12.0", + "illuminate/contracts": "^10.24|^11.0|^12.0", + "illuminate/log": "^10.24|^11.0|^12.0", + "illuminate/process": "^10.24|^11.0|^12.0", + "illuminate/support": "^10.24|^11.0|^12.0", + "nunomaduro/termwind": "^1.15|^2.0", + "php": "^8.2", + "symfony/console": "^6.0|^7.0" + }, + "require-dev": { + "laravel/framework": "^10.24|^11.0|^12.0", + "laravel/pint": "^1.13", + "orchestra/testbench-core": "^8.13|^9.0|^10.0", + "pestphp/pest": "^2.20|^3.0", + "pestphp/pest-plugin-type-coverage": "^2.3|^3.0", + "phpstan/phpstan": "^1.10", + "symfony/var-dumper": "^6.3|^7.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Pail\\PailServiceProvider" + ] + }, + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Pail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Easily delve into your Laravel application's log files directly from the command line.", + "homepage": "https://github.com/laravel/pail", + "keywords": [ + "laravel", + "logs", + "php", + "tail" + ], + "support": { + "issues": "https://github.com/laravel/pail/issues", + "source": "https://github.com/laravel/pail" + }, + "time": "2025-01-28T15:15:15+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.21.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "370772e7d9e9da087678a0edf2b11b6960e40558" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/370772e7d9e9da087678a0edf2b11b6960e40558", + "reference": "370772e7d9e9da087678a0edf2b11b6960e40558", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.72.0", + "illuminate/view": "^11.44.2", + "larastan/larastan": "^3.2.0", + "laravel-zero/framework": "^11.36.1", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^2.3", + "pestphp/pest": "^2.36.0" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2025-03-14T22:31:42+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.41.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec", + "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec", + "shasum": "" + }, + "require": { + "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0", + "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0", + "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0", + "php": "^8.0", + "symfony/console": "^6.0|^7.0", + "symfony/yaml": "^6.0|^7.0" + }, + "require-dev": { + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", + "phpstan/phpstan": "^1.10" + }, + "bin": [ + "bin/sail" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sail\\SailServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Docker files for running a basic Laravel application.", + "keywords": [ + "docker", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/sail/issues", + "source": "https://github.com/laravel/sail" + }, + "time": "2025-01-24T15:45:36+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.6.12", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": ">=7.3" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.6.17", + "symplify/easy-coding-standard": "^12.1.14" + }, + "type": "library", + "autoload": { + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "https://github.com/padraic", + "role": "Author" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "docs": "https://docs.mockery.io/", + "issues": "https://github.com/mockery/mockery/issues", + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" + }, + "time": "2024-05-16T03:13:13+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.13.0", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "024473a478be9df5fdaca2c793f2232fe788e414" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414", + "reference": "024473a478be9df5fdaca2c793f2232fe788e414", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2025-02-12T12:17:51+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v8.8.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/4cf9f3b47afff38b139fb79ce54fc71799022ce8", + "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.18.0", + "nunomaduro/termwind": "^2.3.0", + "php": "^8.2.0", + "symfony/console": "^7.2.5" + }, + "conflict": { + "laravel/framework": "<11.44.2 || >=13.0.0", + "phpunit/phpunit": "<11.5.15 || >=13.0.0" + }, + "require-dev": { + "brianium/paratest": "^7.8.3", + "larastan/larastan": "^3.2", + "laravel/framework": "^11.44.2 || ^12.6", + "laravel/pint": "^1.21.2", + "laravel/sail": "^1.41.0", + "laravel/sanctum": "^4.0.8", + "laravel/tinker": "^2.10.1", + "orchestra/testbench-core": "^9.12.0 || ^10.1", + "pestphp/pest": "^3.8.0", + "sebastian/environment": "^7.2.0 || ^8.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + }, + "branch-alias": { + "dev-8.x": "8.x-dev" + } + }, + "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "dev", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2025-04-03T14:33:09+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "11.0.9", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7", + "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.4.0", + "php": ">=8.2", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-text-template": "^4.0.1", + "sebastian/code-unit-reverse-lookup": "^4.0.1", + "sebastian/complexity": "^4.0.1", + "sebastian/environment": "^7.2.0", + "sebastian/lines-of-code": "^3.0.1", + "sebastian/version": "^5.0.2", + "theseer/tokenizer": "^1.2.3" + }, + "require-dev": { + "phpunit/phpunit": "^11.5.2" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-25T13:26:39+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "5.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6", + "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-08-27T05:02:59+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "5.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "security": "https://github.com/sebastianbergmann/php-invoker/security/policy", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:07:44+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:08:43+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "7.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "security": "https://github.com/sebastianbergmann/php-timer/security/policy", + "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:09:35+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "11.5.17", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "fd2e863a2995cdfd864fb514b5e0b28b09895b5c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fd2e863a2995cdfd864fb514b5e0b28b09895b5c", + "reference": "fd2e863a2995cdfd864fb514b5e0b28b09895b5c", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.13.0", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.2", + "phpunit/php-code-coverage": "^11.0.9", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-invoker": "^5.0.1", + "phpunit/php-text-template": "^4.0.1", + "phpunit/php-timer": "^7.0.1", + "sebastian/cli-parser": "^3.0.2", + "sebastian/code-unit": "^3.0.3", + "sebastian/comparator": "^6.3.1", + "sebastian/diff": "^6.0.2", + "sebastian/environment": "^7.2.0", + "sebastian/exporter": "^6.3.0", + "sebastian/global-state": "^7.0.2", + "sebastian/object-enumerator": "^6.0.1", + "sebastian/type": "^5.1.2", + "sebastian/version": "^5.0.2", + "staabm/side-effects-detector": "^1.0.5" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.5-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.17" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2025-04-08T07:59:11+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:41:36+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64", + "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "security": "https://github.com/sebastianbergmann/code-unit/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-03-19T07:56:08+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:45:54+00:00" + }, + { + "name": "sebastian/comparator", + "version": "6.3.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959", + "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/diff": "^6.0", + "sebastian/exporter": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.4" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-03-07T06:57:01+00:00" + }, + { + "name": "sebastian/complexity", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:49:50+00:00" + }, + { + "name": "sebastian/diff", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:53:05+00:00" + }, + { + "name": "sebastian/environment", + "version": "7.2.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", + "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:54:44+00:00" + }, + { + "name": "sebastian/exporter", + "version": "6.3.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3", + "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-12-05T09:17:50+00:00" + }, + { + "name": "sebastian/global-state", + "version": "7.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:57:36+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:58:38+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:00:13+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "security": "https://github.com/sebastianbergmann/object-reflector/security/policy", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:01:32+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "694d156164372abbd149a4b85ccda2e4670c0e16" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16", + "reference": "694d156164372abbd149a4b85ccda2e4670c0e16", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:10:34+00:00" + }, + { + "name": "sebastian/type", + "version": "5.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e", + "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/tree/5.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-03-18T13:35:50+00:00" + }, + { + "name": "sebastian/version", + "version": "5.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/5.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-10-09T05:16:32+00:00" + }, + { + "name": "staabm/side-effects-detector", + "version": "1.0.5", + "source": { + "type": "git", + "url": "https://github.com/staabm/side-effects-detector.git", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.6", + "phpunit/phpunit": "^9.6.21", + "symfony/var-dumper": "^5.4.43", + "tomasvotruba/type-coverage": "1.0.0", + "tomasvotruba/unused-public": "1.0.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A static analysis tool to detect side effects in PHP code", + "keywords": [ + "static analysis" + ], + "support": { + "issues": "https://github.com/staabm/side-effects-detector/issues", + "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5" + }, + "funding": [ + { + "url": "https://github.com/staabm", + "type": "github" + } + ], + "time": "2024-10-20T05:08:20+00:00" + }, + { + "name": "symfony/yaml", + "version": "v7.2.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912", + "reference": "4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v7.2.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-03-03T07:12:39+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:36:25+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": {}, + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^8.2" + }, + "platform-dev": {}, + "plugin-api-version": "2.6.0" +} diff --git a/FullStack_Orai/naptar/config/app.php b/FullStack_Orai/naptar/config/app.php new file mode 100644 index 0000000..324b513 --- /dev/null +++ b/FullStack_Orai/naptar/config/app.php @@ -0,0 +1,126 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | the application so that it's available within Artisan commands. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. The timezone + | is set to "UTC" by default as it is suitable for most use cases. + | + */ + + 'timezone' => 'UTC', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by Laravel's translation / localization methods. This option can be + | set to any locale for which you plan to have translation strings. + | + */ + + 'locale' => env('APP_LOCALE', 'en'), + + 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), + + 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is utilized by Laravel's encryption services and should be set + | to a random, 32 character string to ensure that all encrypted values + | are secure. You should do this prior to deploying the application. + | + */ + + 'cipher' => 'AES-256-CBC', + + 'key' => env('APP_KEY'), + + 'previous_keys' => [ + ...array_filter( + explode(',', env('APP_PREVIOUS_KEYS', '')) + ), + ], + + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), + 'store' => env('APP_MAINTENANCE_STORE', 'database'), + ], + +]; diff --git a/FullStack_Orai/naptar/config/auth.php b/FullStack_Orai/naptar/config/auth.php new file mode 100644 index 0000000..0ba5d5d --- /dev/null +++ b/FullStack_Orai/naptar/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => env('AUTH_GUARD', 'web'), + 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'), + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | which utilizes session storage plus the Eloquent user provider. + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | If you have multiple user tables or models you may configure multiple + | providers to represent the model / table. These providers may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => env('AUTH_MODEL', App\Models\User::class), + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | These configuration options specify the behavior of Laravel's password + | reset functionality, including the table utilized for token storage + | and the user provider that is invoked to actually retrieve users. + | + | The expiry time is the number of minutes that each reset token will be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + | The throttle setting is the number of seconds a user must wait before + | generating more password reset tokens. This prevents the user from + | quickly generating a very large amount of password reset tokens. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | window expires and users are asked to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800), + +]; diff --git a/FullStack_Orai/naptar/config/cache.php b/FullStack_Orai/naptar/config/cache.php new file mode 100644 index 0000000..925f7d2 --- /dev/null +++ b/FullStack_Orai/naptar/config/cache.php @@ -0,0 +1,108 @@ + env('CACHE_STORE', 'database'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "array", "database", "file", "memcached", + | "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'connection' => env('DB_CACHE_CONNECTION'), + 'table' => env('DB_CACHE_TABLE', 'cache'), + 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), + 'lock_table' => env('DB_CACHE_LOCK_TABLE'), + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + 'lock_path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), + 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing the APC, database, memcached, Redis, and DynamoDB cache + | stores, there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + +]; diff --git a/FullStack_Orai/naptar/config/database.php b/FullStack_Orai/naptar/config/database.php new file mode 100644 index 0000000..8910562 --- /dev/null +++ b/FullStack_Orai/naptar/config/database.php @@ -0,0 +1,174 @@ + env('DB_CONNECTION', 'sqlite'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Below are all of the database connections defined for your application. + | An example configuration is provided for each database system which + | is supported by Laravel. You're free to add / remove connections. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DB_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + 'busy_timeout' => null, + 'journal_mode' => null, + 'synchronous' => null, + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'mariadb' => [ + 'driver' => 'mariadb', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + // 'encrypt' => env('DB_ENCRYPT', 'yes'), + // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run on the database. + | + */ + + 'migrations' => [ + 'table' => 'migrations', + 'update_date_on_publish' => true, + ], + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as Memcached. You may define your connection settings here. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + 'persistent' => env('REDIS_PERSISTENT', false), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/FullStack_Orai/naptar/config/filesystems.php b/FullStack_Orai/naptar/config/filesystems.php new file mode 100644 index 0000000..3d671bd --- /dev/null +++ b/FullStack_Orai/naptar/config/filesystems.php @@ -0,0 +1,80 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Below you may configure as many filesystem disks as necessary, and you + | may even configure multiple disks for the same driver. Examples for + | most supported storage drivers are configured here for reference. + | + | Supported drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app/private'), + 'serve' => true, + 'throw' => false, + 'report' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + 'throw' => false, + 'report' => false, + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, + 'report' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/FullStack_Orai/naptar/config/logging.php b/FullStack_Orai/naptar/config/logging.php new file mode 100644 index 0000000..1345f6f --- /dev/null +++ b/FullStack_Orai/naptar/config/logging.php @@ -0,0 +1,132 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => [ + 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + 'trace' => env('LOG_DEPRECATIONS_TRACE', false), + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Laravel + | utilizes the Monolog PHP logging library, which includes a variety + | of powerful log handlers and formatters that you're free to use. + | + | Available drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", "custom", "stack" + | + */ + + 'channels' => [ + + 'stack' => [ + 'driver' => 'stack', + 'channels' => explode(',', env('LOG_STACK', 'single')), + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => env('LOG_DAILY_DAYS', 14), + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'), + 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'), + 'level' => env('LOG_LEVEL', 'critical'), + 'replace_placeholders' => true, + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'handler_with' => [ + 'stream' => 'php://stderr', + ], + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER), + 'replace_placeholders' => true, + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + + ], + +]; diff --git a/FullStack_Orai/naptar/config/mail.php b/FullStack_Orai/naptar/config/mail.php new file mode 100644 index 0000000..756305b --- /dev/null +++ b/FullStack_Orai/naptar/config/mail.php @@ -0,0 +1,116 @@ + env('MAIL_MAILER', 'log'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers that can be used + | when delivering an email. You may specify which one you're using for + | your mailers below. You may also add additional mailers if needed. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "resend", "log", "array", + | "failover", "roundrobin" + | + */ + + 'mailers' => [ + + 'smtp' => [ + 'transport' => 'smtp', + 'scheme' => env('MAIL_SCHEME'), + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', '127.0.0.1'), + 'port' => env('MAIL_PORT', 2525), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'resend' => [ + 'transport' => 'resend', + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + + 'failover' => [ + 'transport' => 'failover', + 'mailers' => [ + 'smtp', + 'log', + ], + ], + + 'roundrobin' => [ + 'transport' => 'roundrobin', + 'mailers' => [ + 'ses', + 'postmark', + ], + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all emails sent by your application to be sent from + | the same address. Here you may specify a name and address that is + | used globally for all emails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + +]; diff --git a/FullStack_Orai/naptar/config/queue.php b/FullStack_Orai/naptar/config/queue.php new file mode 100644 index 0000000..116bd8d --- /dev/null +++ b/FullStack_Orai/naptar/config/queue.php @@ -0,0 +1,112 @@ + env('QUEUE_CONNECTION', 'database'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection options for every queue backend + | used by your application. An example configuration is provided for + | each backend supported by Laravel. You're also free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'connection' => env('DB_QUEUE_CONNECTION'), + 'table' => env('DB_QUEUE_TABLE', 'jobs'), + 'queue' => env('DB_QUEUE', 'default'), + 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90), + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), + 'queue' => env('BEANSTALKD_QUEUE', 'default'), + 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90), + 'block_for' => null, + 'after_commit' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control how and where failed jobs are stored. Laravel ships with + | support for storing failed jobs in a simple file or in a database. + | + | Supported drivers: "database-uuids", "dynamodb", "file", "null" + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/FullStack_Orai/naptar/config/sanctum.php b/FullStack_Orai/naptar/config/sanctum.php new file mode 100644 index 0000000..764a82f --- /dev/null +++ b/FullStack_Orai/naptar/config/sanctum.php @@ -0,0 +1,83 @@ + explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( + '%s%s', + 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', + Sanctum::currentApplicationUrlWithPort() + ))), + + /* + |-------------------------------------------------------------------------- + | Sanctum Guards + |-------------------------------------------------------------------------- + | + | This array contains the authentication guards that will be checked when + | Sanctum is trying to authenticate a request. If none of these guards + | are able to authenticate the request, Sanctum will use the bearer + | token that's present on an incoming request for authentication. + | + */ + + 'guard' => ['web'], + + /* + |-------------------------------------------------------------------------- + | Expiration Minutes + |-------------------------------------------------------------------------- + | + | This value controls the number of minutes until an issued token will be + | considered expired. This will override any values set in the token's + | "expires_at" attribute, but first-party sessions are not affected. + | + */ + + 'expiration' => null, + + /* + |-------------------------------------------------------------------------- + | Token Prefix + |-------------------------------------------------------------------------- + | + | Sanctum can prefix new tokens in order to take advantage of numerous + | security scanning initiatives maintained by open source platforms + | that notify developers if they commit tokens into repositories. + | + | See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning + | + */ + + 'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''), + + /* + |-------------------------------------------------------------------------- + | Sanctum Middleware + |-------------------------------------------------------------------------- + | + | When authenticating your first-party SPA with Sanctum you may need to + | customize some of the middleware Sanctum uses while processing the + | request. You may change the middleware listed below as required. + | + */ + + 'middleware' => [ + 'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class, + 'encrypt_cookies' => Illuminate\Cookie\Middleware\EncryptCookies::class, + 'validate_csrf_token' => Illuminate\Foundation\Http\Middleware\ValidateCsrfToken::class, + ], + +]; diff --git a/FullStack_Orai/naptar/config/services.php b/FullStack_Orai/naptar/config/services.php new file mode 100644 index 0000000..27a3617 --- /dev/null +++ b/FullStack_Orai/naptar/config/services.php @@ -0,0 +1,38 @@ + [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + + 'resend' => [ + 'key' => env('RESEND_KEY'), + ], + + 'slack' => [ + 'notifications' => [ + 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), + 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), + ], + ], + +]; diff --git a/FullStack_Orai/naptar/config/session.php b/FullStack_Orai/naptar/config/session.php new file mode 100644 index 0000000..ba0aa60 --- /dev/null +++ b/FullStack_Orai/naptar/config/session.php @@ -0,0 +1,217 @@ + env('SESSION_DRIVER', 'database'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to expire immediately when the browser is closed then you may + | indicate that via the expire_on_close configuration option. + | + */ + + 'lifetime' => (int) env('SESSION_LIFETIME', 120), + + 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false), + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it's stored. All encryption is performed + | automatically by Laravel and you may use the session like normal. + | + */ + + 'encrypt' => env('SESSION_ENCRYPT', false), + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When utilizing the "file" session driver, the session files are placed + | on disk. The default storage location is defined here; however, you + | are free to provide another location where they should be stored. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION'), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table to + | be used to store sessions. Of course, a sensible default is defined + | for you; however, you're welcome to change this to another table. + | + */ + + 'table' => env('SESSION_TABLE', 'sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | When using one of the framework's cache driven session backends, you may + | define the cache store which should be used to store the session data + | between requests. This must match one of your defined cache stores. + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the session cookie that is created by + | the framework. Typically, you should not need to change this value + | since doing so does not grant a meaningful security improvement. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application, but you're free to change this when necessary. + | + */ + + 'path' => env('SESSION_PATH', '/'), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | This value determines the domain and subdomains the session cookie is + | available to. By default, the cookie will be available to the root + | domain and all subdomains. Typically, this shouldn't be changed. + | + */ + + 'domain' => env('SESSION_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. It's unlikely you should disable this option. + | + */ + + 'http_only' => env('SESSION_HTTP_ONLY', true), + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" to permit secure cross-site requests. + | + | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => env('SESSION_SAME_SITE', 'lax'), + + /* + |-------------------------------------------------------------------------- + | Partitioned Cookies + |-------------------------------------------------------------------------- + | + | Setting this value to true will tie the cookie to the top-level site for + | a cross-site context. Partitioned cookies are accepted by the browser + | when flagged "secure" and the Same-Site attribute is set to "none". + | + */ + + 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), + +]; diff --git a/FullStack_Orai/naptar/database/.gitignore b/FullStack_Orai/naptar/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/FullStack_Orai/naptar/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/FullStack_Orai/naptar/database/factories/UserFactory.php b/FullStack_Orai/naptar/database/factories/UserFactory.php new file mode 100644 index 0000000..584104c --- /dev/null +++ b/FullStack_Orai/naptar/database/factories/UserFactory.php @@ -0,0 +1,44 @@ + + */ +class UserFactory extends Factory +{ + /** + * The current password being used by the factory. + */ + protected static ?string $password; + + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + 'name' => fake()->name(), + 'email' => fake()->unique()->safeEmail(), + 'email_verified_at' => now(), + 'password' => static::$password ??= Hash::make('password'), + 'remember_token' => Str::random(10), + ]; + } + + /** + * Indicate that the model's email address should be unverified. + */ + public function unverified(): static + { + return $this->state(fn (array $attributes) => [ + 'email_verified_at' => null, + ]); + } +} diff --git a/FullStack_Orai/naptar/database/migrations/0001_01_01_000000_create_users_table.php b/FullStack_Orai/naptar/database/migrations/0001_01_01_000000_create_users_table.php new file mode 100644 index 0000000..05fb5d9 --- /dev/null +++ b/FullStack_Orai/naptar/database/migrations/0001_01_01_000000_create_users_table.php @@ -0,0 +1,49 @@ +id(); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password'); + $table->rememberToken(); + $table->timestamps(); + }); + + Schema::create('password_reset_tokens', function (Blueprint $table) { + $table->string('email')->primary(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + + Schema::create('sessions', function (Blueprint $table) { + $table->string('id')->primary(); + $table->foreignId('user_id')->nullable()->index(); + $table->string('ip_address', 45)->nullable(); + $table->text('user_agent')->nullable(); + $table->longText('payload'); + $table->integer('last_activity')->index(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + Schema::dropIfExists('password_reset_tokens'); + Schema::dropIfExists('sessions'); + } +}; diff --git a/FullStack_Orai/naptar/database/migrations/0001_01_01_000001_create_cache_table.php b/FullStack_Orai/naptar/database/migrations/0001_01_01_000001_create_cache_table.php new file mode 100644 index 0000000..b9c106b --- /dev/null +++ b/FullStack_Orai/naptar/database/migrations/0001_01_01_000001_create_cache_table.php @@ -0,0 +1,35 @@ +string('key')->primary(); + $table->mediumText('value'); + $table->integer('expiration'); + }); + + Schema::create('cache_locks', function (Blueprint $table) { + $table->string('key')->primary(); + $table->string('owner'); + $table->integer('expiration'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('cache'); + Schema::dropIfExists('cache_locks'); + } +}; diff --git a/FullStack_Orai/naptar/database/migrations/0001_01_01_000002_create_jobs_table.php b/FullStack_Orai/naptar/database/migrations/0001_01_01_000002_create_jobs_table.php new file mode 100644 index 0000000..425e705 --- /dev/null +++ b/FullStack_Orai/naptar/database/migrations/0001_01_01_000002_create_jobs_table.php @@ -0,0 +1,57 @@ +id(); + $table->string('queue')->index(); + $table->longText('payload'); + $table->unsignedTinyInteger('attempts'); + $table->unsignedInteger('reserved_at')->nullable(); + $table->unsignedInteger('available_at'); + $table->unsignedInteger('created_at'); + }); + + Schema::create('job_batches', function (Blueprint $table) { + $table->string('id')->primary(); + $table->string('name'); + $table->integer('total_jobs'); + $table->integer('pending_jobs'); + $table->integer('failed_jobs'); + $table->longText('failed_job_ids'); + $table->mediumText('options')->nullable(); + $table->integer('cancelled_at')->nullable(); + $table->integer('created_at'); + $table->integer('finished_at')->nullable(); + }); + + Schema::create('failed_jobs', function (Blueprint $table) { + $table->id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('jobs'); + Schema::dropIfExists('job_batches'); + Schema::dropIfExists('failed_jobs'); + } +}; diff --git a/FullStack_Orai/naptar/database/migrations/2025_04_08_081011_create_felhasznalok_table.php b/FullStack_Orai/naptar/database/migrations/2025_04_08_081011_create_felhasznalok_table.php new file mode 100644 index 0000000..cccf289 --- /dev/null +++ b/FullStack_Orai/naptar/database/migrations/2025_04_08_081011_create_felhasznalok_table.php @@ -0,0 +1,29 @@ +id(); + $table->string('nev', 50)->unique(); + $table->string('email', 100)->unique(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('felhasznalok'); + } +}; diff --git a/FullStack_Orai/naptar/database/migrations/2025_04_08_081608_create_esemenytipusok_table.php b/FullStack_Orai/naptar/database/migrations/2025_04_08_081608_create_esemenytipusok_table.php new file mode 100644 index 0000000..5e3094b --- /dev/null +++ b/FullStack_Orai/naptar/database/migrations/2025_04_08_081608_create_esemenytipusok_table.php @@ -0,0 +1,27 @@ +id(); + $table->string('megnevezes', 100)->unique(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('esemenytipusok'); + } +}; diff --git a/FullStack_Orai/naptar/database/migrations/2025_04_08_081651_create_esemenyek_table.php b/FullStack_Orai/naptar/database/migrations/2025_04_08_081651_create_esemenyek_table.php new file mode 100644 index 0000000..bbfd19b --- /dev/null +++ b/FullStack_Orai/naptar/database/migrations/2025_04_08_081651_create_esemenyek_table.php @@ -0,0 +1,34 @@ +id(); + $table->foreignId('szervezo')->constrained('felhasznalok'); + $table->string('cim', 255); + $table->text('leiras', 65535); + $table->dateTime('kezdes'); + $table->dateTime('befejezes'); + $table->string('helyszin', 255); + $table->foreignId('tipus_id')->constrained('esemenytipusok'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('esemenyek'); + } +}; diff --git a/FullStack_Orai/naptar/database/migrations/2025_04_08_081732_create_resztvevok_table.php b/FullStack_Orai/naptar/database/migrations/2025_04_08_081732_create_resztvevok_table.php new file mode 100644 index 0000000..ecad298 --- /dev/null +++ b/FullStack_Orai/naptar/database/migrations/2025_04_08_081732_create_resztvevok_table.php @@ -0,0 +1,29 @@ +id(); + $table->foreignId('esemeny_id')->constrained('esemenyek'); + $table->foreignId('felhasznalo_id')->constrained('felhasznalok'); + $table->boolean('elfogadva_statusz')->default(false); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('resztvevok'); + } +}; diff --git a/FullStack_Orai/naptar/database/migrations/2025_04_08_090657_create_personal_access_tokens_table.php b/FullStack_Orai/naptar/database/migrations/2025_04_08_090657_create_personal_access_tokens_table.php new file mode 100644 index 0000000..e828ad8 --- /dev/null +++ b/FullStack_Orai/naptar/database/migrations/2025_04_08_090657_create_personal_access_tokens_table.php @@ -0,0 +1,33 @@ +id(); + $table->morphs('tokenable'); + $table->string('name'); + $table->string('token', 64)->unique(); + $table->text('abilities')->nullable(); + $table->timestamp('last_used_at')->nullable(); + $table->timestamp('expires_at')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('personal_access_tokens'); + } +}; diff --git a/FullStack_Orai/naptar/database/seeders/DatabaseSeeder.php b/FullStack_Orai/naptar/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..d01a0ef --- /dev/null +++ b/FullStack_Orai/naptar/database/seeders/DatabaseSeeder.php @@ -0,0 +1,23 @@ +create(); + + User::factory()->create([ + 'name' => 'Test User', + 'email' => 'test@example.com', + ]); + } +} diff --git a/FullStack_Orai/naptar/database/seeders/EsemenyekSeeder.php b/FullStack_Orai/naptar/database/seeders/EsemenyekSeeder.php new file mode 100644 index 0000000..acc9c92 --- /dev/null +++ b/FullStack_Orai/naptar/database/seeders/EsemenyekSeeder.php @@ -0,0 +1,17 @@ +insert([ + [ + "nev" => "Péda Péter", + "email" => "pelda.peter@email.hu" + ], + + ["nev" => "Metódus Mária", + "email" => "metodus.maria@email.hu"] + ]); + } +} diff --git a/FullStack_Orai/naptar/database/seeders/ResztvevokSeeder.php b/FullStack_Orai/naptar/database/seeders/ResztvevokSeeder.php new file mode 100644 index 0000000..32f4104 --- /dev/null +++ b/FullStack_Orai/naptar/database/seeders/ResztvevokSeeder.php @@ -0,0 +1,17 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + + diff --git a/FullStack_Orai/naptar/public/.htaccess b/FullStack_Orai/naptar/public/.htaccess new file mode 100644 index 0000000..b574a59 --- /dev/null +++ b/FullStack_Orai/naptar/public/.htaccess @@ -0,0 +1,25 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Handle X-XSRF-Token Header + RewriteCond %{HTTP:x-xsrf-token} . + RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/FullStack_Orai/naptar/public/favicon.ico b/FullStack_Orai/naptar/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/FullStack_Orai/naptar/public/index.php b/FullStack_Orai/naptar/public/index.php new file mode 100644 index 0000000..ee8f07e --- /dev/null +++ b/FullStack_Orai/naptar/public/index.php @@ -0,0 +1,20 @@ +handleRequest(Request::capture()); diff --git a/FullStack_Orai/naptar/public/robots.txt b/FullStack_Orai/naptar/public/robots.txt new file mode 100644 index 0000000..eb05362 --- /dev/null +++ b/FullStack_Orai/naptar/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/FullStack_Orai/naptar/resources/css/app.css b/FullStack_Orai/naptar/resources/css/app.css new file mode 100644 index 0000000..3e6abea --- /dev/null +++ b/FullStack_Orai/naptar/resources/css/app.css @@ -0,0 +1,11 @@ +@import 'tailwindcss'; + +@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php'; +@source '../../storage/framework/views/*.php'; +@source '../**/*.blade.php'; +@source '../**/*.js'; + +@theme { + --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', + 'Segoe UI Symbol', 'Noto Color Emoji'; +} diff --git a/FullStack_Orai/naptar/resources/js/app.js b/FullStack_Orai/naptar/resources/js/app.js new file mode 100644 index 0000000..e59d6a0 --- /dev/null +++ b/FullStack_Orai/naptar/resources/js/app.js @@ -0,0 +1 @@ +import './bootstrap'; diff --git a/FullStack_Orai/naptar/resources/js/bootstrap.js b/FullStack_Orai/naptar/resources/js/bootstrap.js new file mode 100644 index 0000000..5f1390b --- /dev/null +++ b/FullStack_Orai/naptar/resources/js/bootstrap.js @@ -0,0 +1,4 @@ +import axios from 'axios'; +window.axios = axios; + +window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; diff --git a/FullStack_Orai/naptar/resources/views/welcome.blade.php b/FullStack_Orai/naptar/resources/views/welcome.blade.php new file mode 100644 index 0000000..c893b80 --- /dev/null +++ b/FullStack_Orai/naptar/resources/views/welcome.blade.php @@ -0,0 +1,277 @@ + + + + + + + Laravel + + + + + + + @if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot'))) + @vite(['resources/css/app.css', 'resources/js/app.js']) + @else + + @endif + + +
+ @if (Route::has('login')) + + @endif +
+
+
+
+

Let's get started

+

Laravel has an incredibly rich ecosystem.
We suggest starting with the following.

+ + +
+
+ {{-- Laravel Logo --}} + + + + + + + + + + + {{-- Light Mode 12 SVG --}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{-- Dark Mode 12 SVG --}} + +
+
+
+
+ + @if (Route::has('login')) + + @endif + + diff --git a/FullStack_Orai/naptar/routes/api.php b/FullStack_Orai/naptar/routes/api.php new file mode 100644 index 0000000..ccc387f --- /dev/null +++ b/FullStack_Orai/naptar/routes/api.php @@ -0,0 +1,8 @@ +user(); +})->middleware('auth:sanctum'); diff --git a/FullStack_Orai/naptar/routes/console.php b/FullStack_Orai/naptar/routes/console.php new file mode 100644 index 0000000..3c9adf1 --- /dev/null +++ b/FullStack_Orai/naptar/routes/console.php @@ -0,0 +1,8 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); diff --git a/FullStack_Orai/naptar/routes/web.php b/FullStack_Orai/naptar/routes/web.php new file mode 100644 index 0000000..86a06c5 --- /dev/null +++ b/FullStack_Orai/naptar/routes/web.php @@ -0,0 +1,7 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/FullStack_Orai/naptar/tests/TestCase.php b/FullStack_Orai/naptar/tests/TestCase.php new file mode 100644 index 0000000..fe1ffc2 --- /dev/null +++ b/FullStack_Orai/naptar/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} diff --git a/FullStack_Orai/naptar/vite.config.js b/FullStack_Orai/naptar/vite.config.js new file mode 100644 index 0000000..29fbfe9 --- /dev/null +++ b/FullStack_Orai/naptar/vite.config.js @@ -0,0 +1,13 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; +import tailwindcss from '@tailwindcss/vite'; + +export default defineConfig({ + plugins: [ + laravel({ + input: ['resources/css/app.css', 'resources/js/app.js'], + refresh: true, + }), + tailwindcss(), + ], +}); diff --git a/FullStack_Orai/Órai feladat.pdf b/FullStack_Orai/Órai feladat.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b4fc485be3eab31ab47f790cb09cfacb67d3a1ef GIT binary patch literal 111026 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

5r%j_O_z^7;RHekh#TmZig*ilN*fb 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�t`L_}yZ6P@ex@tr{;Rx}a`0;AU!$~>x| za?BkUsLuGW4RX^;4)uBEW~wBFBv|{ReP#}EO0_wA@+vHYc_TR@WF#cuQVBa#7w`5X z)}f79e62Uzp{A|_)*7Dymt|sAm2Vs0>Ua8|~=p)-$>*=BTizc<~) z)!o>sFK>_53+^v2RIFrZW~#F7mY`9~nm$Sqzwp5^Jg4UQ`VPlRpi(8PGt^U-KJ0?R zYwtS9K#-lJ%Lf?Z^5J-zjE#5$Bj46%UWS3Py?M#>CBjFanNTvR(v{{g3GnE%A(SQ= z%}A&_&m{IK*lX5=nJvp3UtRkruby^^&6M7S?9}Obub*YXYZ1`kyhD=CSU(vudC$2!aG?4_7>@1}wpi#+=U^~n9R@;$>RBvwh_rP6%l{_wRPv+Vf`(M2?=n!8ypXi7{m__Dhsa?b-1uAj`(_CzpIi z#S*-dK{y#o7vP664^fhR8)pDzARags2G>Bx-keiwsx$t6Z>HmL|Ik75e(xyjls>Al zyR^i-8P8RsA8RYLQOsy*>@t!srER9-c-?!Vq}{*skdQ11dpsll0!a|L5*4XgPug0q z%kfCBMs37b_WgTrfqZeChPQBL^b%Rz85ukAh#w^LHDt{5#!F7i>m}d&2$_Ach@Fhc z@~?;0ccQ-i6rX_SxLd^s=P#b27h(6{ALqc}Q$eYFHC;px z>pcaqz29?Tur4SJ&YKbmcT9Ybt-=rj=rA}*eUC- z*f?hB7DSLbu?KL2kWhmtj*j**fLfszO4g&>83U99BEYAg)4Q{eHLNL(@AN0U`u6v; z`E56~DnG{)gi4hJ$MOIn=~gWPxfVj)k$VB-805FNVfb6>NJShvo|_NwRNj|c@gd2F zAHFbO_)NS*e@&K$?k;a_KlT`M5C38UNi#-3Z3N?kFDn7@^ki^=vxicUZJCDF#~=eX zz*yWi!$%I{vD02eKg2nNiFr&181gKOfj<022Fu29V$`vYn07?oA3NEP$H{3L<@MEh zi(SAuulUfbOaQP<@Z@+BH=i^@978+N0XpkQ}5_pQ!CYRM*{FHGB zakYb*2*N2kn;rXykGdiDw>Y@jabT#s$Pg4FG**d&1b%i~G6M&pzBWH6Jq|w(wj12U zwXwHG-@f5HA50=XgI~j4!bD<)J)1*w&|&%wEM!M89Pd&jnI+fH_D+qP}nPIjCf+qP}nc5<`d-#O>I_p3Tp_m5dM z)|@@N$LhK2SyfN19-WjXzMrcZasblEHXf7W7ruQX4BX|bD|EH?kWQwGWS_ILU`H?G zflXJlwYk|6s`P*#TR1(Vs@vw|k$LFm#eN%_Qb*znJ8jcZXaH4crWF+p8ZDdU zZ5AdDE+6Qrl`tlvfA`%!S`%Q-?}Tl2AR>|C$=$~S%f;oveRIUF$_f>m6BTF@k*;ZdE0BdsjQFiO6VM z1}5p!oto?QzRCE0W*c6;)5fy=LZ+jx>ae%43)4X~pVY$$oQO~k+;fuJXZ-RcHy~ufX{+U?FwV ze-qT~?dTQe?x=%tfy-25zaB1Bh=a=gBtI1yG%Sc*+sKVNDntaMsS8NN6958*jC!m`+! zU$8ITDQ@d_uefWPUJo^Twx6l0d8q#N&Le#8Idcx}1D3ry^C*RRaz$O~&?*STT!TJ^ zp;XBSsMNv5%_^B2lMt7={T(hPAub1#Z!78bF)3?rV{Y7$OUpmJ zwZPYJ+qUr|TCS~W%QvIF%J3=&bw4o@>2@i^fjS>IJXnnjt7LTmvUUNt7}^R?FZQ=5YASFMz0()FHYz$RPR1ZGPdQ zg7Dr*?mt&=-mdT0&v@@bFX?_V<6r*9o{`N@PK`G1yj!x}w>jl0VrLe)kC*)jc%Pud z8$J$s4z2yCFLp;lspB#Yt`}F-C)uhz?H?N{ImarAz9?p3yuM^_8983zncO0L$wIq1 z)a=>AFPN8>AGDm9;0#{J>22ooXH!ltuyM!yraIb^dU}%DI$bvx6{a1(bsc)R#$k0B zGwE;`(_!O}d+WlqT=pFhaVmnu@ssOb5BQ3~=mcME7pU@~0ILUbuHZax_q`CYfTWg< zjGa}2u^rxxlrJ9n0GABlKb{lHvXW>%vgAgADXS$OX6W9qP9vWnl_JffbinRyB?9!j z4xs0BVLxS0-W0&YRcYkb#rRS00l$>cfV*$C_P*eIi>^PMJ>RQcuiOjk@1uFdu3L{! zdiz6_FI8i=q^5|TaXZ(#em;bG*YSSrGCW|yV+3HJd8aBZ=J$X-BZG7OMJfr0Ae7`o z<6A)D>F9i-Ka?(a>M5PB&g-1^u`Y!*^2Nq36dZ5+rZduyHufF||7^~%rCQ1`vIQkZ zw)JT)Ntt*Gw03hlx1{cT9#vtIRo=1ky&zkEt@RE#-+{ptPI|v_ap&#~ts$$LwbAM{ zJk;>D9@eD7er3FE_>G@jDfgaKCA%V9=Ixd0Xt~go zx?Jh*zW$_JsrejvnKD^cmPv!c112<$&b8Y3@%8iB&vV|RxZP*75ZX`oS3xTBEohNv{q}KZErwVGF3CJT8*>uSwT&WNLkq`5}65=C7lyL zW@XpRqECKPV+$Rdt*8C%Q^!V^K|v&Ji?%UvudNrILNg$jko`j65N9++Wg~GJHYu1|7W8SwKP* zK|%j~tgm7&U+~T<$|tEB&}O7(X~s3v*XNPdSKyl($_NbYts#xkVEuA0D>J{(I0B4l zP?tJGG8~&@qFmTo1hvjKYVO-{NqQ{l!nA_lSm=)w`h{&4=aq?)ly-6_$DUq#3mn7Z z=Bg_dX~^=#VPuR<^liow^k)Tzku)&MyOQpc^6Jmi6Knto%`-5cFg4n*DL9FWXed&E=Mb=@R zZOx>19asx|^v5s3-|te8i>5XHDymTBzD!O*8&^@CSvB9>nR0Zx3IU#k}umdtWXK$_{4FHGhs5NJivvN#?!ktTB>)LvCsNbaKBb-8R8~?Z8*(3M^Bb#~BHvd> zkrOj{VCUQmqaR_f@6ww(IpYkJ^*V1U%;GpJ7{&p=ym0Mq+th|c=;bkeiuF1;ueSAm z_T0W!QFf(V2j15^FkzSj;l|1rLy=e?fLLw>G_`)t;UDyUPd2w}8n`~KtNBgY>Dl(7 z!22HN^tPDWiS#nG{oSYfm}EuN9`X0-VnV0qazclHy9mwQWlvn_38>ex5ZydTJ=6Yx zl)(Y)#;PPcC!76Wj8lhc8SLFQ)}6}BR)kY|7v-C<5^awR%T(A|w!mxmwLd~y?M@JG zyf+Q|;)M^MO&DS}h(xC1vh|m}&D@vdC6L6nFkQRm!w7#ZfzQ^a#PSS$m%brCIXIv; z3yoai4V6-^?l z@+E9jknP%qTP5j{)`oEH3?yvp2T<^O=Z1=1V`|HDS$}<)M_XGvg-T7Yj&;k{v3RbG z{>|8)VRyA5Y60|#0^@1+_tGH>`a8J@@oh0?=5ereLH?zT{KdujAhR^8;b*&2y+iXY z*Il@K5s w)KkCK}qmQROI=N!#51I6LmZ*7H*4XsqZBKP5yZHXnUC^~#iGy!^28jXiC%E*N=|mfbw- zcvAXX)+lq!m(_FjQ)?;Ug7qyc4ux10-q@L0g;m;E`LU3aN-RdN(oCS*+xX+m`0DkT z3uo0@c8<^MhPreAYjXAHU2xSwx+zq%T7O2&JkF(*0AtcsnN{qGr)AF z!r9Ao7AUkqUQ_0ayyB#n_nS&qZ$3Ui!gst2oU}8Er!KsD`SG*Pi8J|-vNh`odtD^r zz(FwPa!;%XW$x5p<{IK+SimP}xuPN9i+Tp~5pxUL(};pW@)b3lts$mjiL1hdhKh23 zk*TU`F-4_PsmoE|HmmHnV+yr)BMFpptAr#YQpFwf%D$9Q9V_wi6$-zuZRxNq=RLA_ zwbhHP(BUfdcwaLdU2=lum8Rz?$>y`LV>Ld*Dj&m(oE}HIL`s}Qz34PniF9RU7K_6~ z+HC~0@mtdA-~f5b%>$S%aUX5KaqP){a=X`JAD&LkjUX`boXN&i#P$uVoqD6!8c;o$)_I)3b5?5PhjOS28?r4|iaLjg< zTAS6C>jRIsH=G&tS>^P0`h17m{UG>BOYYSK@B702>T#25^rl_0U@XmBZ=d_NX3LG| zJ*rl1DPHau>%~})gF8^TAa2D8t{0SU{KK|?_NRT=I%l0OC$TS{iZTKQONCOg2*}hC z5Ln^>1*nk`v31^!F6YB4jY86Qjcj%PcIVeU@alNe+@sg96aSbaFNFd?(F|eWY)29- zXF}iVlsFk#fK3Z;JHuW7g@;;ul**`P(NYifhcI0O_*<#GsJL}@i)RvDRlPT}XGvRr zep_2DgQvQ(q9O|XT}sQvD~bdQb%G%ssV2pg_9@jBkhx%o~v3e9GyYNNiO7unH=C>?ZG z*U{M1ljWYN_4raP*+KCBF>8u7G)>1tM|bz&J0*eT$l}3~V$gCodZ`l>y$yUrHb@Zy z>x&+n_t!Tpbr`*FPmI8g9`4o~C4O*Gn_|f0++ztus9sfw_smrw)&Z9+V9u`r@Sa}~ za9}ww9i%(`{_six$G`(W?R*1E0*1i^<%Q(e@zq#Bh{1b1Aws#)S$Ek_M*5TceFE%; z;eR~qU_Tky$Sf<RN6`NQ*I!25qdelwB1bZW&=HW zLvkbf5PFe+NWNs>yzhSB<^?Drt178{C=R|vNT5WM{klZ)M!`aOf`Rk}V9yFA0vP5l z`wCm@CdCGp8`{s*+h(U**VK3M(BKU#>{i>{l zd@#R$$Fx)7hz`590f6n{iZ!wGu92BZu+@5+1ymr=COyfs?Ff^eob_K>Kvt5XXQ*6OaS=f#XWyoOoVL8To6H6{mh& zS>yLQqxB-ogp+W3wlw8xp<7}8ov4wJ6p6uBkq6O$P@xk9{(n&LGNoTFi zzuL^*&QrlSj)Y|^0}wAJkE`3z0In^+l7aJ;uEs|(8 z#p)Y^EQTL32U$>9HcQmnE_*>{I^jW>_62*emsy!<3&GMFj7W#9M{r~? zDTK^=ZamyU@-e`lkN?c8M*L(t1V2m}p@*z2xTSy-;7|E!QFn zh4lSEfG!94mRNrB585jm&A)8QExT2z*`c>7k{CyeGU z4*!~)aGKb~W|>e6u~5jD~LdusQtJlMFHmZNZag{`R1FlfzWsK1#;A@w^jV1$t;N21(?EGRfr z87-arkFkWep^$z;Vr^v+V9M2V;^&Ub>qU>mK>A zMCe0M60*6TNZ7Mh&mNX0$q>bG)Oa8x9Uo_>Qfhd=fAg zKP@}xrOZ>KTm@@sr3WRY*w+<-zVJ#B7ivr0MlRsG)YQcQgi==i$chp-wEAB&m`tAY z5{l8kqH@lHC7WBhNK1jT>}k~4W;)&e0LTi;Y5)^K(IBLB4o@NVSx&Gbi7o(S61CET zj<1IoIUo$!96qU&Iw4WbszQro+N+**=&52du+`YB zE9Idg1)2?zlG^W-M7Gc`K_&gB9-xdu=l>%C5;H+60T4_bSj#Ta!vMa0dQ%SU3b%vq zKpR@f*%3ps=|=o33FzZv)=GlAukkh>WMogFO%8f_8(PbY7|ct{05L|5Tpe(WSq~b| zeb}9;XLNXvzv5=U#|(`9-7khP=a-ma&nNDT<8B%lCeA`G>RT%d>)Gy`68f?i>e0ot z`EJ`Ubo-llFK#f}D2}4^1)zal^we~~ON2PX1mvjlKCoe^aj{%i+`(54w z76tgom=(a~%P-uijukcz98YkiZ<5-m8oKyhrcmg1A*;H*qbL@9}v)ThAP5 zSvQ0xD^uckq|tVF?X25GUAayy%H>bQP{dPFXcjqqdceUFWi6AM8mn=E0~Oa7eX)qa*_A>&c)|hIB-{Y|dz~$T6ZmgCsOTg65?Kjg5Ks=;koz z-YvO@c{yqNTPV}Otc2jg^2u3f>r?u|Jh<{j)e>_^3qjEr#^F&nEYSB4Y}Vlp)I$L- ziVoV@__oL*-AHuy^JcGyRH0M#S*LdX&SvT%BaruS-w4O+OU1}E7i2S8aMtFq1g3>) z#Qr;sIQ0Wojw5u{19#Yt5ArZLx7}!Vfri6uIWX)NlI94af-I&4@XAF*c8H~NZQ*%A zm&51g`Bf(b!bA`MI#lOYaMm5Ud*>Vwq&I!W`X=`5^e1ObZtov1_jDnVzFu;*7NE|o zBj%f!E~vtyyy7k|I&_cb$8wE+tFqU}%PLQ3!xc6?5e>E4Ev?_;vxA<_a>;G4G8dP4 ztsAfxSP?7h3SDnl>~k!6x!&&CYA?JY?O9Yyb*?^pr&Xip7#IG{j2b@I_{HV_uj{Dr#ZiLS(-pkgEx&%I!(#pKHk^(+cmscdU$TV?B#W@ zv}T8R8fBg4bRISaoP7$`6v35}W84`)T?R422weoFE<(3j_5U8bJ0P~KtC3a8UsJQv zFe=97XcDyYj-QkHd*%@AVRKw*O>?!|bt&-OxBy*^OUC7_1F8U_2vwx$EgvX!cC7O+BD;yjI(qJq4 z+Q}p+*=^7C9fUPRj#tPBHv177`z{AA)P+8WI42wx+5u8y{NXBe!?B3$OBd3|xc7{a zsc$ZSM+5MMbE@pu{rjbJ@bQ4NM{{)3@0tV-=eN@Tk*U#3{)I$I##$ZY7A z5D@^jno~d1ntQ%QCTu%0O-MJCcJ!M+Fa`q#Rx~@vQh-fqpe?CY;2q)C zKwdQMxHrEqSbLi5Jprx_x`93bJOOU1SE~W9O?S}VU7zT80%1N3rfZG?x_fj$ywY&M zKA=27Z!9mIdu$nR;y=?rQEtF5gnGm<+{SqIa{;I7sPhq9BwrF22#yrQp#Wi}^m~#O zNOt7s$a@Tn82qM_ra-t=GCyxo{eE%Pl)(AonRq`0z7u$TmeWO?SeFg^ zi2Fc?9FYx(a?lC9vppF8M#JhpdHTPU0sfzg+Mm`-n)u9Y4BGhk44U{X>^~x$KmC?8 z@mcAae-QJ}A`1)a4`OBfL5%yKzGKF7bk^z{D_+s`V;kC-g| zzg-MW|F*IHGiG37`RDb2W;yJi^{7`#=7SZ2!Em z{AbAavxo7Y@aT^a@Q>5~1v!44{%`nW%gp|t7mgoJjI96oF#Y4h{*T^&UYHpEg=1m- zH~y_MGW~b?4>J8fkojMV{v-XN5uXw(=1HP|F`jD z!omJ?UyStsC~*8cQAYNk=3oCa{+s%V&B*a@_2+|{e`Nnl+z`GMHKZXaB#4;eTV+AIj_;|IUzsf$87D{|`xR{Qn<~U)KLqYW}}C z{`X}6SA5OH`u|^Hj0J8?_ za}6Z)`40VTOm5@qT;AU*7z@{8tJdxVZe*0Lmc3`r3J0nlX$wq$Fq-x1a9+*va&d zsuBD)Q4#-Iu=_166^~W$OWtEUs)xpIH<9z*G$gVWtCm#Tp9g4z9F9W)-GKTo%uGIB zR=8iZg_V}fm|vKMh}#8smO{ksf;%UP*;WgFw}ViV;B`gzz$q)h0Q8cA`b&mSr}y@c z*0rlQ>yVDMmyBD<@cM>DOIJ(R`Ecd!Gq6t9+s^;xC+z<}ky{Q9HkSXVkeP{t{{Qs| zTzI*ADGs-uOmM7OjW->j)Ch<{KnHeIub{)Tvg**I)8S(TdQ*?4@M9%JG580;LnxV> zNv0sKS;Z|^k}#Sh=CxYitvzflha?@b{9dOf{++?vY@R{d+1U!2a>eEtW3-xPMb}#G zYbRO6yc0Tz_)pD z(39$lej`@yh@fY*@dCnbt=jYpB>#hi{%ax5b*1q(LB@{S5TUgu#IVg?MnGWZar7y8IN4Tf8=qjlL#;V`1;a#oX^K@Piya| zQDjdt0T?9OM4~R+Em2Uy8?VnzKVJ`fhKGcYgk6zC1Fi{*zcogY;9wd=E9oQWi9T_B zmO+lNLQ!0b)KqVhVP7IgXh>S>PI?eAOe-KzF6wpROZY3Q4$G3bKPX> zZ|PJcsxzWz)iFbCoMPGY2`}RO@t#lJY^@22B$83l#Z;_RY&4_d7I!najnI;P_!qLf zk;spTjU=7};M!@uK$ZB9%B``;)w=5=~ZPY@O+vV})(Fvhiwkpt$(#t|4uvZwws1937uHp%C52Id+UP9J{_bA96H`z2pN9gYgPZ)jBEEb zYu|L>T~+V2Lw>BJ%HAu|-CYvC{-p)Bkj_Pv?oy)`z)rwN$%u`RqtOV@kmEWN-Yms) zpM`CJ<_ViBD49KPL9R9}SDzSLEs9MS2Z_H1491AA#o)f{)yOdiBV}5#f9e`hOmZdB z==G6m5G8zLuVcJR9np-B+;zP*$L@2C-zHx&wf204%N)W_b_Ss?U2Rqh^B_VKB3yX|u45&TKF`FgE$ zS*z3ZS-E}4CFTkp^2K|-6SsN1)w-gem)odb1MJoRizf4(^)cf&7Tbf9Yt^+{bCdUP zO-rf!vtqAkN``!ZSTYjU6HKe{U{Et|2FMJFU{H2qONdbl`i7~V;HdN8YfUnW`{meG zOId~UAyEVpIz+ARmNSSr^uUm5ppO2+nyG)Sy{p45VPIzj{G4P@A@`*W3=OCTn4K~O ze}kP2KB~_9RIYPdw~%mF?hBR@p*O@3vBK>PW!Xz(&4pl1yVX3Zhv8ssU4ux4bKKJ{%NqasL8@&Xm0i&!|8ylm{ZtiG7;K3X{VzNKWoEg+V0fd0H9-WVQ{YA(uu7 z)j#5pfuKj}AD_d>*jHYkl>$LDMBW6V2L;%q+B1b#i$Y&ONMwotY?%ZLg{B6{Z77|D zi82IIm>^-&g9hRRg>MST23RPT%#Lv!1w1JO#T)$`Lx%1+B`29pc%;)qT+_*bE-o{( z2LZ?@aGN9X%fsV$EG5EB35(uBVnt1!eU`fA%i?KNe=tto-;wm9qd?$Hs4fLUIrsh-RG1 zG(i-Z%LcP7zW^d&Q+|1A02ryk(z z6wayXO)jB|ho$bX0zt&cNVvQhYL}w-D5_1wHjdD60!9E7jZ?gvMZg5tAS8-|mvD0C zI7Cv4yEIM>L&*|T*a$XL^~=C6JKqqATEPH@7F}yF8jHkZt1t13lBV)KkG)82w79&-{ILxm6k%bD90lq#@Iuay>u+0%10>q)^VI**kBWo}V ziCMFBP@gv}1PZz+aaBTE21fnfJ%ylD#?j1lhVsn81EVQIfk<1M^b9798gVM5te}{YkAkd;?go zk&r+|5RoUGJCU`4h3tSC%YfX=>>3~KK&edwr|jfl@cBENRIFY$nws21E$1;DOY zAj}wlg&96d6k9s+#4tbgp9g|eeXn|M zTSP%V+(5s|JSBlT8O2hf2*MIPGb^^Bv}|o~BVim;X<&%o?M9jlqKCf`4^Yy^PQ)bmAl(T>aM?MD0WpH~Ipj?lA@Y6+ zLOZHa{>=ku@JAtwkrM$Mh#{U9bw+FwiYbz1C%@rzIL?aUUIgTD;1{#0Pp?sx6Ey-O z!9j*VavUAmkuHYkfc$AdXP!?v5QuatCSy!$7$7-U7J^pg3I^*MaM-XXVi02HE~k~e z*H(WRbYT*xoJNAg#14*u!q{xg!((j~u$VVLMiA@&R#V<0mkP*=P`)nETV5sTf-fJQ z=~N17Aa0dMjV#z^B25V*CAExgkcVY?D#HLlyiB+zV>)$1_wM2u0EkQ{dsm;zW) zBOjPNn~=rnz?>j2Mkcp?g-PCOZ(W;i{YJi(yYEa+42|l|JjHw}Gga?59_W`P^LPCpV@_b#FxXz7v--3X4 z6#D9kGeblXTTHSYSjvI8e_@WIf2&0q&m%tNLtx{++Fvw;A`t)4ieF%f1+Te9-%NG@ zA`f=q6TPQ?Gq^Y4FP!d22!l>$jG&P^GBG@ma$2zAzw(Q~9DE2o6@eiA2yd=)Ob4=r zVv+1a^6~4C_w(z+E)Qpub{K?@MK4)}QybV_F&ow!!1D$arsJ}SgLWwvEl0D3q{Uj} z(Vx)=0WbeoDr88 zx&hCWv1^5%1*H;XzvKXV`Vmhnr79YRJV(sOH#<%WmK*3LhPHE!*i*8=fVMKb%|hVh z9ia?6A%nHINYfc0{DSS-L%s=nkR)AM0u{x#H42wp~x-AxSPV8p9aD%EXP zl#)hR%fkxn7Yw8wu=kEb1Z?44#)j#0!CZ)EEBi&7Pb$=cpPB_TLLoXZIU4NRF#4A< zH3-X>^UjRcT|2_QopNjvd_$ZF-59NIVkBA^V~cnI)2sAlUs;^&CiO(5xVKA>t^?0P z$Pv;|9`>a8AcF!l?tnZV1cT_41Yt5|F3iNSR(4+1tKLM>UU*&;c{VL_%3K;0VREQ1 z%tUCH<994U!Kuzd`Kbo-tP^dF*%FrJ?RU<;Q{Ck`UsH;qUR-{>qJ)7lO zi^1faJMZtyj<8};q*?0Oi$$gBNAvO{QRZaFX>&@4Y4b5hqKvwYQ06}*yuamp8Gq~h z%htQiqW;Fc(V!6pSti4VDj1XQ+U;WR|?e@IpFcZOBd$<6IYvi1|(6MV_=QV&P^DF$x; ziXS)wKP2K*i*t@%P)g`EHbPBYMF#puL?`Sc-W&1{A+kH0M`*0b7vUtSFO%?_8Cx4_ zYhDx~74qEHk8J;$AS-h~mKi#Ilfb2z=4@n`Sm#J+8=xV&Ht5PS5!b{D;G@gQwHWXS zaMEAFOZshLiW|SvpjjM#Z@53gH(dG0ezWI(CU7$iKntNuh0$hAdRC!@z^|fb80J(4 z0&h-AVG+@esHTpNsFG;nh)mewh{@$e8AM%Ynhdfxul zqNb{@psiN#>iDXCxBYk%(yoYfQZPRki|uZ!EN%Gvx4}$Z&S6=23(TjstEop$S=Vv$ z*Rs_$F7=@W)TnDPJXiu;53oa0m_yWPIAXAL2)_y>3aU{h1+8jel27HJhRS%cr8;VN zINBaxkS->~bgdVft-G+s_bi;f&kI{r#;8DzsbWSQ-uT18yBKxihXG1f8J=kZ{SX%$ zz7Xi^_^>Ac8Qu$N{;KF7rF?!wy$pOt8X_(K5{=9DXm6WNb=Ik%&}f%!hK(``K;$~kmpD?!EzrLi~| zGjfBvqD5pRK0utxetrpU*lCAHo)$pg<;d%y#a%vK6q_#{w^f$8w{XUz)>t2Mceeoj zK0Mbz?{F_$;7{s-{MMnQpo@zM=>fpc1vl+^kT+xXg~|IgD|$zS!uhhrLt{bglPi7H zYfqO4OST7?sx(8`ZyOQOVE0R@?&|AmyNvDBrRFU5mggkiR&QP37cw=2I~7@Jdfy)n ztBDP0&ORuE@5ndy%`|+~7bBQ{#-P@=4LOCeipJytPB+yT^7r8zhVawv@6Y{r39AQ@ zudy%xPQRmkuOgQ6W8ybtPHjpBlM(L>tt4S`xmQc_?4ef=!~y7XvVPP(7u>|MC7PsB z)D&f9)iI-V4D}bY<=;p9YR?bFN6tccZ8=>g_qCVfd`i^aY=xJYpZCwr717Ig;N2>e zWhb^4=Ua{grRt8GI|EOaD$U$oO&2m7UHa}g;S7|SP7nqc*wM92>C8i@#(LbO1L%RU zVq3`%aTfv1dY+3`A_*I0LcHb$blK4naQX_O#=7Lo{+8h*3y{Kk0tl^~RFNF*G-??S z3^JuHlb64KwNCL)wTHZOR?kg5mN>KGB`k%eFY^3_-u8T9S)PvdxsO=~Kkx6>tqmS9 z)jjYI4_Jd&QN7DL;1K^4_g)A36jIlak+HXzc1eD3Rh6?wM??jkrCaq|KTSDQXS4Y| z+4kbA8HXKPAB^=a6#A9rNFU75<-nBUDOEPdYjV-uz%}!ADw9=rc_g!%W0mSnwjgtX zk7PDA%IilW-?xqOh?l+>`D;}#xU_#kUgD$lZ76nC@F&B{nTqM$4Q|H-u3+=a;;o zc$hroq(~?^91BsL(jj(NYvcC9#y|P_4gy<(DHv^QhY3!n|Z}r%Jn~& zXT|_(TNG-9oLN|cgu{fy0i15BsSQTdnxw;GgYE5^NX){gQB{sh3-Si&CD{Fh2*tYV%Jcf3!D-EGcNLK08w7gm$*2M&md$iOYbYwknj6Tr}Pkc5% zKW=VypQ>$ZXReH_90W&r#42~V}MtMmryczdVK8T^| zkup<0^zCs)k^FJh^?ne3;XB5pTDI1O;dt7E`kI{?04#1UD9megFbEo0#nrp@Ye>B6 zD?Pa>xjz^rf}g$&sXCKQkakqBxDrQ7k?f;@ zCYcJgvF=o!E0DOS<>9Kcc?;{S+MP;bK|v)pJIYYRao;mR^29SZ<2=d!W9--yV!TtV6|qm2J6GsNqEKzH}xW( zv&n?c8MFPxE4Z{Ktx*b^OcbJ|*Matv*o9>&$RtxS3b}FF>-`)Wd7MiM_EgqvRT_xb zzL$8-A%@X0D2`cEaFt({fzxb9M)I#tn3d%ECEw$-CEu6zWhYISb=e1&=#7mn7sb3& zyw9N_XXC4_uXX7PF`e;S+|3&tZTx(j@Mg>xxr!Iuj0uRz7fm9@Usm^Ma<&bg$6@(*2BFf40hm6q}2*TnJonKN``LN;+rGQ*joLxp~%Bk4Ni-@`MCfwtQwBjPDZtoQD9&57oB(ud* zwD$By^xS>6T64EEn1H3(_Fc6d);QE<>$@MLIfznONcCc}d(iHe<24EtlkN512hP8? zUHDpxjuExm>ag8680ly->SY(>mr9J{KwM!!Hgi`x)3<7v5C5f{Y^Sw6cq&(=Tv9{L zF(k&Kw+8pIFewdVtF@#mZ@&O~X7#>nGyV&V!z68J6Yf&8IWY^tJ(b5R?=`H%rmA=D z^)iR$N%y;YzuU#ClFzNy^Wo}CB&yN(P&X=tXc-SS;RD2y-y&&A>VX|HKr$vVEitT* zfXF(@WoQSwz;0yv_NJ2kMR)%M9Rizrege4`bk2so?3AFM#L@BC0;McM{Q|p4T5Rx; zk77I|5uFDz;<%>#jG}s1J+)(sxeD8S>-otQGi9Oifye zd~jj^;aKVcT}63m`)zqS|Mvj+$K4&*S~=Sur=fj5c|01iBxt$%RnxGjYYr|hZ|D5lSR>0rb0dR@CT_dS^>ee;>(`bg-nzqC&rw_c;rn~j z1zE+8W&HCkRSV`6ba?ET9Oi9z%}pUVoYv~r_V!kjyQAcHxk_T0vofDr!j!@E_(KgI zzNpN3A^tP3UpN1D2h->&Sea5dq8MR5Kn<9ILEZzeaL z7iS5wDTr=h#(n0V52V4QzzK8-9K@dD_s_8h2Nh_xdGDh?&wY+l9S>~!nAs7xhI5G* z(RFy!J^Qs}_BJm#rxIBhUrZ7MpC^_l>$(Q7v&ZCUT~Psw-2-)BjDwHg`5yqe?_R+Y z!E?B(T?nc^kM2;BtD410c=LB;Py1%^#IjW5#F=>)Xyf56cdDlw=EnP`l$s^U*RyvW zaz^f{NmFX8&*@`4^JDi+NpL}gx`ei$6Ng)Xu?kNZt`OSc@ zFE+>;iMUcR&;&wKw?5c}T(=2r|KbTWtdc&Mc0H;B=@tV zo>bhSYb7NYa#y*MQt&!8@@#D-P`8xcPcp=>AfT=}MfW(4A5`vB{N$~D^hsQru7EcGKotv0wLo|hjL z6-C9)8V+ji@HGaM-7nnS<^6qN*x2?k%~L0b>==E|o@wW`57uqi%*L?uruCNBbt~Ry zFWMeBPU|ewFz6K=ADfYVSi8cG-1;?_l`P!q$uW+Ntkh@F7KHA8o{8HmK6(S3eX!w{ zWSfd>`ekN=+INmvtfO`I+)4BG-gcTK{CwGBH}}x#>BDtk!0PU%7Pl3InphZAb?(0g zxa2EPp%B3a2<>qOXmFf7frGSLcr~vP%MHxTe=jYl9n{fK{B5=v@Z`ahXsg0g^TW<- zUbSGm@fMEwQQ9X>fhj`0JGk`fQSF3yu~5bhj=lSvfM|Di-Ja2p8(%-@dzsL8aBKvG zpl`y|gVdaoo>u`@$8LSPhxc~;aZMl9M73C5{W8+A9N4Y%h-!O3XzhnSM3TZ6hq%HK zM%A3cut162M1l0^eS3~;;4wk{jO=67!eM6hOZpGtIppr4d_W3_d}jPc)O%XFRfgf+ z*Ge_E;sr|jZRvI@VFf+xhynQd05z;^7@;4?pI+Fze*poLv-8`OpBFhHhuYmD27(DA z$#)gH#9Ee<5}S$kIQz6mPt|(#7$xniWRmdXgLseZJ9&tPTcF0SpW$P^TAHKZ1?J$e zmPhQUG?M`&Kq11vdy-{S!oFT|hw+*rU6KTm>*d90}ufB zC+7?eA{6F`SAU=fw;U3w!eHIdJ%!;=l23$>m2l1xQA|Ok258Up8wZyetgg{=95q>6INc`ZH+hsTp*oZdb zh*s_4i%@kTfH@R&r~`L|LFZkKA?QwAuP{33Ry34F@4DevEW7(QCtVN?h(W4hY86RO zVCD>Pn2>QP$Q6`XBN2EVKHeQZ--Zx5Kn($g*s1IW%Cf5qb-e$kIuy((EAssxzG4`9Gyc zbuRe#oaDx6kAb=mtYjX8GQ(B{G@<6gEoIayO8lLoqGVMfrHI=wz?FV$%R)T+#rK^_ z8M+7j4bXDYn~Gj$2#+nyq6G|`lI|v;>ghPJAhw+41Hl}-cExehve`S>V8KMpOJjM zu=A!|`PT(CZaAccY(6|t2{AJ)>hPwrb1njzb{G+l*7jR>b1lvamg^J)lIsBrfl8== z^LYIYa_ge*kYD7*t$~Gd1cnfd?82V1Z_cFaCGd&ID84IpS8sm@Qyx}Gp z2==EW8B`2FXXqv;L2?!) zrzS|I$sh=d3L;35C>aDLNX`O^1j!&uQi4bjNlF%wx4^Ua+1svj-#vGXci%s!$56Uw zSFNgF)mrPTRW*ASLwjt_WG3BG&$|ojVl94VzNnIOvbYBg-y7S6it_jK^cH#Z&>zA1 zcTF|q&^*wCJ+L#*yOeHnVsoqb9`)Q@aii-YW3O*?(b8vYa7bx5jbt`OMz7{N z%TnI^YJhD$;!R=V{luC*CsnQc@M>#6k7rzL4Y@_3NbGoeu6Lc`L6t&LQd8WF`iwuN zVQ*-8ZIx-7grn_bNhiIwBC`tB zYTaK8vL{}_I`%CGd1X3;1W(HPg(S=?4yy#KjlKR#CxVg_sgz8`#l8+rm=C4y?zj~F zm?9wJ-VVjY0pmXQN}Gc--5*W3igPqCIQ?XOvJ)ttQyDUec_r1{uirI%h=CU!O_43P zb?IZXTeCeyr@QetIUlze7H4d($JNW7q*ou)d95yYb--qbyqqOOl0*=zcaC!XhKZ>eldX4( zT}g}UQ^=OzoM5MHDC*%?7`l8r^9Z$(V2a4Thd76bT9%jjsm*S2 zCHXCI9qL0|TxK-E{3+Qf!}n{*R@$dIvQ$!0syq8$P^@@O-^kjb{%*o^STttKiLCd$ z`|)1VYU-Jl{{1CX3w}RNG2j02b^Ua2=%@z!(D=HeWm2O>%1`<&n5tNSFX>9rIxeeo z+)!fMdW*C7`KWfX4@)ie3e#s@qb*U=`Spc$HdWtyTt`qmTz3WiU!jeOk@-MdA#L+;qtl7znsz6qW}lAl`!Cm+;tyrw z%@^IV2jEnQeFTy9ExV{Ro~ElIw^l#xTbVO4G8(9Nit&3if$pL-P(5Wf(C&0_-&KEj z*T3+n`*S1izc>Z&c>oLSI&JPbrJ{CSVRwCev3u^OznpsaTv-u&{-y9eSKK{+-9H^- zfBEa~Ik_VD{DIMX4!0=C?Gy9My63OE=VtuNR~Ln0#~^+==t6#?m_7Gkye8={L>>Bv#aQrM=o~Hy?4*=7PsfUi{16E{q=Uw(RRz|t#LEi~LPP~70dBy#aPgwZB*yJ0D`pw@_|KZ2$^>E67h3%7-vwT4j zNb*}o4Ehum{YP6@_l4w|-D%_xB7~JC%|=q6%^yo%3gmjDvDxDpE$*WVXF1F8xa>CJ zYBM|Z+kV&#c@FB!lNS54ECFWax>L6`zTRbzBmK-RFeQC)Hqmzan?$o);pL9d{7q4p zoT@X87nP?^XiA>X$1Wyovy3d?W~V5%=Uvm+S!>(E)x5vwaISLrRg95i$RN9wSgPd( zzC-N+3S`UBOhvxhwvi7SzqZjf|4dNy!WEYrA9^*6?em1sz`Q~&={S|O`P5A=~f zEfKF3C)Ow;I~}*cr?|j>Z^I@51P1j_r%^Z({aYi>c^`FV(vDqlvykz%X$@qaGIUgb zfGh~t{29?7XeyMV^{GEF!B=_qw0aMkRnAl)(B^5lO$Q8j&H1=06D9-8T@8_j!ZzxD27=&`vS+~AtD%t~*M zTRDyNMbV&DXEV<1_eX8K?^)J!cl+S67^LT?(CEs*E6fyrvy%D z)!1s*UYrQ#4dCNB;^WfWJY(zY*|$$^L`5Q^aanErYx@{?U@2SO`dWH;tj!q5b%~ve zkHsGGt3MY;Y)e29@$Q|DEuRZt=8jd--&u{#5b~AKQvTGGt)j?0xwg=tGw^QGI{G5z zlv8+fNUJcs!*OiTkVeaU=K9ie(NG_gPSt^wEtaW*iYzi8mx$mnyX)q9Z$2u(k{d3o z4ZmSM&4jbfZJBuGHjVJflud6%^K2jJea3kyJe^!lO|FuSb0T&2)`4g8zS8gd^5O)s z(F(a23PKk}H-c;h$|B7+E;`@;Uh!&tE45*q7dI>WbRqY>@wfGQ!AP&^X5HNSc$Qh+ z;)Lyog2Up5H&=JQbBJv0M8B|K;o$!A3Htg|fjbZD{ic8XS@`tO-}y)G`>`^S^o6d_ zk?SmUp$(?YTycnNw?vTo?XR`$zh!?Cm>cLaPc>{n|CPT&?tF@TLdaHLsB5Ubivw@X{XUxVKU7gJHwcEYFLb znjO}dTDdcWwikV_}F7o8;I@pP`p811`vq&Dl6)NdGglbTz_yG92dop^We z+2q`cPPtgj(&WIyD;6c8q+^IDeG}Dj+EfAN6tJAJ4{`K`rw2vS3hv9A@1Olt_h$5r zK$xc^e7*Q}dS1%Ml-QMN3Ip}P{r(pmFK~aq)527o#DP>%P=0CXc3vFK>q#qdZ0<CpH!VOg5@e$(iq?qp$P znuGg0#4pvI(Nef~h+BlJg)o|Hv>be2tEiH(S@=S8k&WjQPE|L#%YxS(m2XA7eWHN2 z>=Q)Blx**vggO;W8Gg9jqh$rUA7&L{92`z z?jj05_PJWhrP;%5EwPa_QUAIsYNoiW?fXQ9=34O3#}cu=0BM=Lz=QGKb2S{k9g4U_ z%ebl&Ru}r#WQr3x@-46OuP^(b#N|;>)Jyp!Kda*It1ptA`cUj76aLjAM!nN6Lw8J| z>Z0LO#;PT)!FlygTj%%z(ZTerkq^o!wKm+b8EihFc2q@+J?akt7N=)=nTF1eYNvz!-UZM0~MJ-&cyjE|w z$T(+Lc#DTp`lSh-jwzs#n0@bzA&1rLx!Z{!@ce$74dsrEAzUiSB0YL|KaRz`?`fE- zKHtgXtWEA&G7qRqD`w1SxdWeX{Ah;P<;ah5@Y>L<&s2x;J8>B^=uMz=Lshuv6+aMe z=(wF^-s(y7U}T)qO5;F5!@k}JBh9Z{Vl-cC9_g%bJE_}tJ;hIjPYhYhco73FkRN=G ziLD6N_7-09AKn_M^yd5wE12H+k{_q>Q75y}kD)r+P|Abp;g@?I_ahRfSdZLb&w2@W zV%+a_$EhK>9^RlGcV28V30kszL}haQX<~dt(!BOv$(gQWSyx4d1u^#Z`Yi7~oW2zf z*$=)A9Sn_6WU9ORi6V<{p^h4!!xTsVPOy_c_sfmEwEc6I>@k^@ddjU6jG8$MB&gS$ z-(3x1wPO+AttZoVQ3FeWfqgL&_*@CIB{u)w~Zs9L8LT@I95?e#J0C zH%dduDN83)&4JeN^ZK#UL+^4|vp9PNk+DK4(Pfgy%#c@l2{OU-Y=%C)VuV38G1=ou z=_6*Yb!Z@M2DEn+omDGWm&?H;+Dz9}`>>eS3PyyGeJr>h@vSTY|yYQCxj)^@z@+_m!xb z?*$LVu7?!r(&}BhbZH`l`M3&GX8tMk^8+rFlcrivH%P?zj~fqdLoxQ-X6lNao}G{zYQnPf@Y)(0NEY3;Qc-yQSVyQ<%W@7yLr5N6GWne6n$k7JDWyh8yA%EN zg&nsqy70cZ_Pu`P#U3<6@w@XJVaS@T^pO^m6Uyrf+Y#PMfyCx#Wa17&KRgja}@W z$R@eLsQL9~I7?L2V!McHMv}_h$&=l$od^ytZTauCQ|hUP>DzkqBr}-?t5q$W#t39b zzn%EWS@z}NwEi{w$%=Qj5BQ4+J#72m*FWdTUtVn0k<)sA!R4ds3hy^_#fy_}*UuPx zr}fFxcv#=5SftG99e}5)xYX+>K+*lPf?V?mcW~Zxw;rG_uOw9HX%+lj`tD11H2E|u z-}%U@u!mxy?(Fa1QLJI@)2~nz(oW3uB%H{dP#t*meCAUp%-jCiC|TF-^~9YZEyC+@ z=~&Z)fv^Urnd|djvIVD4Z#NWNs-?Pr#`eJrKS2iJqZihCwbzxyEy{3no<7>k%ZrK?Uw#-;c7` z=6%trf2)+lD_nG^mhX|dm#kwc+I;+S9#&tpaMVV)wf{V-Z}Ip{XK|Q$$Mf|ZIYQZ# z@~7>tc*9oi(q(bNo4AJ$_bIWC#i=I4dwlL%l)o5748pup=bA*qLj1X_UyODSkte3u z9_oy>jTUjU;dNKGSMstO8Jxnsi(7pReU{`sq>_JT4p)F5BzP;lB-kjFSvU}0qPp}J znQc8=2=6UqxlalH(S%r@uTsn;nIw||Z&itb!dS>Qd?S);^~_#&P>F;R&t zasI)f&cp|A6Z5EUBz|N{{60IVx_FRZ(aUZrL!|5nd1Bcn>-X6ln7b?VPq0ty^A}6| zWt*W>i)f6i*QqV5P{Z!(vXRu>6&oGxMVnF*eg8QNxBGA3s(X~7aq>{j{g58H#S91h%MI2RGF+x(h82wEc(3Vbpt%3}k|arI z(liZs@A81lKMhMo!>!KGTBZM}BiFj7TP14Hn(jRD-91A$ug$61_HTOK zt!Mf+N^NbeZLd|BRD7Jw{f0CgS}iTL)x9w&xJjPdKb}9tQr2u(;q&%Kdwkz>d#j4! zGYi!}@N{89uCAplBK*mji7_>cmcD)OJsaMy{U{o-GN`SIHDpt-ab77&vxq;nS~`bi zo)z=`mPpv{&iz@#AHHt?CDP#aONmFC^jUeDk6nc%^c#ALo}^VgvSu{SEs2|b6ss-D z_58=Hku8t6CHCGCwnl~`wnN)L=m&aNHqVqT^IbT3`}Nv@Ve#g=n^#-P7H@WAO$m>x z7Kaw1abB>-1b^&J{=3khqMTmGimEJ?jI1(dbJT6j>SsezqpwHhe&RF9rDV&EvQnHk zwN5g%&N!f*=eri`TesSTfs-Wk*=Qir7ue5{Fhi(A6*8xh*KZiLUR zzZzg(UeOb&r}*4udPJGJF* zGBa9xxWr}XhRvgUujt8*rBl8$A_{g|CV8Kn{$laH%#tiu+}W&(OF#VZ$dNE=?2~sS zvi&R%e}=`o2@B6_Xs;+e9$3!zo~UJJ@agS)=U{tmRX_67#M%(471f42t4BgdhPC~( zjPmR&{9FS)-D+`dssE`RcR1q!+TDJh^^NC#?JtuN~GT*>=En-7fI+ z!&b?~v=%Dskk3b-_YW4h7U!0g*>2X{n60Ppk6Zhud9)VoHR_q=rmL%>GE{2N_RSQ> z(Ptb&p5w);FIXkrwy(+5)57`VUlqvWf$O=scE*PXL9bYgP!)7@gzOBoG>u?XG`7AXF5rZeeC z>QaJl@>J{nsZSN|e2F_GQzau)=Qrp(N8VJd?R*zrVe<&GkYcOi^htZ^E8^EAPhnve zF~qCKStV>WhSYj9#jD2=?VTAglqFMRIp*5MR^o8jCGxXo5v-N1Z1K$JvIgD{`uy7M zAM_MCs^*L-nsn3V5ERePjSooh4axF&bK`7Oz8OOMpR01>y#`+~YE{0!RxZugC(En% z#MnBF`F@J`RLDBtJpaYis#9gylgsyOSj%-^M1G#pM8SP zfY&hR=feP4$~fjLRPGbq_Q!VlAGHW&Q2h!gMSqo>ZOvM|m{6QP8Ih!}%U@=rb+nP| zi`iM+W38(2FPg|)i}5!FXI->8Q&=B_zAj{3$qGaCoRBG&V+m%QsU*mF+9brit0$9E zqRt+;Dx5~m-BdV}o~V}AcsuO!li;jVY#JJ#g4rP!pG>))<(U_bcb~^Vv4&6Gf5N8f z)yP#49LHSmE~UgoW-7^c|A?QSC|h{X_?O^HL{$3|WI}s8*Ebs*;SVR}LioQvG(uAo z$lB@L(njs5xx>dM)kGpNJ?)1*t16FDISV|H5x~4G?bVEnKaf`D9Qm~?eU<4;xBJ-x zMOra5s24Ghx0#uDFGDN2Kz9AN+aydCN8eLj<$7;R6Cq6{@-m@$Gf02t z^y7!jov(~zZ3J1zkf-WS$_2|-P&dp=d!y~z**{n}9+zxF<=^}|kQ{P0?VGWW!0l^K zzd3Lw24b?hvGgpgo&GUnukRrmWnYF&n(4GNT&BEyPs-l->tk2{yPe^msM~e;XqJ>4 z!_$^{$K+5UU3il_3@4Oc;Y}KgWKOr9e|!TQd-*hXg;m(+tLP5i7Uv*zZ~YrGsTh+x zE_c24)I{u1AjA1e-?XAX+Z!35Hxtd-JA1 zT0OL5Ezz#BMi{;^Tb)J!-f^NU8h zI)!ax32nbbkjCwv$aKm);}-w-hj^6ElenmUs%y+56RA4qr;(AC{6LlR24gqUL7+~A zgn{<)t!a#dq3o1&Cj*>zOE7@LZ*6e^dj{IOuO&Ywpi_*DPdU&(R6#MB`^@R=QI-RW zeq6lnO)uYAan-r#F{(Db#2pgm8Rc7+dAZFsDl&cFs4+Okw=FKoI)ZL#al^Tb3xA4k z1=jIuYO!@Up~Or2Rj`agf+{t z%)X*&lG>T?jpIa`C{EL4kRC57UcWEbt*dt-wEc)B)vH>$Y=$UkU4r95?HREsn z)eJH`Lc=j!4a^BA2@Fx6v&t=`?GHY#%wX$eS7y9xd#B5jFTP^Z@wg)@WI(-!`UAX4 z(A}+rCNZM&>Va<_8-($5i4Epw7i(GYxs>B-iuY-?d(&QqpY&^U{3c}f_NYLJaVUU9L`>IGM{oK0Y?| zNzYt3?$VsC z9Z}vj3B=CSmTHaqRA|dRT1!t6n`nB^d~uaO zWj_7(6!Of@SN|k!n!L`eQQv^ruSC(l_^|&?b<})veXqQ2F;%H~E=!Pg_Wgvq{O^V3u$Zb>>DYMb&yz#wGFh`Q ziVs!h50oTcMXpyBR$MgCxsmK0A`mj#gE|vS;Q{BWj;7&{t5ALHw{VbSOkb-Ft@Vt9 zVxed9`n`MSzGhS!y{F(aEW4nHxUa$aw!PrELXdIE3R9tw?z7R!8jZHVjTM=a)z{sH z)d?z$iQ0#EwzuR1T{UMzu4R+PbYdo}sWLq5itF^$BCb%H)V{Q6;Erd~{w!HDWlFPu z=*Ul{@}&|QzIWLI@&YdFwl{>hZ`jf6xOeI_`+whds4);~ak{B%G8j&~M4NmAHCoh{^plxNocUS0L>Dk9Zz1@^-k47Wgl~|PK zgw~lt-CfuMmln9se%i_?)%ZvkXfwb(K!;1VXgbxK_tZI6;$u92Fo9}Dy1G04j_j%S z5XC{s#!j-&Wv5OH*EP$L$L>T0>%z`x#8wSZr^;0uA_DqP8x+JmNXHr!G48l_%30^j z&Ys*krDP)XCcx{RQfQd2cjg=H1Cb-$R(eGy)N+fL4)NW$KNWk)(1cW6kV2T8e5a=H zM0Q|zE|&3-DuN*))os7>+f5R-)XaTiQqlXwRK!TO&TmsLPIZML4iolWLC}xVJRx~s zRDVcK9fDUy)}r<)7-B$6%ED%yFIXOm~qVx!jAv}hJr2g`@;6YYc|V_|+O@p%Po zQ;iA?jF8l{7#!N-+vFQv8#ubpw=wy^CeDj$Q9DOmG5m}rr`Bbyn+oX}H(S$7ZnA!% zt0R3%<`CaYQm)}CWEAauZ1JA+K?iX`5{7VPl3|XIB-qnbBr+Kcqu0JL8_CO)D9gXS zxhA(pGI_fH%nNN#*yw?t12-3PA6|-zrCl+D8Pwe8$>t6^xJfnmj zikpT}HI(b&%i1?#3a|qPQAQ=pN?+La89u6^S`Y0J+wY_DgLQQ0;ZN?-qZw@be_r)J zoNjn|@#gZyFWNV2qr#{PIl1@>HC*>!XT(kl2{nA@vO< z9r_n*iHJW|VE?jQj@(<-{uP_*S8yq48T)Sww*r5L-hvixH9Z{gFeSXRv6->6F-*h7 z#Cg|nRY~z5tB>p`D7=!WC>1%u*$HoKOGPd$=I&r@YK?bhH^Ez2*@Xe;h#?PcU_|a&We?w`1QuqOpm+i?awPC;LB+ z>+qN3+7bBnD#mAOZwrIIfFbx$u-yYe?*&zz?9E(E@lK*jR;Et&1bcJmS9$E(_D*K( z#_WHZprv{YuVsCyr|@q6f94T}?UwzQy8J`mUo61dnVJ46+QG%iW>2!2DGYCex5e8z z6QBwr_9|#*DrgFIk+Z#%=w7>N;2nRxv9S_Wf$GF=j<>NiCV1M_r`XgN{i+T0)vq^u ziD7>|#Q(6iP&fZs-M_V^yRidQRrp?2p+tgGzv`-KZ*TM8ZO-4b3IA!pOB*}mMUikM zh8K?Jg=010I6(|T5RSeGM+(B>!m!^`?&VanH?uPL`0wQWOUnOgFG3YiQu?o3#@6Fe!9Go8|Eg{8=!O0+b(J~kbUP&y5pI4e6CnbPEURx|D0X_UUU7zJ~R%828(|V?eD`9XL3AD`aSn01rCDH$T z3aEg89mrJxhx_Y8k^5uJdymK~rp$HUHmwWHW8CwR;Sv=#%30U zLY__r9tHGM#mMCbP4sCU>iS~o>~B{epDW38_Dr>rOm$(SlrOdl@(Fb6Yl%KP_?~-k zMcMg+YIF=vNKH2?Mu=ZcJ0YfzDgw@}CdQ1Sq0*pPqCZ0y+#zB*ZK zxQgpZ`;X13`N=ci;q5veZ*syWq}}11ps9khByFjrw#}{F?n6VbT+K=^T$~NcZL!fS zJ>i*p*wa{c`6XXJT+eT;oCZ^VN_$L4?-r8-mz})y*jxo8mm`H;gRT31H`9~zb#vtu zZYGqhuPi^@I{a&$QAv~Rz0n46GZM^LaC^NYT0TBl6< zbdjg-Xv{79MNCbT+dAEn>fMT%P}1IUS)P}iTfs^BUDi75V!FW@>kTE6s!`*xtviO_ zgrde&wv0VE)OW_&wjR)~)9)B(xICi^;O7^7+o;;owfnDj_y2QmXk9N|Dkux0M>3=` z1ktB5_%ptupId4@d@`EC(9(3;yxGXoG|RZzXxco>ILr7PUUSl3U!%H&|IYQhgLf%q znzlZ_{*-?1j`|(`J3%s9K2CCu>QqvkQgA8JGzB{+{M}z)HU@ah^lh2#EC;^r7glk$ z51Ym@etCP&GsFHVgI*W|l6+h>o?(y&k$MUf7}i>3LmQ>NVGX=5xI5v^smS5bMU8>} z{NsfZVCRRzZbJ{N|Fj_>2ld?-yWO8Q1oSxjyA27&oc`U0K|{BM-Pb?!LZPXN(xIU+ z+C=Ff&wV1B093QzkB5arPV#>*0|O^67X!_s5T!$4pu62~c~Qjmg94xv)epmuBWf3n z02Ffk_v2x4#CdVV?Z=OV6Y1qgVTsy`pC3uorchOWw;|vd{@?W?-~!0sZBRsaD6IP5 z>kI`=$Na7Xl19`97y&4r_V0NG_=)-w3jYrM663cr1h5EV8}!SG-_v2?P#E;z@?ueN zqWWR^;SlF`Uw@u!7#xzQTXdU;sLx^NKhxKnK+4MCqXOnb-!@#f~S= z3(x^wm&EA+I`{!P_yIcj0Xm?cpb(WI0MG%=6BDNc=zvCS#OVM!pnC*yI)DxVfDY(h zOq3T3(18W$fbL<$c>y}G03Fc%fH*He2Ns|M3(x`G4~UKj?Nvc+1L(j3bU>RM5a$Kx zzyWmN06HM15FZbq14pc5mv6u4g?@7euo3G(K=)4Kyu>;nssPdv>wriDNJp##0WpuL zTm(P|0-yr{(18HxKmc?g06Gu=9njc^xPAZ~5X*?tL98XV0dzp)4dQeF9T01Y(*blq z;{)P!03Aqx4kSPa3ZMfTGZ2-50_Z>ibU>SX5a$KxfF37_(*bk z0pK|T130e$JVyX{j)2CPMD+vk90A}t0@?$HI4?j4KcGJVJVyX{jsWl+0pK|Tz;gtE z=Li8ne*k!n5CG@^@EjokIIjRaM*w(^0Pq|E;5h=oa|9Nk1Hf|xfaeHke<7lN1MnOH z;5h=oa|D3r29ITFBgB$D{NLIQY>L<0H)z;h%L&>sMvBcXW)qIL%G90}k#6pVp5FM#Jzqy|7b zfDQo9ksMv zBLO@|0(g!D@Ei%?ITFBgB!K5g0MC&Co+AM~M*?^b&FT}k6@cfvb4EmM58ycxz;h&k z=SaZwITFBgD2NE4T)=q+;5ib&b0mQ0NC3}~0G=ZOJclOOi0cR7ITFBgC=Li9FQ7jF zJVyd}js)-=3E(*rz;h&k=ezp_67@NN=STq0cjxPf@&b5{1n?Y+2?NLrxL*Nyjs)-= z3E(*rz;h&k=TIaXqPjp)U;sAa>jMSgISRmY6rA{e1?@`-D1*2^cIQujZ)X&M=O_Tr zA%{fbya1k~06a$lc#a}sH$NIQZ;Jx(90lMx3czy|fafRx&rtxL@2&?BwG|P&`O(k@ zn7_?GLsQKFo}&OfM*(<_0`MFK;5iDwa}p~N{&@(v|`I$49RAi{g|5)pVQ<49FsU1w!3GWJR8oXO6*sec`hO;g7akt%muQ&pZ JMgLLp{{x_+u8jZy literal 0 HcmV?d00001