diff --git a/.editorconfig b/.editorconfig index e62b82865..6df84280f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,18 @@ root = true [*] +charset = utf-8 end_of_line = lf +indent_size = 4 +indent_style = space insert_final_newline = true -charset = utf-8 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[{compose,docker-compose}.{yml,yaml}] +indent_size = 4 diff --git a/.env.example b/.env.example new file mode 100644 index 000000000..cef5f9084 --- /dev/null +++ b/.env.example @@ -0,0 +1,65 @@ +APP_NAME=OpenCATS +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=mariadb +DB_HOST=mariadb +DB_PORT=3306 +DB_DATABASE=laravel +DB_USERNAME=sail +DB_PASSWORD=password + +SESSION_DRIVER=file +SESSION_LIFETIME=120 +SESSION_ENCRYPT=false +SESSION_PATH=/ +SESSION_DOMAIN=null + +BROADCAST_CONNECTION=log +FILESYSTEM_DISK=local +QUEUE_CONNECTION=sync + +CACHE_STORE=file +# 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/.gitattributes b/.gitattributes index 6313b56c5..fcb21d396 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +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/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e1e2031e..460758a3e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,14 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['8.4.1', '8.5'] + # Each version needs a matching Sail runtime directory + # (vendor/laravel/sail/runtimes/); SAIL_RUNTIME selects it. + php-version: ['8.4', '8.5'] + env: + # Sail shells out to `docker compose`, which honours COMPOSE_FILE and + # merges the CI-only legacy services from compose.ci.yml into the stack. + COMPOSE_FILE: compose.yaml:compose.ci.yml + SAIL_RUNTIME: ${{ matrix.php-version }} steps: - name: Checkout Code @@ -35,65 +42,78 @@ jobs: uses: actions/cache@v4 with: path: ~/.composer/cache - key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} + key: ${{ runner.os }}-composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} restore-keys: | - ${{ runner.os }}-php-${{ matrix.php-version }}- - ${{ runner.os }}-php- + ${{ runner.os }}-composer-${{ matrix.php-version }}- + ${{ runner.os }}-composer- - - name: Install Dependencies - run: composer install --no-progress --prefer-dist - - - name: PHP Syntax Check (Lint) - run: find src -name "*.php" -print0 | xargs -0 -n1 php -l - - - name: Composer Security Audit - # We use || true so legacy vulnerabilities don't block the build - run: composer audit || true + - name: Prepare Laravel environment + run: cp .env.example .env - - name: Create Reports Directory - run: mkdir -p reports/behat-default reports/behat-security test/screenshots + - name: Install Dependencies + run: composer install --no-progress --prefer-dist --no-interaction - - name: Run PHPUnit (Unit Tests) - run: ./vendor/bin/phpunit --log-junit reports/unit-report.xml --testsuite UnitTests + - name: Generate application key + run: php artisan key:generate - - name: Run Integration Tests (Docker) + - name: Prepare directories & permissions run: | - # 1. Prepare environment files - cp test/config.php ./config.php - touch ./INSTALL_BLOCK - - cd docker/ - PHP_VERSION=${{ matrix.php-version }} docker compose -f docker-compose-test.yml up -d --build + mkdir -p reports legacy/test/screenshots + chmod -R 777 storage bootstrap/cache - echo "Waiting for BOTH databases..." - opencatsdb_container="$(docker compose -f docker-compose-test.yml ps -q opencatsdb)" - [ -n "$opencatsdb_container" ] || { echo "opencatsdb container ID not found"; exit 1; } - timeout 180s bash -c "until [ \"\$(docker inspect --format '{{.State.Health.Status}}' \"${opencatsdb_container}\" 2>/dev/null)\" = \"healthy\" ]; do sleep 3; done" - integrationtestdb_container="$(docker compose -f docker-compose-test.yml ps -q integrationtestdb)" - [ -n "$integrationtestdb_container" ] || { echo "integrationtestdb container ID not found"; exit 1; } - timeout 180s bash -c "until [ \"\$(docker inspect --format '{{.State.Health.Status}}' \"${integrationtestdb_container}\" 2>/dev/null)\" = \"healthy\" ]; do sleep 3; done" + - name: Prepare legacy test configuration + run: | + cp legacy/test/config.php legacy/config.php + touch legacy/INSTALL_BLOCK - # 2. Pre-clean the integration database - docker compose -f docker-compose-test.yml exec -T integrationtestdb mysql -udev -pdev -e "DROP DATABASE IF EXISTS cats_integrationtest; CREATE DATABASE cats_integrationtest;" + - name: PHP Syntax Check (Lint) + run: | + find app -name "*.php" -print0 | xargs -0 -n1 -P4 php -l + find legacy/src -name "*.php" -print0 | xargs -0 -n1 -P4 php -l - # 3. DIAGNOSTIC: Check if PHP can resolve the database hostname - echo "Diagnostic: Resolving integrationtestdb from PHP container..." - docker compose -f docker-compose-test.yml exec -T php php -r "echo 'IP for integrationtestdb: ' . gethostbyname('integrationtestdb') . PHP_EOL;" + - name: Composer Security Audit + # `|| true` so legacy transitive vulnerabilities don't block the build. + run: composer audit || true - echo "Running PHPUnit Integration Tests..." - docker compose -f docker-compose-test.yml exec -T --workdir /var/www/public php ./vendor/bin/phpunit --log-junit /var/www/public/reports/integration-report.xml --testsuite IntegrationTests + - name: Build Sail image + run: ./vendor/bin/sail build - echo "Running Behat Suites..." - docker compose -f docker-compose-test.yml exec -T --workdir /var/www/public php ./vendor/bin/behat -v -c ./test/behat.yml --suite="default" --format=progress --out=std --format=junit --out=reports/behat-default - docker compose -f docker-compose-test.yml exec -T --workdir /var/www/public php ./vendor/bin/behat -v -c ./test/behat.yml --suite="security" --format=progress --out=std --format=junit --out=reports/behat-security - # continue-on-error: true + - name: Start Sail stack + run: | + ./vendor/bin/sail up -d --wait + ./vendor/bin/sail ps + + - name: Run Laravel tests + run: ./vendor/bin/sail artisan test --log-junit reports/laravel-report.xml + + # The legacy suites run inside the app container with cwd=legacy so + # their relative includes (./config.php, ./constants.php, db/, lib/) resolve. + - name: Run legacy Unit tests + run: > + ./vendor/bin/sail exec -T laravel.test bash -c + "cd /var/www/html/legacy && + ../vendor/bin/phpunit -c phpunit.xml.dist --testsuite UnitTests + --log-junit /var/www/html/reports/legacy-unit-report.xml" + + - name: Run legacy Integration tests + run: > + ./vendor/bin/sail exec -T laravel.test bash -c + "cd /var/www/html/legacy && + ../vendor/bin/phpunit -c phpunit.xml.dist --testsuite IntegrationTests + --log-junit /var/www/html/reports/legacy-integration-report.xml" + + - name: Run legacy Behat suites + run: | + ./vendor/bin/sail exec -T laravel.test bash -c \ + "cd /var/www/html/legacy && ../vendor/bin/behat -v -c test/behat.yml --suite=default --format=progress --out=std --format=junit --out=../reports/behat-default" + ./vendor/bin/sail exec -T laravel.test bash -c \ + "cd /var/www/html/legacy && ../vendor/bin/behat -v -c test/behat.yml --suite=security --format=progress --out=std --format=junit --out=../reports/behat-security" - - name: Docker Diagnostics + - name: Stack diagnostics if: failure() run: | - cd docker/ - docker compose -f docker-compose-test.yml ps - docker compose -f docker-compose-test.yml logs --tail=200 opencatsdb integrationtestdb php + ./vendor/bin/sail ps + ./vendor/bin/sail logs --tail=200 - name: Publish Test Report uses: mikepenz/action-junit-report@v4 @@ -110,12 +130,12 @@ jobs: uses: actions/upload-artifact@v4 with: name: behat-screenshots-php${{ matrix.php-version }} - path: test/screenshots/ + path: legacy/test/screenshots/ retention-days: 5 - - name: Shutdown Docker + - name: Shutdown Sail if: always() - run: cd docker && docker compose -f docker-compose-test.yml down + run: ./vendor/bin/sail down -v release: name: Create GitHub Release @@ -130,7 +150,9 @@ jobs: - name: Create Release Archive run: | - zip -r opencats-${{ github.ref_name }}.zip . -x "*.git*" "docker/*" "test/*" "reports/*" ".github/*" "phpunit.xml" + zip -r opencats-${{ github.ref_name }}.zip . \ + -x "*.git*" "tests/*" "legacy/test/*" "reports/*" ".github/*" \ + "phpunit.xml" "legacy/phpunit.xml.dist" "compose.ci.yml" - name: Create GitHub Release env: diff --git a/.gitignore b/.gitignore index 0d8cd20ed..7be55e2e8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,27 @@ -INSTALL_BLOCK -.buildpath -.project -.settings/* -docker/data/* -docker/persist/* -vendor/* -attachments/* -temp/* -!temp/.htaccess -uploads/* -# Ignore Mac DS_Store files +*.log .DS_Store -/vendor/ +.env +.env.backup +.env.production +.phpactor.json .phpunit.result.cache -*.diff -*.rej +/.codex +/.cursor/ +/.idea +/.nova +/.phpunit.cache +/.vscode +/.zed +/auth.json +/node_modules +/public/build +/public/fonts-manifest.dev.json +/public/hot +/public/storage +/storage/*.key +/storage/pail +/vendor +_ide_helper.php +Homestead.json +Homestead.yaml +Thumbs.db diff --git a/.htaccess b/.htaccess index e58fd31cc..4ce0ea2be 100644 --- a/.htaccess +++ b/.htaccess @@ -1,16 +1,8 @@ -IndexIgnore * - Options -Indexes -# Security headers (requires mod_headers; AllowOverride FileInfo or All). -# Basic security headers. -# These defaults are intentionally conservative to avoid breaking common customizations. - - Header always set X-Content-Type-Options "nosniff" - Header always set Referrer-Policy "strict-origin-when-cross-origin" - Header always set Permissions-Policy "camera=(), microphone=(), geolocation=(), payment=(), usb=()" + + RewriteEngine On - # Prevent clickjacking on the OpenCATS UI. - # Note: /careers/ intentionally unsets this header in careers/.htaccess to allow embedding Career Portal into external websites using an iframe. - Header always set X-Frame-Options "SAMEORIGIN" + RewriteRule ^public(/|$) - [L] + RewriteRule ^(.*)$ public/$1 [L] diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..495a6af99 --- /dev/null +++ b/.npmrc @@ -0,0 +1,2 @@ +ignore-scripts=true +audit=true diff --git a/README-testing.md b/README-testing.md deleted file mode 100644 index b14dd33d7..000000000 --- a/README-testing.md +++ /dev/null @@ -1,46 +0,0 @@ -# CI/CD Testing Infrastructure Notes - -## Overview of Databases -This project uses two distinct MariaDB instances during the testing phase to ensure data isolation: - -### 1. opencatsdb (Port 3306) -* **Purpose:** Primary application database for functional testing. -* **Data:** Pre-seeded with `db/cats_schema.sql` and `test/data/securityTests.sql` via Docker's `initdb.d`. -* **Used By:** Manual development, Behat (Gherkin/Selenium) suites. - -### 2. integrationtestdb (Port 3307) -* **Purpose:** A "Disposable Sandbox" for PHPUnit Integration Tests. -* **Behavior:** The `DatabaseTestCase.php` class drops and recreates this database for every test run to ensure a clean schema build from `db/cats_schema.sql`. - ---- - -## Running Tests Locally -To mirror the CI environment on your machine: - -1. **Prepare the environment:** - ```bash - cp test/config.php ./config.php - touch ./INSTALL_BLOCK - ``` - -2. **Start the containers:** - ```bash - cd docker/ - docker compose -f docker-compose-test.yml up -d --build - ``` - -3. **Install PHP dependencies (Composer):** - ```bash - docker compose -f docker-compose-test.yml exec -T --workdir /var/www/public php composer install --no-interaction --prefer-dist - ``` - -4. **Run the suites:** - * **PHPUnit Unit Tests:** `docker compose -f docker-compose-test.yml exec php ./vendor/bin/phpunit --testsuite UnitTests` - * **PHPUnit Integration Tests:** `docker compose -f docker-compose-test.yml exec php ./vendor/bin/phpunit --testsuite IntegrationTests` - * **Behat:** `docker compose -f docker-compose-test.yml exec php ./vendor/bin/behat -c ./test/behat.yml` - ---- - -## Troubleshooting -* **Connection Errors:** If tests fail to connect, verify the `integrationtestdb` container is healthy. The CI uses `mysqladmin ping` to ensure the DB is ready before PHP attempts to connect. -* **Risky Tests:** PHPUnit may flag empty test methods (placeholders) as "Risky." These do not fail the build but should be implemented in future PRs. diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 000000000..8677cd5ca --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,8 @@ + + */ + private const ENTRY_POINT_MAP = [ + '/' => 'index.php', + '/index.php' => 'index.php', + '/ajax.php' => 'ajax.php', + '/careers' => 'careers/index.php', + '/careers/' => 'careers/index.php', + '/careers/index.php' => 'careers/index.php', + '/rss' => 'rss/index.php', + '/rss/' => 'rss/index.php', + '/rss/index.php' => 'rss/index.php', + '/xml' => 'xml/index.php', + '/xml/' => 'xml/index.php', + '/xml/index.php' => 'xml/index.php', + '/installtest.php' => 'installtest.php', + '/installwizard.php' => 'installwizard.php', + '/rebuild_old_docs.php' => 'rebuild_old_docs.php', + ]; + + public function handle(Request $request): Response + { + [$legacyBasePath, $legacyScriptPath, $legacyScriptName] = $this->resolveLegacyScriptPaths($request); + if ($legacyScriptPath === null || $legacyScriptName === null || $legacyBasePath === null) { + abort(404); + } + + $serverRestoreState = $this->prepareLegacyServerState($request, $legacyBasePath, $legacyScriptPath, $legacyScriptName); + $serverRestoreState = $this->mergeServerBagValues($request, $serverRestoreState); + + $previousDirectory = getcwd(); + $originalHttpStatus = http_response_code(); + $headersBeforeExecution = headers_list(); + $nativeHeaders = []; + $nativeStatus = $originalHttpStatus ?: 200; + $legacyBufferLevel = ob_get_level(); + $legacyExecuted = false; + + ob_start(); + + try { + chdir($legacyBasePath); + + require $legacyScriptPath; + $legacyExecuted = true; + } catch (Throwable $exception) { + while (ob_get_level() > $legacyBufferLevel) { + ob_end_clean(); + } + + throw $exception; + } finally { + $nativeStatus = http_response_code() ?: $nativeStatus; + $headersAfterExecution = headers_list(); + $nativeHeaders = $this->collectLegacyNativeHeaders($headersBeforeExecution, $headersAfterExecution); + $this->clearLegacyNativeHeaders($headersBeforeExecution, $headersAfterExecution); + http_response_code($originalHttpStatus ?: 200); + + $this->restoreLegacyServerState($serverRestoreState); + + if ($previousDirectory !== false) { + chdir($previousDirectory); + } + } + + $content = ''; + if ($legacyExecuted && ob_get_level() > $legacyBufferLevel) { + $content = ob_get_clean() ?: ''; + } + + $responseStatus = $nativeStatus ?: ($originalHttpStatus ?: 200); + $response = response($content, $responseStatus); + + $this->applyNativeHeadersToResponse($response, $nativeHeaders); + + return $response; + } + + private function resolveLegacyEntryPoint(Request $request): ?string + { + $path = $request->getPathInfo(); + + return self::ENTRY_POINT_MAP[$path] ?? null; + } + + /** + * @return array{0: string|null, 1: string|null, 2: string|null} + */ + private function resolveLegacyScriptPaths(Request $request): array + { + $legacyEntryPoint = $this->resolveLegacyEntryPoint($request); + if ($legacyEntryPoint === null) { + return [null, null, null]; + } + + $legacyBasePath = realpath(base_path('legacy')); + if ($legacyBasePath === false) { + return [null, null, null]; + } + + $legacyScriptPath = realpath($legacyBasePath . DIRECTORY_SEPARATOR . ltrim($legacyEntryPoint, '/')); + if ($legacyScriptPath === false || ! is_file($legacyScriptPath)) { + return [null, null, null]; + } + + $legacyBasePrefix = rtrim($legacyBasePath, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; + if (! str_starts_with($legacyScriptPath, $legacyBasePrefix)) { + return [null, null, null]; + } + + $legacyScriptName = '/' . ltrim($legacyEntryPoint, '/'); + + return [$legacyBasePath, $legacyScriptPath, $legacyScriptName]; + } + + /** + * @return array + */ + private function prepareLegacyServerState( + Request $request, + string $legacyBasePath, + string $legacyScriptPath, + string $legacyScriptName + ): array { + $keys = ['PHP_SELF', 'SCRIPT_NAME', 'SCRIPT_FILENAME', 'REQUEST_URI', 'DOCUMENT_ROOT']; + $originalValues = []; + + foreach ($keys as $key) { + if (array_key_exists($key, $_SERVER)) { + $originalValues[$key] = ['exists' => true, 'value' => $_SERVER[$key]]; + } else { + $originalValues[$key] = ['exists' => false, 'value' => null]; + } + } + + $_SERVER['PHP_SELF'] = $legacyScriptName; + $_SERVER['SCRIPT_NAME'] = $legacyScriptName; + $_SERVER['SCRIPT_FILENAME'] = $legacyScriptPath; + $_SERVER['REQUEST_URI'] = $request->getRequestUri(); + $_SERVER['DOCUMENT_ROOT'] = $legacyBasePath; + + return $originalValues; + } + + /** + * @param array $originalValues + * @return array + */ + private function mergeServerBagValues(Request $request, array $originalValues): array + { + foreach ($request->server->all() as $key => $value) { + if (array_key_exists($key, $_SERVER)) { + continue; + } + + $originalValues[$key] = ['exists' => false, 'value' => null]; + $_SERVER[$key] = $value; + } + + return $originalValues; + } + + /** + * @param array $originalValues + */ + private function restoreLegacyServerState(array $originalValues): void + { + foreach ($originalValues as $key => $state) { + if (($state['exists'] ?? false) === true) { + $_SERVER[$key] = $state['value']; + continue; + } + + unset($_SERVER[$key]); + } + } + + /** + * @param list $nativeHeaders + */ + private function applyNativeHeadersToResponse(Response $response, array $nativeHeaders): void + { + foreach ($nativeHeaders as $headerLine) { + if (! str_contains($headerLine, ':')) { + continue; + } + + [$name, $value] = explode(':', $headerLine, 2); + $name = trim($name); + $value = trim($value); + + if ($name === '' || $value === '') { + continue; + } + + if (strcasecmp($name, 'Set-Cookie') === 0) { + $response->headers->setCookie(Cookie::fromString($value)); + continue; + } + + $response->headers->set($name, $value, true); + } + } + + /** + * @param list $headersBeforeExecution + * @param list $headersAfterExecution + */ + private function collectLegacyNativeHeaders(array $headersBeforeExecution, array $headersAfterExecution): array + { + return array_values(array_diff($headersAfterExecution, $headersBeforeExecution)); + } + + /** + * @param list $headersBeforeExecution + * @param list $headersAfterExecution + */ + private function clearLegacyNativeHeaders(array $headersBeforeExecution, array $headersAfterExecution): void + { + foreach ($this->collectLegacyNativeHeaders($headersBeforeExecution, $headersAfterExecution) as $headerLine) { + if (! str_contains($headerLine, ':')) { + continue; + } + + [$name] = explode(':', $headerLine, 2); + $headerName = trim($name); + if ($headerName === '') { + continue; + } + + header_remove($headerName); + } + } +} diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 000000000..f6ba1d2e8 --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,32 @@ + */ + use HasFactory, Notifiable; + + /** + * Get the attributes that should be cast. + * + * @return array + */ + protected function casts(): array + { + return [ + 'email_verified_at' => 'datetime', + 'password' => 'hashed', + ]; + } +} diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php new file mode 100644 index 000000000..452e6b65b --- /dev/null +++ b/app/Providers/AppServiceProvider.php @@ -0,0 +1,24 @@ +handleCommand(new ArgvInput); + +exit($status); diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 000000000..c1832766e --- /dev/null +++ b/bootstrap/app.php @@ -0,0 +1,18 @@ +withRouting( + web: __DIR__.'/../routes/web.php', + commands: __DIR__.'/../routes/console.php', + health: '/up', + ) + ->withMiddleware(function (Middleware $middleware): void { + // + }) + ->withExceptions(function (Exceptions $exceptions): void { + // + })->create(); diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/bootstrap/providers.php b/bootstrap/providers.php new file mode 100644 index 000000000..fc94ae601 --- /dev/null +++ b/bootstrap/providers.php @@ -0,0 +1,7 @@ +=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": "ckeditor/ckeditor", "version": "4.25.1", @@ -55,156 +184,199 @@ "time": "2025-02-05T12:32:07+00:00" }, { - "name": "neutron/sphinxsearch-api", - "version": "2.0.8.1", + "name": "dflydev/dot-access-data", + "version": "v3.0.3", "source": { "type": "git", - "url": "https://github.com/romainneutron/Sphinx-Search-API-PHP-Client.git", - "reference": "a18fd84951ea1fb006387e2d099d025235b14d34" + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/romainneutron/Sphinx-Search-API-PHP-Client/zipball/a18fd84951ea1fb006387e2d099d025235b14d34", - "reference": "a18fd84951ea1fb006387e2d099d025235b14d34", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", "shasum": "" }, "require": { - "php": ">=4" + "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": { - "classmap": [ - "sphinxapi.php" - ] + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL" + "MIT" ], "authors": [ { - "name": "Andrew Aksyonoff", - "homepage": "http://sphinxsearch.com/" + "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": "SphinxSearch PHP API", - "homepage": "http://sphinxsearch.com/", + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", "keywords": [ - "Sphinx Search", - "api", - "search-engine" + "access", + "data", + "dot", + "notation" ], "support": { - "issues": "https://github.com/romainneutron/Sphinx-Search-API-PHP-Client/issues", - "source": "https://github.com/romainneutron/Sphinx-Search-API-PHP-Client/tree/master" + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" }, - "time": "2018-07-09T14:18:54+00:00" + "time": "2024-07-08T12:26:09+00:00" }, { - "name": "phpmailer/phpmailer", - "version": "v7.1.1", + "name": "doctrine/inflector", + "version": "2.1.0", "source": { "type": "git", - "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "1bc1716a507a65e039d4ac9d9adebbbd0d346e15" + "url": "https://github.com/doctrine/inflector.git", + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/1bc1716a507a65e039d4ac9d9adebbbd0d346e15", - "reference": "1bc1716a507a65e039d4ac9d9adebbbd0d346e15", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b", + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b", "shasum": "" }, "require": { - "ext-ctype": "*", - "ext-filter": "*", - "ext-hash": "*", - "php": ">=5.5.0" + "php": "^7.2 || ^8.0" }, "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^1.0", - "doctrine/annotations": "^1.2.6 || ^1.13.3", - "php-parallel-lint/php-console-highlighter": "^1.0.0", - "php-parallel-lint/php-parallel-lint": "^1.3.2", - "phpcompatibility/php-compatibility": "^10.0.0@dev", - "squizlabs/php_codesniffer": "^3.13.5", - "yoast/phpunit-polyfills": "^1.0.4" - }, - "suggest": { - "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication", - "directorytree/imapengine": "For uploading sent messages via IMAP, see gmail example", - "ext-imap": "Needed to support advanced email address parsing according to RFC822", - "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", - "ext-openssl": "Needed for secure SMTP sending and DKIM signing", - "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication", - "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", - "league/oauth2-google": "Needed for Google XOAUTH2 authentication", - "psr/log": "For optional PSR-3 debug logging", - "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)", - "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication" + "doctrine/coding-standard": "^12.0 || ^13.0", + "phpstan/phpstan": "^1.12 || ^2.0", + "phpstan/phpstan-phpunit": "^1.4 || ^2.0", + "phpstan/phpstan-strict-rules": "^1.6 || ^2.0", + "phpunit/phpunit": "^8.5 || ^12.2" }, "type": "library", "autoload": { "psr-4": { - "PHPMailer\\PHPMailer\\": "src/" + "Doctrine\\Inflector\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-only" + "MIT" ], "authors": [ { - "name": "Marcus Bointon", - "email": "phpmailer@synchromedia.co.uk" + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" }, { - "name": "Jim Jagielski", - "email": "jimjag@gmail.com" + "name": "Roman Borschel", + "email": "roman@code-factory.org" }, { - "name": "Andy Prevost", - "email": "codeworxtech@users.sourceforge.net" + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" }, { - "name": "Brent R. Matzelle" + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" } ], - "description": "PHPMailer is a full-featured email creation and transfer class for PHP", + "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/PHPMailer/PHPMailer/issues", - "source": "https://github.com/PHPMailer/PHPMailer/tree/v7.1.1" + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.1.0" }, "funding": [ { - "url": "https://github.com/Synchro", - "type": "github" + "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": "2026-05-18T08:06:14+00:00" + "time": "2025-08-10T19:31:58+00:00" }, { - "name": "setasign/fpdf", - "version": "1.9.0", + "name": "doctrine/lexer", + "version": "3.0.1", "source": { "type": "git", - "url": "https://github.com/Setasign/FPDF.git", - "reference": "051b70e4c57dedc88df41b1eff1c62894e5f9ed0" + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Setasign/FPDF/zipball/051b70e4c57dedc88df41b1eff1c62894e5f9ed0", - "reference": "051b70e4c57dedc88df41b1eff1c62894e5f9ed0", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", "shasum": "" }, "require": { - "ext-gd": "*", - "ext-zlib": "*" + "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": { - "classmap": [ - "fpdf.php" - ] + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -212,79 +384,81 @@ ], "authors": [ { - "name": "Olivier Plathey", - "email": "oliver@fpdf.org", - "homepage": "http://fpdf.org/" + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" } ], - "description": "FPDF is a PHP class which allows to generate PDF files with pure PHP. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs.", - "homepage": "http://www.fpdf.org", + "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": [ - "fpdf", - "pdf" + "annotations", + "docblock", + "lexer", + "parser", + "php" ], "support": { - "source": "https://github.com/Setasign/FPDF/tree/1.9.0" + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" }, - "time": "2026-05-31T14:25:29+00:00" - } - ], - "packages-dev": [ + "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": "behat/behat", - "version": "v3.32.0", + "name": "dragonmantank/cron-expression", + "version": "v3.6.0", "source": { "type": "git", - "url": "https://github.com/Behat/Behat.git", - "reference": "b9b89cf7a3b24c04d6e2d2865ed51bc5e1700de9" + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Behat/zipball/b9b89cf7a3b24c04d6e2d2865ed51bc5e1700de9", - "reference": "b9b89cf7a3b24c04d6e2d2865ed51bc5e1700de9", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/d61a8a9604ec1f8c3d150d09db6ce98b32675013", + "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013", "shasum": "" }, "require": { - "behat/gherkin": "^4.17.0", - "composer-runtime-api": "^2.2", - "composer/xdebug-handler": "^1.4 || ^2.0 || ^3.0", - "ext-mbstring": "*", - "nikic/php-parser": "^4.19.2 || ^5.2", - "php": ">=8.2 <8.6", - "psr/container": "^1.0 || ^2.0", - "symfony/config": "^5.4 || ^6.4 || ^7.0", - "symfony/console": "^5.4.9 || ^6.4 || ^7.0", - "symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0", - "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0", - "symfony/translation": "^5.4 || ^6.4 || ^7.0", - "symfony/yaml": "^5.4 || ^6.4 || ^7.0" + "php": "^8.2|^8.3|^8.4|^8.5" }, - "require-dev": { - "opis/json-schema": "^2.5", - "php-cs-fixer/shim": "^3.89", - "phpstan/phpstan": "2.1.46", - "phpunit/phpunit": "^9.6", - "rector/rector": "2.3.9", - "sebastian/diff": "^4.0", - "symfony/filesystem": "^5.4 || ^6.4 || ^7.0", - "symfony/polyfill-php84": "^1.31", - "symfony/process": "^5.4 || ^6.4 || ^7.0" + "replace": { + "mtdowling/cron-expression": "^1.0" }, - "suggest": { - "ext-dom": "Needed to output test results in JUnit format." + "require-dev": { + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.32|^2.1.31", + "phpunit/phpunit": "^8.5.48|^9.0" }, - "bin": [ - "bin/behat" - ], "type": "library", - "autoload": { - "psr-4": { - "Behat\\Hook\\": "src/Behat/Hook/", - "Behat\\Step\\": "src/Behat/Step/", - "Behat\\Behat\\": "src/Behat/Behat/", - "Behat\\Config\\": "src/Behat/Config/", - "Behat\\Testwork\\": "src/Behat/Testwork/", - "Behat\\Transformation\\": "src/Behat/Transformation/" + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" } }, "notification-url": "https://packagist.org/downloads/", @@ -293,87 +467,63 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" } ], - "description": "Scenario-oriented BDD framework for PHP", - "homepage": "https://behat.org/", + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", "keywords": [ - "Agile", - "BDD", - "ScenarioBDD", - "Scrum", - "StoryBDD", - "User story", - "business", - "development", - "documentation", - "examples", - "symfony", - "testing" + "cron", + "schedule" ], "support": { - "issues": "https://github.com/Behat/Behat/issues", - "source": "https://github.com/Behat/Behat/tree/v3.32.0" + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.6.0" }, "funding": [ { - "url": "https://github.com/acoulton", - "type": "github" - }, - { - "url": "https://github.com/carlos-granados", - "type": "github" - }, - { - "url": "https://github.com/stof", + "url": "https://github.com/dragonmantank", "type": "github" } ], - "time": "2026-06-20T08:34:52+00:00" + "time": "2025-10-31T18:51:33+00:00" }, { - "name": "behat/gherkin", - "version": "v4.17.0", + "name": "egulias/email-validator", + "version": "4.0.4", "source": { "type": "git", - "url": "https://github.com/Behat/Gherkin.git", - "reference": "5c8b3149fac39b5a79942b64eeec59a5ee4001c0" + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/5c8b3149fac39b5a79942b64eeec59a5ee4001c0", - "reference": "5c8b3149fac39b5a79942b64eeec59a5ee4001c0", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", "shasum": "" }, "require": { - "composer-runtime-api": "^2.2", - "php": ">=8.1 <8.6" + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" }, "require-dev": { - "cucumber/gherkin-monorepo": "dev-gherkin-v39.1.0", - "friendsofphp/php-cs-fixer": "^3.77", - "mikey179/vfsstream": "^1.6", - "phpstan/extension-installer": "^1", - "phpstan/phpstan": "^2", - "phpstan/phpstan-phpunit": "^2", - "phpunit/phpunit": "^10.5", - "symfony/yaml": "^5.4 || ^6.4 || ^7.0" + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" }, "suggest": { - "symfony/yaml": "If you want to parse features, represented in YAML files" + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev" + "dev-master": "4.0.x-dev" } }, "autoload": { "psr-4": { - "Behat\\Gherkin\\": "src/" + "Egulias\\EmailValidator\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -382,82 +532,62 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "https://everzet.com" + "name": "Eduardo Gulias Davis" } ], - "description": "Gherkin DSL parser for PHP", - "homepage": "https://behat.org/", + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", "keywords": [ - "BDD", - "Behat", - "Cucumber", - "DSL", - "gherkin", - "parser" + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" ], "support": { - "issues": "https://github.com/Behat/Gherkin/issues", - "source": "https://github.com/Behat/Gherkin/tree/v4.17.0" + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.4" }, "funding": [ { - "url": "https://github.com/acoulton", - "type": "github" - }, - { - "url": "https://github.com/carlos-granados", - "type": "github" - }, - { - "url": "https://github.com/stof", + "url": "https://github.com/egulias", "type": "github" } ], - "time": "2026-05-18T09:33:47+00:00" + "time": "2025-03-06T22:45:56+00:00" }, { - "name": "behat/mink", - "version": "v1.13.0", + "name": "fruitcake/php-cors", + "version": "v1.4.0", "source": { "type": "git", - "url": "https://github.com/minkphp/Mink.git", - "reference": "9b08f62937c173affe070c04bb072d7ea1db1be5" + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/Mink/zipball/9b08f62937c173affe070c04bb072d7ea1db1be5", - "reference": "9b08f62937c173affe070c04bb072d7ea1db1be5", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379", + "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379", "shasum": "" }, "require": { - "php": ">=7.2", - "symfony/css-selector": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0" + "php": "^8.1", + "symfony/http-foundation": "^5.4|^6.4|^7.3|^8" }, "require-dev": { - "jetbrains/phpstorm-attributes": "*", - "phpstan/phpstan": "^1.12.32", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", - "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0 || ^8.0" - }, - "suggest": { - "behat/mink-browserkit-driver": "fast headless driver for any app without JS emulation", - "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)", - "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)", - "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)" + "phpstan/phpstan": "^2", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^4" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.3-dev" } }, "autoload": { "psr-4": { - "Behat\\Mink\\": "src/" + "Fruitcake\\Cors\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -466,65 +596,62 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barryvdh", + "email": "barryvdh@gmail.com" } ], - "description": "Browser controller/emulator abstraction for PHP", - "homepage": "https://mink.behat.org/", + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", "keywords": [ - "browser", - "testing", - "web" + "cors", + "laravel", + "symfony" ], "support": { - "issues": "https://github.com/minkphp/Mink/issues", - "source": "https://github.com/minkphp/Mink/tree/v1.13.0" + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.4.0" }, - "time": "2025-11-22T12:18:15+00:00" + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2025-12-03T09:33:47+00:00" }, { - "name": "behat/mink-browserkit-driver", - "version": "v2.3.0", + "name": "graham-campbell/result-type", + "version": "v1.1.4", "source": { "type": "git", - "url": "https://github.com/minkphp/MinkBrowserKitDriver.git", - "reference": "d361516cba6e684bdc4518b9c044edc77f249e36" + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/d361516cba6e684bdc4518b9c044edc77f249e36", - "reference": "d361516cba6e684bdc4518b9c044edc77f249e36", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b", + "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b", "shasum": "" }, "require": { - "behat/mink": "^1.11.0@dev", - "ext-dom": "*", - "php": ">=7.2", - "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", - "symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0" + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.5" }, "require-dev": { - "mink/driver-testsuite": "dev-master", - "phpstan/phpstan": "^1.10", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^8.5 || ^9.5", - "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", - "symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", - "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", - "symfony/mime": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", - "yoast/phpunit-polyfills": "^1.0" - }, - "type": "mink-driver", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } + "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7" }, + "type": "library", "autoload": { "psr-4": { - "Behat\\Mink\\Driver\\": "src/" + "GrahamCampbell\\ResultType\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -533,61 +660,88 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" } ], - "description": "Symfony2 BrowserKit driver for Mink framework", - "homepage": "https://mink.behat.org/", + "description": "An Implementation Of The Result Type", "keywords": [ - "Mink", - "Symfony2", - "browser", - "testing" + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" ], "support": { - "issues": "https://github.com/minkphp/MinkBrowserKitDriver/issues", - "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v2.3.0" + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4" }, - "time": "2025-11-22T12:42:18+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2025-12-27T19:43:20+00:00" }, { - "name": "behat/mink-selenium2-driver", - "version": "v1.7.0", + "name": "guzzlehttp/guzzle", + "version": "7.11.1", "source": { "type": "git", - "url": "https://github.com/minkphp/MinkSelenium2Driver.git", - "reference": "4ca4083f305de7dff4434ac402dc4e3f39c0866a" + "url": "https://github.com/guzzle/guzzle.git", + "reference": "5af96f374e0ab4ebd747b8310888c99d3adb0a8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/4ca4083f305de7dff4434ac402dc4e3f39c0866a", - "reference": "4ca4083f305de7dff4434ac402dc4e3f39c0866a", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/5af96f374e0ab4ebd747b8310888c99d3adb0a8c", + "reference": "5af96f374e0ab4ebd747b8310888c99d3adb0a8c", "shasum": "" }, "require": { - "behat/mink": "^1.11@dev", "ext-json": "*", - "instaclick/php-webdriver": "^1.4.14", - "php": ">=7.2" + "guzzlehttp/promises": "^2.5", + "guzzlehttp/psr7": "^2.11", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.5 || ^3.0", + "symfony/polyfill-php80": "^1.24" + }, + "provide": { + "psr/http-client-implementation": "1.0" }, "require-dev": { - "mink/driver-testsuite": "dev-master", - "phpstan/phpstan": "^1.10", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0" + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "guzzle/client-integration-tests": "3.0.2", + "guzzlehttp/test-server": "^0.5", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.52 || ^9.6.34", + "psr/log": "^1.1 || ^2.0 || ^3.0" }, - "type": "mink-driver", + "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": { - "branch-alias": { - "dev-master": "1.x-dev" + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, "autoload": { + "files": [ + "src/functions_include.php" + ], "psr-4": { - "Behat\\Mink\\Driver\\": "src/" + "GuzzleHttp\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -596,72 +750,105 @@ ], "authors": [ { - "name": "Pete Otaqui", - "email": "pete@otaqui.com", - "homepage": "https://github.com/pete-otaqui" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" }, { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "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": "Selenium2 (WebDriver) driver for Mink framework", - "homepage": "https://mink.behat.org/", + "description": "Guzzle is a PHP HTTP client library", "keywords": [ - "ajax", - "browser", - "javascript", - "selenium", - "testing", - "webdriver" + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" ], "support": { - "issues": "https://github.com/minkphp/MinkSelenium2Driver/issues", - "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.7.0" + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.11.1" }, - "time": "2023-12-09T11:58:45+00:00" + "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": "2026-06-07T22:54:06+00:00" }, { - "name": "composer/pcre", - "version": "3.4.0", + "name": "guzzlehttp/promises", + "version": "2.5.0", "source": { "type": "git", - "url": "https://github.com/composer/pcre.git", - "reference": "d5a341b3fb61f3001970940afb1d332968a183ed" + "url": "https://github.com/guzzle/promises.git", + "reference": "4360e982f87f5f258bf872d094647791db2f4c8e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/d5a341b3fb61f3001970940afb1d332968a183ed", - "reference": "d5a341b3fb61f3001970940afb1d332968a183ed", + "url": "https://api.github.com/repos/guzzle/promises/zipball/4360e982f87f5f258bf872d094647791db2f4c8e", + "reference": "4360e982f87f5f258bf872d094647791db2f4c8e", "shasum": "" }, "require": { - "php": "^7.4 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<2.2.2" + "php": "^7.2.5 || ^8.0", + "symfony/deprecation-contracts": "^2.5 || ^3.0" }, "require-dev": { - "phpstan/phpstan": "^2", - "phpstan/phpstan-deprecation-rules": "^2", - "phpstan/phpstan-strict-rules": "^2", - "phpunit/phpunit": "^9" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.52 || ^9.6.34" }, "type": "library", "extra": { - "phpstan": { - "includes": [ - "extension.neon" - ] - }, - "branch-alias": { - "dev-main": "3.x-dev" + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, "autoload": { "psr-4": { - "Composer\\Pcre\\": "src" + "GuzzleHttp\\Promise\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -670,62 +857,95 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "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": "PCRE wrapping library that offers type-safe preg_* replacements.", + "description": "Guzzle promises library", "keywords": [ - "PCRE", - "preg", - "regex", - "regular expression" + "promise" ], "support": { - "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.4.0" + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.5.0" }, "funding": [ { - "url": "https://packagist.com", - "type": "custom" + "url": "https://github.com/GrahamCampbell", + "type": "github" }, { - "url": "https://github.com/composer", + "url": "https://github.com/Nyholm", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" } ], - "time": "2026-06-07T11:47:49+00:00" + "time": "2026-06-02T12:23:43+00:00" }, { - "name": "composer/xdebug-handler", - "version": "3.0.5", + "name": "guzzlehttp/psr7", + "version": "2.11.0", "source": { "type": "git", - "url": "https://github.com/composer/xdebug-handler.git", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" + "url": "https://github.com/guzzle/psr7.git", + "reference": "bbb5e61349fa5cb822b3e87842b951088b76b81f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/bbb5e61349fa5cb822b3e87842b951088b76b81f", + "reference": "bbb5e61349fa5cb822b3e87842b951088b76b81f", "shasum": "" }, "require": { - "composer/pcre": "^1 || ^2 || ^3", "php": "^7.2.5 || ^8.0", - "psr/log": "^1 || ^2 || ^3" + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0", + "symfony/deprecation-contracts": "^2.5 || ^3.0", + "symfony/polyfill-php80": "^1.24" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" }, "require-dev": { - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-strict-rules": "^1.1", - "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "1.1.0", + "jshttp/mime-db": "1.54.0.1", + "phpunit/phpunit": "^8.5.52 || ^9.6.34" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, "autoload": { "psr-4": { - "Composer\\XdebugHandler\\": "src" + "GuzzleHttp\\Psr7\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -734,72 +954,105 @@ ], "authors": [ { - "name": "John Stevenson", - "email": "john-stevenson@blueyonder.co.uk" + "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": "Restarts a process without Xdebug.", + "description": "PSR-7 message implementation that also provides common utility methods", "keywords": [ - "Xdebug", - "performance" + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" ], "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.11.0" }, "funding": [ { - "url": "https://packagist.com", - "type": "custom" + "url": "https://github.com/GrahamCampbell", + "type": "github" }, { - "url": "https://github.com/composer", + "url": "https://github.com/Nyholm", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", "type": "tidelift" } ], - "time": "2024-05-06T16:37:16+00:00" + "time": "2026-06-02T12:30:48+00:00" }, { - "name": "friends-of-behat/mink-extension", - "version": "v2.7.5", + "name": "guzzlehttp/uri-template", + "version": "v1.0.7", "source": { "type": "git", - "url": "https://github.com/FriendsOfBehat/MinkExtension.git", - "reference": "854336030e11983f580f49faad1b49a1238f9846" + "url": "https://github.com/guzzle/uri-template.git", + "reference": "7fe811c23a9e3cd712b4389eaeb50b5456d8c529" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfBehat/MinkExtension/zipball/854336030e11983f580f49faad1b49a1238f9846", - "reference": "854336030e11983f580f49faad1b49a1238f9846", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/7fe811c23a9e3cd712b4389eaeb50b5456d8c529", + "reference": "7fe811c23a9e3cd712b4389eaeb50b5456d8c529", "shasum": "" }, "require": { - "behat/behat": "^3.0.5", - "behat/mink": "^1.5", - "php": ">=7.4", - "symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0" - }, - "replace": { - "behat/mink-extension": "self.version" + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.24" }, "require-dev": { - "behat/mink-goutte-driver": "^1.1 || ^2.0", - "phpspec/phpspec": "^6.0 || ^7.0 || 7.1.x-dev" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.52 || ^9.6.34", + "uri-template/tests": "1.0.0" }, - "type": "behat-extension", + "type": "library", "extra": { - "branch-alias": { - "dev-master": "2.1.x-dev" + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, "autoload": { - "psr-0": { - "Behat\\MinkExtension": "src/" + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -808,372 +1061,519 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" }, { - "name": "Christophe Coevoet", - "email": "stof@notk.org" + "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": "Mink extension for Behat", - "homepage": "http://extensions.behat.org/mink", + "description": "A polyfill class for uri_template of PHP", "keywords": [ - "browser", - "gui", - "test", - "web" + "guzzlehttp", + "uri-template" ], "support": { - "issues": "https://github.com/FriendsOfBehat/MinkExtension/issues", - "source": "https://github.com/FriendsOfBehat/MinkExtension/tree/v2.7.5" + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.7" }, - "time": "2024-01-11T09:12:02+00:00" + "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": "2026-06-12T21:33:43+00:00" }, { - "name": "instaclick/php-webdriver", - "version": "1.4.20", + "name": "laravel/framework", + "version": "v13.15.0", "source": { "type": "git", - "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "981db0846ff4ac5be0301d609e36e2f023e74301" + "url": "https://github.com/laravel/framework.git", + "reference": "7e23b2aa4e1133a43835c93a810b4bedc40e425b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/981db0846ff4ac5be0301d609e36e2f023e74301", - "reference": "981db0846ff4ac5be0301d609e36e2f023e74301", + "url": "https://api.github.com/repos/laravel/framework/zipball/7e23b2aa4e1133a43835c93a810b4bedc40e425b", + "reference": "7e23b2aa4e1133a43835c93a810b4bedc40e425b", "shasum": "" }, "require": { - "ext-curl": "*", - "php": ">=5.3.2" + "brick/math": "^0.14.2 || ^0.15 || ^0.16 || ^0.17", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.4", + "egulias/email-validator": "^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/promises": "^2.0.3", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.3.0", + "laravel/serializable-closure": "^2.0.10", + "league/commonmark": "^2.8.1", + "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.3", + "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.4.0 || ^8.0.0", + "symfony/error-handler": "^7.4.0 || ^8.0.0", + "symfony/finder": "^7.4.0 || ^8.0.0", + "symfony/http-foundation": "^7.4.0 || ^8.0.0", + "symfony/http-kernel": "^7.4.0 || ^8.0.0", + "symfony/mailer": "^7.4.0 || ^8.0.0", + "symfony/mime": "^7.4.0 || ^8.0.0", + "symfony/polyfill-php84": "^1.36", + "symfony/polyfill-php85": "^1.36", + "symfony/polyfill-php86": "^1.36", + "symfony/process": "^7.4.5 || ^8.0.5", + "symfony/routing": "^7.4.0 || ^8.0.0", + "symfony/uid": "^7.4.0 || ^8.0.0", + "symfony/var-dumper": "^7.4.0 || ^8.0.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/json-schema": "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/reflection": "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": { - "phpunit/phpunit": "^8.5 || ^9.5", - "satooshi/php-coveralls": "^1.0 || ^2.0" + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.322.9", + "ext-gmp": "*", + "fakerphp/faker": "^1.24", + "guzzlehttp/psr7": "^2.9", + "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", + "opis/json-schema": "^2.4.1", + "orchestra/testbench-core": "^11.0.0", + "pda/pheanstalk": "^7.0.0 || ^8.0.0", + "php-http/discovery": "^1.15", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^11.5.50 || ^12.5.8 || ^13.0.3", + "predis/predis": "^2.3 || ^3.0", + "rector/rector": "^2.3", + "resend/resend-php": "^1.0", + "symfony/cache": "^7.4.0 || ^8.0.0", + "symfony/http-client": "^7.4.0 || ^8.0.0", + "symfony/psr-http-message-bridge": "^7.4.0 || ^8.0.0", + "symfony/translation": "^7.4.0 || ^8.0.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 generate fake data using the fake() helper (^1.23).", + "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 (^7.0 || ^8.0).", + "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).", + "phpunit/phpunit": "Required to use assertions and run tests (^11.5.50 || ^12.5.8 || ^13.0.3).", + "predis/predis": "Required to use the predis connector (^2.3 || ^3.0).", + "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 || ^1.0).", + "spatie/fork": "Required to use the 'fork' concurrency driver (^1.2).", + "symfony/cache": "Required to PSR-6 cache bridge (^7.4 || ^8.0).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.4 || ^8.0).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.4 || ^8.0).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.4 || ^8.0).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.4 || ^8.0).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.4 || ^8.0)." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "13.0.x-dev" } }, "autoload": { - "psr-0": { - "WebDriver": "lib/" + "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/Reflection/helpers.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/", + "src/Illuminate/Reflection/" + ] } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "MIT" ], "authors": [ { - "name": "Justin Bishop", - "email": "jubishop@gmail.com", - "role": "Developer" - }, - { - "name": "Anthon Pang", - "email": "apang@softwaredevelopment.ca", - "role": "Fork Maintainer" + "name": "Taylor Otwell", + "email": "taylor@laravel.com" } ], - "description": "PHP WebDriver for Selenium 2", - "homepage": "http://instaclick.com/", + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", "keywords": [ - "browser", - "selenium", - "webdriver", - "webtest" + "framework", + "laravel" ], "support": { - "issues": "https://github.com/instaclick/php-webdriver/issues", - "source": "https://github.com/instaclick/php-webdriver/tree/1.4.20" + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" }, - "time": "2025-12-04T11:20:11+00:00" + "time": "2026-06-09T13:45:51+00:00" }, { - "name": "myclabs/deep-copy", - "version": "1.13.4", + "name": "laravel/prompts", + "version": "v0.3.18", "source": { "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" + "url": "https://github.com/laravel/prompts.git", + "reference": "a19af51bb144bf87f08397921fa619f85c7d4e72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", - "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "url": "https://api.github.com/repos/laravel/prompts/zipball/a19af51bb144bf87f08397921fa619f85c7d4e72", + "reference": "a19af51bb144bf87f08397921fa619f85c7d4e72", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "composer-runtime-api": "^2.2", + "ext-mbstring": "*", + "php": "^8.1", + "symfony/console": "^6.2|^7.0|^8.0" }, "conflict": { - "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3 <3.2.2" + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" }, "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" + "illuminate/collections": "^10.0|^11.0|^12.0|^13.0", + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3|^3.4|^4.0", + "phpstan/phpstan": "^1.12.28", + "phpstan/phpstan-mockery": "^1.1.3" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.3.x-dev" + } + }, "autoload": { "files": [ - "src/DeepCopy/deep_copy.php" + "src/helpers.php" ], "psr-4": { - "DeepCopy\\": "src/DeepCopy/" + "Laravel\\Prompts\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Create deep copies (clones) of your objects", - "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" - ], + "description": "Add beautiful and user-friendly forms to your command-line applications.", "support": { - "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.3.18" }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", - "type": "tidelift" - } - ], - "time": "2025-08-01T08:46:24+00:00" + "time": "2026-05-19T00:47:18+00:00" }, { - "name": "nikic/php-parser", - "version": "v5.8.0", + "name": "laravel/serializable-closure", + "version": "v2.0.13", "source": { "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f" + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "b566ee0dd251f3c4078bed003a7ce015f5ea6dce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/044a6a392ff8ad0d61f14370a5fbbd0a0107152f", - "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b566ee0dd251f3c4078bed003a7ce015f5ea6dce", + "reference": "b566ee0dd251f3c4078bed003a7ce015f5ea6dce", "shasum": "" }, "require": { - "ext-json": "*", - "ext-tokenizer": "*", - "php": ">=7.4" + "php": "^8.1" }, "require-dev": { - "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^9.0" + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", + "nesbot/carbon": "^2.67|^3.0", + "pestphp/pest": "^2.36|^3.0|^4.0", + "phpstan/phpstan": "^2.0", + "symfony/var-dumper": "^6.2.0|^7.0.0|^8.0.0" }, - "bin": [ - "bin/php-parse" - ], "type": "library", "extra": { "branch-alias": { - "dev-master": "5.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { "psr-4": { - "PhpParser\\": "lib/PhpParser" + "Laravel\\SerializableClosure\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Nikita Popov" + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" } ], - "description": "A PHP parser written in PHP", + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", "keywords": [ - "parser", - "php" + "closure", + "laravel", + "serializable" ], "support": { - "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.8.0" + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" }, - "time": "2026-07-04T14:30:18+00:00" + "time": "2026-04-16T14:03:50+00:00" }, { - "name": "phar-io/manifest", - "version": "2.0.4", + "name": "laravel/tinker", + "version": "v3.0.2", "source": { "type": "git", - "url": "https://github.com/phar-io/manifest.git", - "reference": "54750ef60c58e43759730615a392c31c80e23176" + "url": "https://github.com/laravel/tinker.git", + "reference": "4faba77764bd33411735936acdf30446d058c78b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", - "reference": "54750ef60c58e43759730615a392c31c80e23176", + "url": "https://api.github.com/repos/laravel/tinker/zipball/4faba77764bd33411735936acdf30446d058c78b", + "reference": "4faba77764bd33411735936acdf30446d058c78b", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-libxml": "*", - "ext-phar": "*", - "ext-xmlwriter": "*", - "phar-io/version": "^3.0.1", - "php": "^7.2 || ^8.0" + "illuminate/console": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0", + "php": "^8.1", + "psy/psysh": "^0.12.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0|^8.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5|^11.5" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^8.0|^9.0|^10.0|^11.0|^12.0|^13.0)." }, "type": "library", "extra": { + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + }, "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "3.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" + "psr-4": { + "Laravel\\Tinker\\": "src/" } - ], - "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" + "MIT" ], "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" + "name": "Taylor Otwell", + "email": "taylor@laravel.com" } ], - "description": "Library for handling version information and constraints", + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], "support": { - "issues": "https://github.com/phar-io/version/issues", - "source": "https://github.com/phar-io/version/tree/3.2.1" + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v3.0.2" }, - "time": "2022-02-21T01:04:05+00:00" + "time": "2026-03-17T14:54:13+00:00" }, { - "name": "phpunit/php-code-coverage", - "version": "14.2.3", + "name": "league/commonmark", + "version": "2.8.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "82f6e49ff224e2cde923d74425e583a883910783" + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "59fb075d2101740c337c7216e3f32b36c204218b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/82f6e49ff224e2cde923d74425e583a883910783", - "reference": "82f6e49ff224e2cde923d74425e583a883910783", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/59fb075d2101740c337c7216e3f32b36c204218b", + "reference": "59fb075d2101740c337c7216e3f32b36c204218b", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-libxml": "*", "ext-mbstring": "*", - "ext-xmlwriter": "*", - "nikic/php-parser": "^5.8.0", - "php": ">=8.4", - "phpunit/php-text-template": "^6.0", - "sebastian/complexity": "^6.0", - "sebastian/environment": "^9.3.2", - "sebastian/git-state": "^1.0", - "sebastian/lines-of-code": "^5.0.1", - "sebastian/version": "^7.0", - "theseer/tokenizer": "^2.0.1" + "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": { - "phpunit/phpunit": "^13.2.2" + "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 || ^8.0", + "symfony/process": "^5.4 | ^6.0 | ^7.0 || ^8.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0 || ^8.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0" }, "suggest": { - "ext-pcov": "PHP extension that provides line coverage", - "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + "symfony/yaml": "v2.3+ required if using the Front Matter extension" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "14.2.x-dev" + "dev-main": "2.9-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "League\\CommonMark\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1181,73 +1581,87 @@ ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" } ], - "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", - "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", "keywords": [ - "coverage", - "testing", - "xunit" + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" ], "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/14.2.3" + "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://github.com/sebastianbergmann", - "type": "github" + "url": "https://www.colinodell.com/sponsor", + "type": "custom" }, { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" }, { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" + "url": "https://github.com/colinodell", + "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage", + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", "type": "tidelift" } ], - "time": "2026-07-06T15:04:02+00:00" + "time": "2026-03-19T13:16:38+00:00" }, { - "name": "phpunit/php-file-iterator", - "version": "7.0.0", + "name": "league/config", + "version": "v1.2.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "6e5aa1fb0a95b1703d83e721299ee18bb4e2de50" + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6e5aa1fb0a95b1703d83e721299ee18bb4e2de50", - "reference": "6e5aa1fb0a95b1703d83e721299ee18bb4e2de50", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", "shasum": "" }, "require": { - "php": ">=8.4" + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^13.0" + "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": "7.0-dev" + "dev-main": "1.2-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "League\\Config\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1255,380 +1669,367 @@ ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" } ], - "description": "FilterIterator implementation that filters files based on a list of suffixes.", - "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", "keywords": [ - "filesystem", - "iterator" + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" ], "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/7.0.0" + "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://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" + "url": "https://www.colinodell.com/sponsor", + "type": "custom" }, { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" }, { - "url": "https://tidelift.com/funding/github/packagist/phpunit/php-file-iterator", - "type": "tidelift" + "url": "https://github.com/colinodell", + "type": "github" } ], - "time": "2026-02-06T04:33:26+00:00" + "time": "2022-12-11T20:36:23+00:00" }, { - "name": "phpunit/php-invoker", - "version": "7.0.0", + "name": "league/flysystem", + "version": "3.34.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "42e5c5cae0c65df12d1b1a3ab52bf3f50f244d88" + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/42e5c5cae0c65df12d1b1a3ab52bf3f50f244d88", - "reference": "42e5c5cae0c65df12d1b1a3ab52bf3f50f244d88", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e", + "reference": "2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e", "shasum": "" }, "require": { - "php": ">=8.4" + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" }, - "require-dev": { - "ext-pcntl": "*", - "phpunit/phpunit": "^13.0" + "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" }, - "suggest": { - "ext-pcntl": "*" + "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|^2", + "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|^2", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "7.0-dev" - } - }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "League\\Flysystem\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" } ], - "description": "Invoke callables with a timeout", - "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "description": "File storage abstraction for PHP", "keywords": [ - "process" + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" ], "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/7.0.0" + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.34.0" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpunit/php-invoker", - "type": "tidelift" - } - ], - "time": "2026-02-06T04:34:47+00:00" + "time": "2026-05-14T10:28:08+00:00" }, { - "name": "phpunit/php-text-template", - "version": "6.0.0", + "name": "league/flysystem-local", + "version": "3.31.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "a47af19f93f76aa3368303d752aa5272ca3299f4" + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/a47af19f93f76aa3368303d752aa5272ca3299f4", - "reference": "a47af19f93f76aa3368303d752aa5272ca3299f4", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079", + "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079", "shasum": "" }, "require": { - "php": ">=8.4" - }, - "require-dev": { - "phpunit/phpunit": "^13.0" + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "6.0-dev" + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" } }, - "autoload": { - "classmap": [ - "src/" - ] - }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" } ], - "description": "Simple template engine.", - "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "description": "Local filesystem adapter for Flysystem.", "keywords": [ - "template" + "Flysystem", + "file", + "files", + "filesystem", + "local" ], "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/6.0.0" + "source": "https://github.com/thephpleague/flysystem-local/tree/3.31.0" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpunit/php-text-template", - "type": "tidelift" - } - ], - "time": "2026-02-06T04:36:37+00:00" + "time": "2026-01-23T15:30:45+00:00" }, { - "name": "phpunit/php-timer", - "version": "9.0.0", + "name": "league/mime-type-detection", + "version": "1.16.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "a0e12065831f6ab0d83120dc61513eb8d9a966f6" + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/a0e12065831f6ab0d83120dc61513eb8d9a966f6", - "reference": "a0e12065831f6ab0d83120dc61513eb8d9a966f6", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9", "shasum": "" }, "require": { - "php": ">=8.4" + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^13.0" + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "9.0-dev" - } - }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" } ], - "description": "Utility class for timing", - "homepage": "https://github.com/sebastianbergmann/php-timer/", - "keywords": [ - "timer" - ], + "description": "Mime-type detection for Flysystem", "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/9.0.0" + "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/sebastianbergmann", + "url": "https://github.com/frankdejonge", "type": "github" }, { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpunit/php-timer", + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", "type": "tidelift" } ], - "time": "2026-02-06T04:37:53+00:00" + "time": "2024-09-21T08:32:55+00:00" }, { - "name": "phpunit/phpunit", - "version": "13.2.3", + "name": "league/uri", + "version": "7.8.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "d76d0e24225e587d6a5f0c6f6d9fef0d90712b54" + "url": "https://github.com/thephpleague/uri.git", + "reference": "08cf38e3924d4f56238125547b5720496fac8fd4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d76d0e24225e587d6a5f0c6f6d9fef0d90712b54", - "reference": "d76d0e24225e587d6a5f0c6f6d9fef0d90712b54", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/08cf38e3924d4f56238125547b5720496fac8fd4", + "reference": "08cf38e3924d4f56238125547b5720496fac8fd4", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-filter": "*", - "ext-json": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.13.4", - "phar-io/manifest": "^2.0.4", - "phar-io/version": "^3.2.1", - "php": ">=8.4.1", - "phpunit/php-code-coverage": "^14.2.2", - "phpunit/php-file-iterator": "^7.0.0", - "phpunit/php-invoker": "^7.0.0", - "phpunit/php-text-template": "^6.0.0", - "phpunit/php-timer": "^9.0.0", - "sebastian/cli-parser": "^5.0.0", - "sebastian/comparator": "^8.3.0", - "sebastian/diff": "^9.0", - "sebastian/environment": "^9.3.2", - "sebastian/exporter": "^8.1.0", - "sebastian/file-filter": "^1.0", - "sebastian/git-state": "^1.0", - "sebastian/global-state": "^9.0.1", - "sebastian/object-enumerator": "^8.0.0", - "sebastian/recursion-context": "^8.0.0", - "sebastian/type": "^7.0.1", - "sebastian/version": "^7.0.0", - "staabm/side-effects-detector": "^1.0.5" + "league/uri-interfaces": "^7.8.1", + "php": "^8.1", + "psr/http-factory": "^1" + }, + "conflict": { + "league/uri-schemes": "^1.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-dom": "to convert the URI into an HTML anchor tag", + "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", + "ext-uri": "to use the PHP native URI class", + "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain", + "league/uri-components": "to provide additional tools to manipulate URI objects components", + "league/uri-polyfill": "to backport the PHP URI extension for older versions of PHP", + "php-64bit": "to improve IPV4 host parsing", + "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" }, - "bin": [ - "phpunit" - ], "type": "library", "extra": { "branch-alias": { - "dev-main": "13.2-dev" + "dev-master": "7.x-dev" } }, "autoload": { - "files": [ - "src/Framework/Assert/Functions.php" - ], - "classmap": [ - "src/" - ] + "psr-4": { + "League\\Uri\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" } ], - "description": "The PHP Unit Testing framework.", - "homepage": "https://phpunit.de/", + "description": "URI manipulation library", + "homepage": "https://uri.thephpleague.com", "keywords": [ - "phpunit", - "testing", - "xunit" + "URN", + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "middleware", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc2141", + "rfc3986", + "rfc3987", + "rfc6570", + "rfc8141", + "uri", + "uri-template", + "url", + "ws" ], "support": { - "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/13.2.3" + "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.8.1" }, "funding": [ { - "url": "https://phpunit.de/sponsoring.html", - "type": "other" + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" } ], - "time": "2026-07-06T14:55:56+00:00" + "time": "2026-03-15T20:22:25+00:00" }, { - "name": "psr/container", - "version": "2.0.2", + "name": "league/uri-interfaces", + "version": "7.8.1", "source": { "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + "url": "https://github.com/thephpleague/uri-interfaces.git", + "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", - "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/85d5c77c5d6d3af6c54db4a78246364908f3c928", + "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928", "shasum": "" }, "require": { - "php": ">=7.4.0" + "ext-filter": "*", + "php": "^8.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", + "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification", + "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": "2.0.x-dev" + "dev-master": "7.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Container\\": "src/" + "League\\Uri\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -1637,51 +2038,113 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" } ], - "description": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", + "description": "Common tools for parsing and resolving RFC3987/RFC3986 URI", + "homepage": "https://uri.thephpleague.com", "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "url", + "ws" ], "support": { - "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/2.0.2" + "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.8.1" }, - "time": "2021-11-05T16:47:00+00:00" + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2026-03-08T20:05:35+00:00" }, { - "name": "psr/event-dispatcher", - "version": "1.0.0", + "name": "monolog/monolog", + "version": "3.10.0", "source": { "type": "git", - "url": "https://github.com/php-fig/event-dispatcher.git", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + "url": "https://github.com/Seldaek/monolog.git", + "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0", + "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0", "shasum": "" }, "require": { - "php": ">=7.2.0" + "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 || ^2.0", + "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-master": "1.0.x-dev" + "dev-main": "3.x-dev" } }, "autoload": { "psr-4": { - "Psr\\EventDispatcher\\": "src/" + "Monolog\\": "src/Monolog" } }, "notification-url": "https://packagist.org/downloads/", @@ -1690,48 +2153,94 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" } ], - "description": "Standard interfaces for event handling.", + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", "keywords": [ - "events", - "psr", - "psr-14" + "log", + "logging", + "psr-3" ], "support": { - "issues": "https://github.com/php-fig/event-dispatcher/issues", - "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.10.0" }, - "time": "2019-01-08T18:20:26+00:00" + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2026-01-02T08:56:05+00:00" }, { - "name": "psr/log", - "version": "3.0.2", + "name": "nesbot/carbon", + "version": "3.11.4", "source": { "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + "url": "https://github.com/CarbonPHP/carbon.git", + "reference": "e890471a3494740f7d9326d72ce6a8c559ffee60" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", - "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/e890471a3494740f7d9326d72ce6a8c559ffee60", + "reference": "e890471a3494740f7d9326d72ce6a8c559ffee60", "shasum": "" }, "require": { - "php": ">=8.0.0" + "carbonphp/carbon-doctrine-types": "<100.0", + "ext-json": "*", + "php": "^8.1", + "psr/clock": "^1.0", + "symfony/clock": "^6.3.12 || ^7.0 || ^8.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0 || ^8.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": "^v3.87.1", + "kylekatarnls/multi-tester": "^2.5.3", + "phpmd/phpmd": "^2.15.0", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^2.1.22", + "phpunit/phpunit": "^10.5.53", + "squizlabs/php_codesniffer": "^3.13.4 || ^4.0.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": { - "Psr\\Log\\": "src" + "Carbon\\": "src/Carbon/" } }, "notification-url": "https://packagist.org/downloads/", @@ -1740,284 +2249,283 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" } ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbonphp.github.io/carbon/", "keywords": [ - "log", - "psr", - "psr-3" + "date", + "datetime", + "time" ], "support": { - "source": "https://github.com/php-fig/log/tree/3.0.2" + "docs": "https://carbonphp.github.io/carbon/guide/getting-started/introduction.html", + "issues": "https://github.com/CarbonPHP/carbon/issues", + "source": "https://github.com/CarbonPHP/carbon" }, - "time": "2024-09-11T13:17:53+00:00" - }, - { - "name": "sebastian/cli-parser", - "version": "5.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/cli-parser.git", - "reference": "48a4654fa5e48c1c81214e9930048a572d4b23ca" + "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": "2026-04-07T09:57:54+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.5", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/48a4654fa5e48c1c81214e9930048a572d4b23ca", - "reference": "48a4654fa5e48c1c81214e9930048a572d4b23ca", + "url": "https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002", + "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002", "shasum": "" }, "require": { - "php": ">=8.4" + "nette/utils": "^4.0", + "php": "8.1 - 8.5" }, "require-dev": { - "phpunit/phpunit": "^13.0" + "nette/phpstan-rules": "^1.0", + "nette/tester": "^2.6", + "phpstan/extension-installer": "^1.4@stable", + "phpstan/phpstan": "^2.1.39@stable", + "tracy/tracy": "^2.8" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.0-dev" + "dev-master": "1.3-dev" } }, "autoload": { + "psr-4": { + "Nette\\": "src" + }, "classmap": [ "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" ], "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/5.0.0" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" + "name": "David Grudl", + "homepage": "https://davidgrudl.com" }, { - "url": "https://tidelift.com/funding/github/packagist/sebastian/cli-parser", - "type": "tidelift" + "name": "Nette Community", + "homepage": "https://nette.org/contributors" } ], - "time": "2026-02-06T04:39:44+00:00" + "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.5" + }, + "time": "2026-02-23T03:47:12+00:00" }, { - "name": "sebastian/comparator", - "version": "8.3.0", + "name": "nette/utils", + "version": "v4.1.4", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "c025fc7604afab3f195fab7cdaf72327331af241" + "url": "https://github.com/nette/utils.git", + "reference": "7da6c396d7ebe142bc857c20479d5e70a5e1aac7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/c025fc7604afab3f195fab7cdaf72327331af241", - "reference": "c025fc7604afab3f195fab7cdaf72327331af241", + "url": "https://api.github.com/repos/nette/utils/zipball/7da6c396d7ebe142bc857c20479d5e70a5e1aac7", + "reference": "7da6c396d7ebe142bc857c20479d5e70a5e1aac7", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-mbstring": "*", - "php": ">=8.4", - "sebastian/diff": "^9.0", - "sebastian/exporter": "^8.1.0" + "php": "8.2 - 8.5" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" }, "require-dev": { - "phpunit/phpunit": "^13.2" + "jetbrains/phpstorm-attributes": "^1.2", + "nette/phpstan-rules": "^1.0", + "nette/tester": "^2.5", + "phpstan/extension-installer": "^1.4@stable", + "phpstan/phpstan": "^2.1@stable", + "tracy/tracy": "^2.9" }, "suggest": { - "ext-bcmath": "For comparing BcMath\\Number objects" + "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-main": "8.3-dev" + "dev-master": "4.1-dev" } }, "autoload": { + "psr-4": { + "Nette\\": "src" + }, "classmap": [ "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" + "name": "David Grudl", + "homepage": "https://davidgrudl.com" }, { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" + "name": "Nette Community", + "homepage": "https://nette.org/contributors" } ], - "description": "Provides the functionality to compare PHP values for equality", - "homepage": "https://github.com/sebastianbergmann/comparator", + "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": [ - "comparator", - "compare", - "equality" + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" ], "support": { - "issues": "https://github.com/sebastianbergmann/comparator/issues", - "security": "https://github.com/sebastianbergmann/comparator/security/policy", - "source": "https://github.com/sebastianbergmann/comparator/tree/8.3.0" + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.1.4" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator", - "type": "tidelift" - } - ], - "time": "2026-06-05T03:06:45+00:00" + "time": "2026-05-11T20:49:54+00:00" }, { - "name": "sebastian/complexity", - "version": "6.0.0", + "name": "neutron/sphinxsearch-api", + "version": "2.0.8.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "c5651c795c98093480df79350cb050813fc7a2f3" + "url": "https://github.com/romainneutron/Sphinx-Search-API-PHP-Client.git", + "reference": "a18fd84951ea1fb006387e2d099d025235b14d34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/c5651c795c98093480df79350cb050813fc7a2f3", - "reference": "c5651c795c98093480df79350cb050813fc7a2f3", + "url": "https://api.github.com/repos/romainneutron/Sphinx-Search-API-PHP-Client/zipball/a18fd84951ea1fb006387e2d099d025235b14d34", + "reference": "a18fd84951ea1fb006387e2d099d025235b14d34", "shasum": "" }, "require": { - "nikic/php-parser": "^5.0", - "php": ">=8.4" - }, - "require-dev": { - "phpunit/phpunit": "^13.0" + "php": ">=4" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "6.0-dev" - } - }, "autoload": { "classmap": [ - "src/" + "sphinxapi.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "GPL" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Andrew Aksyonoff", + "homepage": "http://sphinxsearch.com/" } ], - "description": "Library for calculating the complexity of PHP code units", - "homepage": "https://github.com/sebastianbergmann/complexity", + "description": "SphinxSearch PHP API", + "homepage": "http://sphinxsearch.com/", + "keywords": [ + "Sphinx Search", + "api", + "search-engine" + ], "support": { - "issues": "https://github.com/sebastianbergmann/complexity/issues", - "security": "https://github.com/sebastianbergmann/complexity/security/policy", - "source": "https://github.com/sebastianbergmann/complexity/tree/6.0.0" + "issues": "https://github.com/romainneutron/Sphinx-Search-API-PHP-Client/issues", + "source": "https://github.com/romainneutron/Sphinx-Search-API-PHP-Client/tree/master" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/complexity", - "type": "tidelift" - } - ], - "time": "2026-02-06T04:41:32+00:00" + "time": "2018-07-09T14:18:54+00:00" }, { - "name": "sebastian/diff", - "version": "9.0.0", + "name": "nikic/php-parser", + "version": "v5.8.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "a3fb6a298a265ff487a91bbea46e03cd01dbb226" + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/a3fb6a298a265ff487a91bbea46e03cd01dbb226", - "reference": "a3fb6a298a265ff487a91bbea46e03cd01dbb226", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/044a6a392ff8ad0d61f14370a5fbbd0a0107152f", + "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f", "shasum": "" }, "require": { - "php": ">=8.4" + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" }, "require-dev": { - "phpunit/phpunit": "^13.2", - "symfony/process": "^7.4.13" + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" }, + "bin": [ + "bin/php-parse" + ], "type": "library", "extra": { "branch-alias": { - "dev-main": "9.0-dev" + "dev-master": "5.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -2025,927 +2533,780 @@ ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" + "name": "Nikita Popov" } ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", + "description": "A PHP parser written in PHP", "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" + "parser", + "php" ], "support": { - "issues": "https://github.com/sebastianbergmann/diff/issues", - "security": "https://github.com/sebastianbergmann/diff/security/policy", - "source": "https://github.com/sebastianbergmann/diff/tree/9.0.0" + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.8.0" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/diff", - "type": "tidelift" - } - ], - "time": "2026-06-05T03:04:51+00:00" + "time": "2026-07-04T14:30:18+00:00" }, { - "name": "sebastian/environment", - "version": "9.3.2", + "name": "nunomaduro/termwind", + "version": "v2.4.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "6c9e487c9eb706a8d258102a1c0b0a3e53e86c2e" + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "712a31b768f5daea284c2169a7d227031001b9a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6c9e487c9eb706a8d258102a1c0b0a3e53e86c2e", - "reference": "6c9e487c9eb706a8d258102a1c0b0a3e53e86c2e", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/712a31b768f5daea284c2169a7d227031001b9a8", + "reference": "712a31b768f5daea284c2169a7d227031001b9a8", "shasum": "" }, "require": { - "php": ">=8.4" + "ext-mbstring": "*", + "php": "^8.2", + "symfony/console": "^7.4.4 || ^8.0.4" }, "require-dev": { - "phpunit/phpunit": "^13.1.11" - }, - "suggest": { - "ext-posix": "*" + "illuminate/console": "^11.47.0", + "laravel/pint": "^1.27.1", + "mockery/mockery": "^1.6.12", + "pestphp/pest": "^2.36.0 || ^3.8.4 || ^4.3.2", + "phpstan/phpstan": "^1.12.32", + "phpstan/phpstan-strict-rules": "^1.6.2", + "symfony/var-dumper": "^7.3.5 || ^8.0.4", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" }, "type": "library", "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + }, "branch-alias": { - "dev-main": "9.3-dev" + "dev-2.x": "2.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" } ], - "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "https://github.com/sebastianbergmann/environment", + "description": "It's like Tailwind CSS, but for the console.", "keywords": [ - "Xdebug", - "environment", - "hhvm" + "cli", + "console", + "css", + "package", + "php", + "style" ], "support": { - "issues": "https://github.com/sebastianbergmann/environment/issues", - "security": "https://github.com/sebastianbergmann/environment/security/policy", - "source": "https://github.com/sebastianbergmann/environment/tree/9.3.2" + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v2.4.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" }, { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" + "url": "https://github.com/nunomaduro", + "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/sebastian/environment", - "type": "tidelift" + "url": "https://github.com/xiCO2k", + "type": "github" } ], - "time": "2026-05-25T13:41:38+00:00" + "time": "2026-02-16T23:10:27+00:00" }, { - "name": "sebastian/exporter", - "version": "8.1.0", + "name": "phpmailer/phpmailer", + "version": "v7.1.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "c0d29a945f8cf82f300a05e69874508e307ca4c6" + "url": "https://github.com/PHPMailer/PHPMailer.git", + "reference": "1bc1716a507a65e039d4ac9d9adebbbd0d346e15" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c0d29a945f8cf82f300a05e69874508e307ca4c6", - "reference": "c0d29a945f8cf82f300a05e69874508e307ca4c6", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/1bc1716a507a65e039d4ac9d9adebbbd0d346e15", + "reference": "1bc1716a507a65e039d4ac9d9adebbbd0d346e15", "shasum": "" }, "require": { - "ext-mbstring": "*", - "php": ">=8.4", - "sebastian/recursion-context": "^8.0" + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "php": ">=5.5.0" }, "require-dev": { - "phpunit/phpunit": "^13.1.10" + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "doctrine/annotations": "^1.2.6 || ^1.13.3", + "php-parallel-lint/php-console-highlighter": "^1.0.0", + "php-parallel-lint/php-parallel-lint": "^1.3.2", + "phpcompatibility/php-compatibility": "^10.0.0@dev", + "squizlabs/php_codesniffer": "^3.13.5", + "yoast/phpunit-polyfills": "^1.0.4" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "8.1-dev" - } + "suggest": { + "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication", + "directorytree/imapengine": "For uploading sent messages via IMAP, see gmail example", + "ext-imap": "Needed to support advanced email address parsing according to RFC822", + "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", + "ext-openssl": "Needed for secure SMTP sending and DKIM signing", + "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication", + "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", + "league/oauth2-google": "Needed for Google XOAUTH2 authentication", + "psr/log": "For optional PSR-3 debug logging", + "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)", + "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication" }, + "type": "library", "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "PHPMailer\\PHPMailer\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "LGPL-2.1-only" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" + "name": "Marcus Bointon", + "email": "phpmailer@synchromedia.co.uk" }, { - "name": "Volker Dusch", - "email": "github@wallbash.com" + "name": "Jim Jagielski", + "email": "jimjag@gmail.com" }, { - "name": "Adam Harvey", - "email": "aharvey@php.net" + "name": "Andy Prevost", + "email": "codeworxtech@users.sourceforge.net" }, { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "name": "Brent R. Matzelle" } ], - "description": "Provides the functionality to export PHP variables for visualization", - "homepage": "https://www.github.com/sebastianbergmann/exporter", - "keywords": [ - "export", - "exporter" - ], + "description": "PHPMailer is a full-featured email creation and transfer class for PHP", "support": { - "issues": "https://github.com/sebastianbergmann/exporter/issues", - "security": "https://github.com/sebastianbergmann/exporter/security/policy", - "source": "https://github.com/sebastianbergmann/exporter/tree/8.1.0" + "issues": "https://github.com/PHPMailer/PHPMailer/issues", + "source": "https://github.com/PHPMailer/PHPMailer/tree/v7.1.1" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://github.com/Synchro", "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter", - "type": "tidelift" } ], - "time": "2026-05-21T11:50:56+00:00" + "time": "2026-05-18T08:06:14+00:00" }, { - "name": "sebastian/file-filter", - "version": "1.0.0", + "name": "phpoption/phpoption", + "version": "1.9.5", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/file-filter.git", - "reference": "33a26f394330f6faa7684bb9cc73afb7727aae93" + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "75365b91986c2405cf5e1e012c5595cd487a98be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/file-filter/zipball/33a26f394330f6faa7684bb9cc73afb7727aae93", - "reference": "33a26f394330f6faa7684bb9cc73afb7727aae93", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be", + "reference": "75365b91986c2405cf5e1e012c5595cd487a98be", "shasum": "" }, "require": { - "php": ">=8.4" + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^13.0" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34" }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, "branch-alias": { - "dev-main": "1.0-dev" + "dev-master": "1.9-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "Apache-2.0" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "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": "Library for filtering files", - "homepage": "https://github.com/sebastianbergmann/file-filter", + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], "support": { - "issues": "https://github.com/sebastianbergmann/file-filter/issues", - "security": "https://github.com/sebastianbergmann/file-filter/security/policy", - "source": "https://github.com/sebastianbergmann/file-filter/tree/1.0.0" + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.5" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://github.com/GrahamCampbell", "type": "github" }, { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/file-filter", + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", "type": "tidelift" } ], - "time": "2026-04-22T07:20:04+00:00" + "time": "2025-12-27T19:41:33+00:00" }, { - "name": "sebastian/git-state", + "name": "psr/clock", "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/git-state.git", - "reference": "792a952e0eba55b6960a48aeceb9f371aad1f76b" + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/git-state/zipball/792a952e0eba55b6960a48aeceb9f371aad1f76b", - "reference": "792a952e0eba55b6960a48aeceb9f371aad1f76b", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", "shasum": "" }, "require": { - "php": ">=8.4" - }, - "require-dev": { - "phpunit/phpunit": "^13.0" + "php": "^7.0 || ^8.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.0-dev" - } - }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Psr\\Clock\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Library for describing the state of a Git checkout", - "homepage": "https://github.com/sebastianbergmann/git-state", + "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/sebastianbergmann/git-state/issues", - "security": "https://github.com/sebastianbergmann/git-state/security/policy", - "source": "https://github.com/sebastianbergmann/git-state/tree/1.0.0" + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/git-state", - "type": "tidelift" - } - ], - "time": "2026-03-21T12:54:28+00:00" + "time": "2022-11-25T14:36:26+00:00" }, { - "name": "sebastian/global-state", - "version": "9.0.1", + "name": "psr/container", + "version": "2.0.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "ba68ba79da690cf7eddefd3ce5b78b20b9ba9945" + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/ba68ba79da690cf7eddefd3ce5b78b20b9ba9945", - "reference": "ba68ba79da690cf7eddefd3ce5b78b20b9ba9945", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", "shasum": "" }, "require": { - "php": ">=8.4", - "sebastian/object-reflector": "^6.0", - "sebastian/recursion-context": "^8.0" - }, - "require-dev": { - "ext-dom": "*", - "phpunit/phpunit": "^13.1.13" + "php": ">=7.4.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "9.0-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Psr\\Container\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Snapshotting of global state", - "homepage": "https://www.github.com/sebastianbergmann/global-state", + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", "keywords": [ - "global state" + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" ], "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/9.0.1" + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state", - "type": "tidelift" - } - ], - "time": "2026-06-01T15:11:33+00:00" + "time": "2021-11-05T16:47:00+00:00" }, { - "name": "sebastian/lines-of-code", - "version": "5.0.1", + "name": "psr/event-dispatcher", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "d2cff273a90c79b0eb590baa682d4b5c318bdbb7" + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d2cff273a90c79b0eb590baa682d4b5c318bdbb7", - "reference": "d2cff273a90c79b0eb590baa682d4b5c318bdbb7", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", "shasum": "" }, "require": { - "nikic/php-parser": "^5.7.0", - "php": ">=8.4" - }, - "require-dev": { - "phpunit/phpunit": "^13.1.10" + "php": ">=7.2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.0-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "Library for counting the lines of code in PHP source code", - "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], "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/5.0.1" + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/lines-of-code", - "type": "tidelift" - } - ], - "time": "2026-05-19T16:23:37+00:00" + "time": "2019-01-08T18:20:26+00:00" }, { - "name": "sebastian/object-enumerator", - "version": "8.0.0", + "name": "psr/http-client", + "version": "1.0.3", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "b39ab125fd9a7434b0ecbc4202eebce11a98cfc5" + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/b39ab125fd9a7434b0ecbc4202eebce11a98cfc5", - "reference": "b39ab125fd9a7434b0ecbc4202eebce11a98cfc5", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", "shasum": "" }, "require": { - "php": ">=8.4", - "sebastian/object-reflector": "^6.0", - "sebastian/recursion-context": "^8.0" - }, - "require-dev": { - "phpunit/phpunit": "^13.0" + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "8.0-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Traverses array structures and object graphs to enumerate all referenced objects", - "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], "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/8.0.0" + "source": "https://github.com/php-fig/http-client" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/object-enumerator", - "type": "tidelift" - } - ], - "time": "2026-02-06T04:46:36+00:00" + "time": "2023-09-23T14:17:50+00:00" }, { - "name": "sebastian/object-reflector", - "version": "6.0.0", + "name": "psr/http-factory", + "version": "1.1.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "3ca042c2c60b0eab094f8a1b6a7093f4d4c72200" + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/3ca042c2c60b0eab094f8a1b6a7093f4d4c72200", - "reference": "3ca042c2c60b0eab094f8a1b6a7093f4d4c72200", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { - "php": ">=8.4" - }, - "require-dev": { - "phpunit/phpunit": "^13.0" + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "6.0-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Allows reflection of object attributes, including inherited and non-public ones", - "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], "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/6.0.0" + "source": "https://github.com/php-fig/http-factory" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/object-reflector", - "type": "tidelift" - } - ], - "time": "2026-02-06T04:47:13+00:00" + "time": "2024-04-15T12:06:14+00:00" }, { - "name": "sebastian/recursion-context", - "version": "8.0.0", + "name": "psr/http-message", + "version": "2.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "74c5af21f6a5833e91767ca068c4d3dfec15317e" + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/74c5af21f6a5833e91767ca068c4d3dfec15317e", - "reference": "74c5af21f6a5833e91767ca068c4d3dfec15317e", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", "shasum": "" }, "require": { - "php": ">=8.4" - }, - "require-dev": { - "phpunit/phpunit": "^13.0" + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "8.0-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Adam Harvey", - "email": "aharvey@php.net" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Provides functionality to recursively process PHP variables", - "homepage": "https://github.com/sebastianbergmann/recursion-context", + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], "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/8.0.0" + "source": "https://github.com/php-fig/http-message/tree/2.0" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context", - "type": "tidelift" - } - ], - "time": "2026-02-06T04:51:28+00:00" + "time": "2023-04-04T09:54:51+00:00" }, { - "name": "sebastian/type", - "version": "7.0.1", + "name": "psr/log", + "version": "3.0.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/type.git", - "reference": "fee0309275847fefd7636167085e379c1dbf6990" + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fee0309275847fefd7636167085e379c1dbf6990", - "reference": "fee0309275847fefd7636167085e379c1dbf6990", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", "shasum": "" }, "require": { - "php": ">=8.4" - }, - "require-dev": { - "phpunit/phpunit": "^13.1.10" + "php": ">=8.0.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "7.0-dev" + "dev-master": "3.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Psr\\Log\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Collection of value objects that represent the types of the PHP type system", - "homepage": "https://github.com/sebastianbergmann/type", + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], "support": { - "issues": "https://github.com/sebastianbergmann/type/issues", - "security": "https://github.com/sebastianbergmann/type/security/policy", - "source": "https://github.com/sebastianbergmann/type/tree/7.0.1" + "source": "https://github.com/php-fig/log/tree/3.0.2" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/type", - "type": "tidelift" - } - ], - "time": "2026-05-20T06:49:11+00:00" + "time": "2024-09-11T13:17:53+00:00" }, { - "name": "sebastian/version", - "version": "7.0.0", + "name": "psr/simple-cache", + "version": "3.0.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/version.git", - "reference": "ad37a5552c8e2b88572249fdc19b6da7792e021b" + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/ad37a5552c8e2b88572249fdc19b6da7792e021b", - "reference": "ad37a5552c8e2b88572249fdc19b6da7792e021b", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", "shasum": "" }, "require": { - "php": ">=8.4" + "php": ">=8.0.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "7.0-dev" + "dev-master": "3.0.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Library that helps with managing the version number of Git-hosted PHP projects", - "homepage": "https://github.com/sebastianbergmann/version", + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], "support": { - "issues": "https://github.com/sebastianbergmann/version/issues", - "security": "https://github.com/sebastianbergmann/version/security/policy", - "source": "https://github.com/sebastianbergmann/version/tree/7.0.0" + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/sebastian/version", - "type": "tidelift" - } - ], - "time": "2026-02-06T04:52:52+00:00" + "time": "2021-10-29T13:26:27+00:00" }, { - "name": "staabm/side-effects-detector", - "version": "1.0.5", + "name": "psy/psysh", + "version": "v0.12.23", "source": { "type": "git", - "url": "https://github.com/staabm/side-effects-detector.git", - "reference": "d8334211a140ce329c13726d4a715adbddd0a163" + "url": "https://github.com/bobthecow/psysh.git", + "reference": "4dcc0f08047d52bbde475eda481146fd8e27e1a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163", - "reference": "d8334211a140ce329c13726d4a715adbddd0a163", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4dcc0f08047d52bbde475eda481146fd8e27e1a4", + "reference": "4dcc0f08047d52bbde475eda481146fd8e27e1a4", "shasum": "" }, "require": { + "ext-json": "*", "ext-tokenizer": "*", - "php": "^7.4 || ^8.0" + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^8.0 || ^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": { - "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" + "bamarni/composer-bin-plugin": "^1.2", + "composer/class-map-generator": "^1.6" + }, + "suggest": { + "composer/class-map-generator": "Improved tab completion performance with better class discovery.", + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "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": { - "classmap": [ - "lib/" - ] + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "A static analysis tool to detect side effects in PHP code", + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "https://psysh.org", "keywords": [ - "static analysis" + "REPL", + "console", + "interactive", + "shell" ], "support": { - "issues": "https://github.com/staabm/side-effects-detector/issues", - "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5" + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.23" }, - "funding": [ - { - "url": "https://github.com/staabm", - "type": "github" - } - ], - "time": "2024-10-20T05:08:20+00:00" + "time": "2026-05-23T13:41:31+00:00" }, { - "name": "symfony/browser-kit", - "version": "v8.1.0", + "name": "ralouphie/getallheaders", + "version": "3.0.3", "source": { "type": "git", - "url": "https://github.com/symfony/browser-kit.git", - "reference": "74e18e582cdda0eca35f7c74e1e48e62f0ede853" + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/74e18e582cdda0eca35f7c74e1e48e62f0ede853", - "reference": "74e18e582cdda0eca35f7c74e1e48e62f0ede853", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", "shasum": "" }, "require": { - "php": ">=8.4.1", - "symfony/dom-crawler": "^7.4|^8.0" + "php": ">=5.6" }, "require-dev": { - "symfony/css-selector": "^7.4|^8.0", - "symfony/http-client": "^7.4|^8.0", - "symfony/mime": "^7.4|^8.0", - "symfony/process": "^7.4|^8.0" + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" }, "type": "library", "autoload": { - "psr-4": { - "Symfony\\Component\\BrowserKit\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" + "files": [ + "src/getallheaders.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -2954,74 +3315,245 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" } ], - "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", - "homepage": "https://symfony.com", + "description": "A polyfill for getallheaders.", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v8.1.0" + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2026-05-29T05:06:50+00:00" + "time": "2019-03-08T08:55:37+00:00" }, { - "name": "symfony/config", - "version": "v7.4.14", + "name": "ramsey/collection", + "version": "2.1.1", "source": { "type": "git", - "url": "https://github.com/symfony/config.git", - "reference": "7b665e443381ea7c4db03eb03b4bf79ea2b020eb" + "url": "https://github.com/ramsey/collection.git", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/7b665e443381ea7c4db03eb03b4bf79ea2b020eb", - "reference": "7b665e443381ea7c4db03eb03b4bf79ea2b020eb", + "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2", "shasum": "" }, "require": { - "php": ">=8.2", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/filesystem": "^7.1|^8.0", - "symfony/polyfill-ctype": "~1.8" - }, - "conflict": { - "symfony/finder": "<6.4", - "symfony/service-contracts": "<2.5" + "php": "^8.1" }, "require-dev": { - "symfony/event-dispatcher": "^6.4|^7.0|^8.0", - "symfony/finder": "^6.4|^7.0|^8.0", - "symfony/messenger": "^6.4|^7.0|^8.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/yaml": "^6.4|^7.0|^8.0" + "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", - "autoload": { - "psr-4": { - "Symfony\\Component\\Config\\": "" + "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.9.2", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "8429c78ca35a09f27565311b98101e2826affde0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0", + "reference": "8429c78ca35a09f27565311b98101e2826affde0", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.25", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "ergebnis/composer-normalize": "^2.47", + "mockery/mockery": "^1.6", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.6", + "php-mock/php-mock-mockery": "^1.5", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "phpbench/phpbench": "^1.2.14", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^9.6", + "slevomat/coding-standard": "^8.18", + "squizlabs/php_codesniffer": "^3.13" + }, + "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.9.2" + }, + "time": "2025-12-14T04:43:48+00:00" + }, + { + "name": "setasign/fpdf", + "version": "1.9.0", + "source": { + "type": "git", + "url": "https://github.com/Setasign/FPDF.git", + "reference": "051b70e4c57dedc88df41b1eff1c62894e5f9ed0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Setasign/FPDF/zipball/051b70e4c57dedc88df41b1eff1c62894e5f9ed0", + "reference": "051b70e4c57dedc88df41b1eff1c62894e5f9ed0", + "shasum": "" + }, + "require": { + "ext-gd": "*", + "ext-zlib": "*" + }, + "type": "library", + "autoload": { + "classmap": [ + "fpdf.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Olivier Plathey", + "email": "oliver@fpdf.org", + "homepage": "http://fpdf.org/" + } + ], + "description": "FPDF is a PHP class which allows to generate PDF files with pure PHP. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs.", + "homepage": "http://www.fpdf.org", + "keywords": [ + "fpdf", + "pdf" + ], + "support": { + "source": "https://github.com/Setasign/FPDF/tree/1.9.0" + }, + "time": "2026-05-31T14:25:29+00:00" + }, + { + "name": "symfony/clock", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "701ef4de9705d6c32292ebee5e8044094a09fbf6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/701ef4de9705d6c32292ebee5e8044094a09fbf6", + "reference": "701ef4de9705d6c32292ebee5e8044094a09fbf6", + "shasum": "" + }, + "require": { + "php": ">=8.4.1", + "psr/clock": "^1.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/now.php" + ], + "psr-4": { + "Symfony\\Component\\Clock\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -3033,18 +3565,23 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", + "description": "Decouples applications from the system clock", "homepage": "https://symfony.com", + "keywords": [ + "clock", + "psr20", + "time" + ], "support": { - "source": "https://github.com/symfony/config/tree/v7.4.14" + "source": "https://github.com/symfony/clock/tree/v8.1.0" }, "funding": [ { @@ -3064,7 +3601,7 @@ "type": "tidelift" } ], - "time": "2026-06-09T07:51:57+00:00" + "time": "2026-05-29T05:06:50+00:00" }, { "name": "symfony/console", @@ -3215,773 +3752,5701 @@ }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.7.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "f3202fa1b5097b0af062dc978b32ecf63404e31d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/f3202fa1b5097b0af062dc978b32ecf63404e31d", + "reference": "f3202fa1b5097b0af062dc978b32ecf63404e31d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.7-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.7.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-06-05T06:23:12+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "d8aeb1abd3fef84795567850d3a567bdb5945ee5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/d8aeb1abd3fef84795567850d3a567bdb5945ee5", + "reference": "d8aeb1abd3fef84795567850d3a567bdb5945ee5", + "shasum": "" + }, + "require": { + "php": ">=8.4.1", + "psr/log": "^1|^2|^3", + "symfony/polyfill-php85": "^1.32", + "symfony/var-dumper": "^7.4|^8.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0", + "symfony/webpack-encore-bundle": "^1.0|^2.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/v8.1.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.4.14", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "51fe3d170227be8d1772214b82ae506e15ed78ff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/51fe3d170227be8d1772214b82ae506e15ed78ff", + "reference": "51fe3d170227be8d1772214b82ae506e15ed78ff", + "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|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/error-handler": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/framework-bundle": "^6.4|^7.0|^8.0", + "symfony/http-foundation": "^6.4|^7.0|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0|^8.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.4.14" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-06-06T11:10:32+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.7.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "c7de7a00ffb67842132da02ea92988a39ccd9f4e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c7de7a00ffb67842132da02ea92988a39ccd9f4e", + "reference": "c7de7a00ffb67842132da02ea92988a39ccd9f4e", + "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.7-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.7.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-06-05T06:23:12+00:00" + }, + { + "name": "symfony/finder", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "58d2e767a66052c1487356f953445634a8194c64" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/58d2e767a66052c1487356f953445634a8194c64", + "reference": "58d2e767a66052c1487356f953445634a8194c64", + "shasum": "" + }, + "require": { + "php": ">=8.4.1" + }, + "require-dev": { + "symfony/filesystem": "^7.4|^8.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/v8.1.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "af11474600f06718086c2cda4fa6fa8d0a672e7e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/af11474600f06718086c2cda4fa6fa8d0a672e7e", + "reference": "af11474600f06718086c2cda4fa6fa8d0a672e7e", + "shasum": "" + }, + "require": { + "php": ">=8.4.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "^1.1" + }, + "conflict": { + "doctrine/dbal": "<4.3" + }, + "require-dev": { + "doctrine/dbal": "^4.3", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^7.4|^8.0", + "symfony/clock": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/mime": "^7.4|^8.0", + "symfony/rate-limiter": "^7.4|^8.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/v8.1.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v8.0.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "0f2b114380b21d8736a496ab4672b012e3822ee7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/0f2b114380b21d8736a496ab4672b012e3822ee7", + "reference": "0f2b114380b21d8736a496ab4672b012e3822ee7", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "psr/log": "^1|^2|^3", + "symfony/error-handler": "^7.4|^8.0", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/flex": "<2.10", + "symfony/http-client-contracts": "<2.5", + "symfony/translation-contracts": "<2.5", + "twig/twig": "<3.21" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^7.4|^8.0", + "symfony/clock": "^7.4|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/css-selector": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/dom-crawler": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/finder": "^7.4|^8.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^7.4|^8.0", + "symfony/property-access": "^7.4|^8.0", + "symfony/routing": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^7.4|^8.0", + "symfony/validator": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^8.0", + "symfony/var-exporter": "^7.4|^8.0", + "twig/twig": "^3.21" + }, + "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/v8.0.13" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-27T08:48:59+00:00" + }, + { + "name": "symfony/mailer", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "9418d772df3a03a142e3bc06f602adb2b8724877" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/9418d772df3a03a142e3bc06f602adb2b8724877", + "reference": "9418d772df3a03a142e3bc06f602adb2b8724877", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.4.1", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/mime": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/messenger": "^7.4|^8.0", + "symfony/twig-bridge": "^7.4|^8.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/v8.1.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "symfony/mime", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "b164ae7e3f7915aacfe9ee155f2f358502440664" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/b164ae7e3f7915aacfe9ee155f2f358502440664", + "reference": "b164ae7e3f7915aacfe9ee155f2f358502440664", + "shasum": "" + }, + "require": { + "php": ">=8.4.1", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<5.2|>=7", + "phpdocumentor/type-resolver": "<1.5.1" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^5.2|^6.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0", + "symfony/property-access": "^7.4|^8.0", + "symfony/property-info": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0" + }, + "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/v8.1.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.37.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "141046a8f9477948ff284fa65be2095baafb94f2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2", + "reference": "141046a8f9477948ff284fa65be2095baafb94f2", + "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.37.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-04-10T16:19:22+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.38.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "e9247d281d694a5120554d9afaf54e070e88a603" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/e9247d281d694a5120554d9afaf54e070e88a603", + "reference": "e9247d281d694a5120554d9afaf54e070e88a603", + "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.38.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-26T05:58:03+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.38.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "dc21118016c039a66235cf93d96b435ffb282412" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/dc21118016c039a66235cf93d96b435ffb282412", + "reference": "dc21118016c039a66235cf93d96b435ffb282412", + "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.38.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-25T15:22:23+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.38.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/2d446c214bdbe5b71bde5011b060a05fece3ae6b", + "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b", + "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.38.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-25T13:48:31+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.38.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6", + "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6", + "shasum": "" + }, + "require": { + "ext-iconv": "*", + "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.38.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-27T06:59:30+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.37.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dfb55726c3a76ea3b6459fcfda1ec2d80a682411", + "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411", + "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.37.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-04-10T16:19:22+00:00" + }, + { + "name": "symfony/polyfill-php84", + "version": "v1.38.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php84.git", + "reference": "f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa", + "reference": "f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa", + "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\\Php84\\": "" + }, + "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.4+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php84/tree/v1.38.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-26T12:51:13+00:00" + }, + { + "name": "symfony/polyfill-php85", + "version": "v1.38.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php85.git", + "reference": "ba2ba04f3352cfa2dcbbcb90aee13ed967f505b1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/ba2ba04f3352cfa2dcbbcb90aee13ed967f505b1", + "reference": "ba2ba04f3352cfa2dcbbcb90aee13ed967f505b1", + "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\\Php85\\": "" + }, + "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.5+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php85/tree/v1.38.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-26T02:25:22+00:00" + }, + { + "name": "symfony/polyfill-php86", + "version": "v1.38.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php86.git", + "reference": "fcec68d64f46dc84e1f6ffcf2c6dda40ff3143ad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php86/zipball/fcec68d64f46dc84e1f6ffcf2c6dda40ff3143ad", + "reference": "fcec68d64f46dc84e1f6ffcf2c6dda40ff3143ad", + "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\\Php86\\": "" + }, + "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.6+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php86/tree/v1.38.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-25T11:52:35+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.37.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "26dfec253c4cf3e51b541b52ddf7e42cb0908e94" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/26dfec253c4cf3e51b541b52ddf7e42cb0908e94", + "reference": "26dfec253c4cf3e51b541b52ddf7e42cb0908e94", + "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.37.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-04-10T16:19:22+00:00" + }, + { + "name": "symfony/process", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "c4a9e58f235a6bf7f97ffbfedae2687353ac79e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/c4a9e58f235a6bf7f97ffbfedae2687353ac79e5", + "reference": "c4a9e58f235a6bf7f97ffbfedae2687353ac79e5", + "shasum": "" + }, + "require": { + "php": ">=8.4.1" + }, + "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/v8.1.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "symfony/routing", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "fe0bfec72c8a806109fb9c3a5f2b898fe0c76eb3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/fe0bfec72c8a806109fb9c3a5f2b898fe0c76eb3", + "reference": "fe0bfec72c8a806109fb9c3a5f2b898fe0c76eb3", + "shasum": "" + }, + "require": { + "php": ">=8.4.1", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/yaml": "^7.4|^8.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/v8.1.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.7.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "c0a284bab1ed8aa0417e3d69250ab437739563a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/c0a284bab1ed8aa0417e3d69250ab437739563a0", + "reference": "c0a284bab1ed8aa0417e3d69250ab437739563a0", + "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.7-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.7.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-06-16T09:55:08+00:00" + }, + { + "name": "symfony/string", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "afd5944f4005862d961efb85c8bbd5c523c4e3c9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/afd5944f4005862d961efb85c8bbd5c523c4e3c9", + "reference": "afd5944f4005862d961efb85c8bbd5c523c4e3c9", + "shasum": "" + }, + "require": { + "php": ">=8.4.1", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-intl-grapheme": "^1.33", + "symfony/polyfill-intl-normalizer": "^1.0", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/emoji": "^7.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/intl": "^7.4|^8.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^7.4|^8.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/v8.1.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "symfony/translation", + "version": "v7.4.14", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "a1af4dacb24eb7ef4f1ca71b94da8ddbce572281" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/a1af4dacb24eb7ef4f1ca71b94da8ddbce572281", + "reference": "a1af4dacb24eb7ef4f1ca71b94da8ddbce572281", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5.3|^3.3" + }, + "conflict": { + "nikic/php-parser": "<5.0", + "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": "^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/finder": "^6.4|^7.0|^8.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/intl": "^6.4|^7.0|^8.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^6.4|^7.0|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^6.4|^7.0|^8.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.4.14" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-06-06T09:33:19+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.7.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "ccb206b98faccc511ebae8e5fad50f2dc0b30621" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/ccb206b98faccc511ebae8e5fad50f2dc0b30621", + "reference": "ccb206b98faccc511ebae8e5fad50f2dc0b30621", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.7-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.7.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-06-05T06:23:12+00:00" + }, + { + "name": "symfony/uid", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "7393f157a55f7e70a4de0334435c55a5a8fe749a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/7393f157a55f7e70a4de0334435c55a5a8fe749a", + "reference": "7393f157a55f7e70a4de0334435c55a5a8fe749a", + "shasum": "" + }, + "require": { + "php": ">=8.4.1", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^7.4|^8.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/v8.1.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v8.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "c2c4df1d21477cc21c9f6dc1b14d07c3abc4963e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c2c4df1d21477cc21c9f6dc1b14d07c3abc4963e", + "reference": "c2c4df1d21477cc21c9f6dc1b14d07c3abc4963e", + "shasum": "" + }, + "require": { + "php": ">=8.4.1", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "symfony/console": "<7.4", + "symfony/error-handler": "<7.4" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0", + "symfony/uid": "^7.4|^8.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/v8.1.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2026-05-29T05:06:50+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "v2.4.0", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "f0292ccf0ec75843d65027214426b6b163b48b41" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41", + "reference": "f0292ccf0ec75843d65027214426b6b163b48b41", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^7.4 || ^8.0", + "symfony/css-selector": "^5.4 || ^6.0 || ^7.0 || ^8.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.4.0" + }, + "time": "2025-12-02T11:56:42+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.6.3", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "955e7815d677a3eaa7075231212f2110983adecc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc", + "reference": "955e7815d677a3eaa7075231212f2110983adecc", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.4", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.5", + "symfony/polyfill-ctype": "^1.26", + "symfony/polyfill-mbstring": "^1.26", + "symfony/polyfill-php80": "^1.26" + }, + "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.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2025-12-27T19:49:13+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.1.1", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "8e1051fe39379367aecf014f41744ce7539a856f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/8e1051fe39379367aecf014f41744ce7539a856f", + "reference": "8e1051fe39379367aecf014f41744ce7539a856f", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpunit/phpunit": "~8.5 || ~9.6 || ~10.5 || ~11.5" + }, + "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.1.1" + }, + "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": "2026-04-26T05:33:54+00:00" + } + ], + "packages-dev": [ + { + "name": "behat/behat", + "version": "v3.32.0", + "source": { + "type": "git", + "url": "https://github.com/Behat/Behat.git", + "reference": "b9b89cf7a3b24c04d6e2d2865ed51bc5e1700de9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Behat/Behat/zipball/b9b89cf7a3b24c04d6e2d2865ed51bc5e1700de9", + "reference": "b9b89cf7a3b24c04d6e2d2865ed51bc5e1700de9", + "shasum": "" + }, + "require": { + "behat/gherkin": "^4.17.0", + "composer-runtime-api": "^2.2", + "composer/xdebug-handler": "^1.4 || ^2.0 || ^3.0", + "ext-mbstring": "*", + "nikic/php-parser": "^4.19.2 || ^5.2", + "php": ">=8.2 <8.6", + "psr/container": "^1.0 || ^2.0", + "symfony/config": "^5.4 || ^6.4 || ^7.0", + "symfony/console": "^5.4.9 || ^6.4 || ^7.0", + "symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0", + "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0", + "symfony/translation": "^5.4 || ^6.4 || ^7.0", + "symfony/yaml": "^5.4 || ^6.4 || ^7.0" + }, + "require-dev": { + "opis/json-schema": "^2.5", + "php-cs-fixer/shim": "^3.89", + "phpstan/phpstan": "2.1.46", + "phpunit/phpunit": "^9.6", + "rector/rector": "2.3.9", + "sebastian/diff": "^4.0", + "symfony/filesystem": "^5.4 || ^6.4 || ^7.0", + "symfony/polyfill-php84": "^1.31", + "symfony/process": "^5.4 || ^6.4 || ^7.0" + }, + "suggest": { + "ext-dom": "Needed to output test results in JUnit format." + }, + "bin": [ + "bin/behat" + ], + "type": "library", + "autoload": { + "psr-4": { + "Behat\\Hook\\": "src/Behat/Hook/", + "Behat\\Step\\": "src/Behat/Step/", + "Behat\\Behat\\": "src/Behat/Behat/", + "Behat\\Config\\": "src/Behat/Config/", + "Behat\\Testwork\\": "src/Behat/Testwork/", + "Behat\\Transformation\\": "src/Behat/Transformation/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Scenario-oriented BDD framework for PHP", + "homepage": "https://behat.org/", + "keywords": [ + "Agile", + "BDD", + "ScenarioBDD", + "Scrum", + "StoryBDD", + "User story", + "business", + "development", + "documentation", + "examples", + "symfony", + "testing" + ], + "support": { + "issues": "https://github.com/Behat/Behat/issues", + "source": "https://github.com/Behat/Behat/tree/v3.32.0" + }, + "funding": [ + { + "url": "https://github.com/acoulton", + "type": "github" + }, + { + "url": "https://github.com/carlos-granados", + "type": "github" + }, + { + "url": "https://github.com/stof", + "type": "github" + } + ], + "time": "2026-06-20T08:34:52+00:00" + }, + { + "name": "behat/gherkin", + "version": "v4.17.0", + "source": { + "type": "git", + "url": "https://github.com/Behat/Gherkin.git", + "reference": "5c8b3149fac39b5a79942b64eeec59a5ee4001c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/5c8b3149fac39b5a79942b64eeec59a5ee4001c0", + "reference": "5c8b3149fac39b5a79942b64eeec59a5ee4001c0", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "php": ">=8.1 <8.6" + }, + "require-dev": { + "cucumber/gherkin-monorepo": "dev-gherkin-v39.1.0", + "friendsofphp/php-cs-fixer": "^3.77", + "mikey179/vfsstream": "^1.6", + "phpstan/extension-installer": "^1", + "phpstan/phpstan": "^2", + "phpstan/phpstan-phpunit": "^2", + "phpunit/phpunit": "^10.5", + "symfony/yaml": "^5.4 || ^6.4 || ^7.0" + }, + "suggest": { + "symfony/yaml": "If you want to parse features, represented in YAML files" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } + }, + "autoload": { + "psr-4": { + "Behat\\Gherkin\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "https://everzet.com" + } + ], + "description": "Gherkin DSL parser for PHP", + "homepage": "https://behat.org/", + "keywords": [ + "BDD", + "Behat", + "Cucumber", + "DSL", + "gherkin", + "parser" + ], + "support": { + "issues": "https://github.com/Behat/Gherkin/issues", + "source": "https://github.com/Behat/Gherkin/tree/v4.17.0" + }, + "funding": [ + { + "url": "https://github.com/acoulton", + "type": "github" + }, + { + "url": "https://github.com/carlos-granados", + "type": "github" + }, + { + "url": "https://github.com/stof", + "type": "github" + } + ], + "time": "2026-05-18T09:33:47+00:00" + }, + { + "name": "behat/mink", + "version": "v1.13.0", + "source": { + "type": "git", + "url": "https://github.com/minkphp/Mink.git", + "reference": "9b08f62937c173affe070c04bb072d7ea1db1be5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/minkphp/Mink/zipball/9b08f62937c173affe070c04bb072d7ea1db1be5", + "reference": "9b08f62937c173affe070c04bb072d7ea1db1be5", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "symfony/css-selector": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "*", + "phpstan/phpstan": "^1.12.32", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^8.5.22 || ^9.5.11", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", + "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0 || ^8.0" + }, + "suggest": { + "behat/mink-browserkit-driver": "fast headless driver for any app without JS emulation", + "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)", + "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)", + "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Behat\\Mink\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Browser controller/emulator abstraction for PHP", + "homepage": "https://mink.behat.org/", + "keywords": [ + "browser", + "testing", + "web" + ], + "support": { + "issues": "https://github.com/minkphp/Mink/issues", + "source": "https://github.com/minkphp/Mink/tree/v1.13.0" + }, + "time": "2025-11-22T12:18:15+00:00" + }, + { + "name": "behat/mink-browserkit-driver", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/minkphp/MinkBrowserKitDriver.git", + "reference": "d361516cba6e684bdc4518b9c044edc77f249e36" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/d361516cba6e684bdc4518b9c044edc77f249e36", + "reference": "d361516cba6e684bdc4518b9c044edc77f249e36", + "shasum": "" + }, + "require": { + "behat/mink": "^1.11.0@dev", + "ext-dom": "*", + "php": ">=7.2", + "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", + "symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0" + }, + "require-dev": { + "mink/driver-testsuite": "dev-master", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", + "symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", + "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", + "symfony/mime": "^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0", + "yoast/phpunit-polyfills": "^1.0" + }, + "type": "mink-driver", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Behat\\Mink\\Driver\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Symfony2 BrowserKit driver for Mink framework", + "homepage": "https://mink.behat.org/", + "keywords": [ + "Mink", + "Symfony2", + "browser", + "testing" + ], + "support": { + "issues": "https://github.com/minkphp/MinkBrowserKitDriver/issues", + "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v2.3.0" + }, + "time": "2025-11-22T12:42:18+00:00" + }, + { + "name": "behat/mink-selenium2-driver", + "version": "v1.7.0", + "source": { + "type": "git", + "url": "https://github.com/minkphp/MinkSelenium2Driver.git", + "reference": "4ca4083f305de7dff4434ac402dc4e3f39c0866a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/4ca4083f305de7dff4434ac402dc4e3f39c0866a", + "reference": "4ca4083f305de7dff4434ac402dc4e3f39c0866a", + "shasum": "" + }, + "require": { + "behat/mink": "^1.11@dev", + "ext-json": "*", + "instaclick/php-webdriver": "^1.4.14", + "php": ">=7.2" + }, + "require-dev": { + "mink/driver-testsuite": "dev-master", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^8.5.22 || ^9.5.11", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0" + }, + "type": "mink-driver", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Behat\\Mink\\Driver\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Pete Otaqui", + "email": "pete@otaqui.com", + "homepage": "https://github.com/pete-otaqui" + }, + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Selenium2 (WebDriver) driver for Mink framework", + "homepage": "https://mink.behat.org/", + "keywords": [ + "ajax", + "browser", + "javascript", + "selenium", + "testing", + "webdriver" + ], + "support": { + "issues": "https://github.com/minkphp/MinkSelenium2Driver/issues", + "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.7.0" + }, + "time": "2023-12-09T11:58:45+00:00" + }, + { + "name": "composer/pcre", + "version": "3.4.0", + "source": { + "type": "git", + "url": "https://github.com/composer/pcre.git", + "reference": "d5a341b3fb61f3001970940afb1d332968a183ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/pcre/zipball/d5a341b3fb61f3001970940afb1d332968a183ed", + "reference": "d5a341b3fb61f3001970940afb1d332968a183ed", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<2.2.2" + }, + "require-dev": { + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^9" + }, + "type": "library", + "extra": { + "phpstan": { + "includes": [ + "extension.neon" + ] + }, + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.4.0" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + } + ], + "time": "2026-06-07T11:47:49+00:00" + }, + { + "name": "composer/xdebug-handler", + "version": "3.0.5", + "source": { + "type": "git", + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", + "shasum": "" + }, + "require": { + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1 || ^2 || ^3" + }, + "require-dev": { + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Composer\\XdebugHandler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" + } + ], + "description": "Restarts a process without Xdebug.", + "keywords": [ + "Xdebug", + "performance" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-05-06T16:37:16+00:00" + }, + { + "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.4", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d", + "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d", + "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.4" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2025-08-08T12:00:00+00:00" + }, + { + "name": "friends-of-behat/mink-extension", + "version": "v2.7.5", + "source": { + "type": "git", + "url": "https://github.com/FriendsOfBehat/MinkExtension.git", + "reference": "854336030e11983f580f49faad1b49a1238f9846" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FriendsOfBehat/MinkExtension/zipball/854336030e11983f580f49faad1b49a1238f9846", + "reference": "854336030e11983f580f49faad1b49a1238f9846", + "shasum": "" + }, + "require": { + "behat/behat": "^3.0.5", + "behat/mink": "^1.5", + "php": ">=7.4", + "symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0" + }, + "replace": { + "behat/mink-extension": "self.version" + }, + "require-dev": { + "behat/mink-goutte-driver": "^1.1 || ^2.0", + "phpspec/phpspec": "^6.0 || ^7.0 || 7.1.x-dev" + }, + "type": "behat-extension", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Behat\\MinkExtension": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com" + }, + { + "name": "Christophe Coevoet", + "email": "stof@notk.org" + } + ], + "description": "Mink extension for Behat", + "homepage": "http://extensions.behat.org/mink", + "keywords": [ + "browser", + "gui", + "test", + "web" + ], + "support": { + "issues": "https://github.com/FriendsOfBehat/MinkExtension/issues", + "source": "https://github.com/FriendsOfBehat/MinkExtension/tree/v2.7.5" + }, + "time": "2024-01-11T09:12:02+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.1.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.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.1.1" + }, + "time": "2025-04-30T06:54:44+00:00" + }, + { + "name": "instaclick/php-webdriver", + "version": "1.4.20", + "source": { + "type": "git", + "url": "https://github.com/instaclick/php-webdriver.git", + "reference": "981db0846ff4ac5be0301d609e36e2f023e74301" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/981db0846ff4ac5be0301d609e36e2f023e74301", + "reference": "981db0846ff4ac5be0301d609e36e2f023e74301", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.5", + "satooshi/php-coveralls": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "autoload": { + "psr-0": { + "WebDriver": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Justin Bishop", + "email": "jubishop@gmail.com", + "role": "Developer" + }, + { + "name": "Anthon Pang", + "email": "apang@softwaredevelopment.ca", + "role": "Fork Maintainer" + } + ], + "description": "PHP WebDriver for Selenium 2", + "homepage": "http://instaclick.com/", + "keywords": [ + "browser", + "selenium", + "webdriver", + "webtest" + ], + "support": { + "issues": "https://github.com/instaclick/php-webdriver/issues", + "source": "https://github.com/instaclick/php-webdriver/tree/1.4.20" + }, + "time": "2025-12-04T11:20:11+00:00" + }, + { + "name": "laravel/agent-detector", + "version": "v2.0.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/agent-detector.git", + "reference": "90694b9256099591cf9e55d08c18ba7a00bf099f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/agent-detector/zipball/90694b9256099591cf9e55d08c18ba7a00bf099f", + "reference": "90694b9256099591cf9e55d08c18ba7a00bf099f", + "shasum": "" + }, + "require": { + "php": "^8.2.0" + }, + "require-dev": { + "laravel/pint": "^1.24.0", + "pestphp/pest": "^3.8.5|^4.1.0", + "pestphp/pest-plugin-type-coverage": "^3.0|^4.0.2", + "phpstan/phpstan": "^2.1.26", + "rector/rector": "^2.1.7", + "symfony/var-dumper": "^7.3.3" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Laravel\\AgentDetector\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Detect if code is running in an AI agent or automated development environment", + "homepage": "https://github.com/laravel/agent-detector", + "keywords": [ + "Agent", + "ai", + "automation", + "claude", + "cursor", + "detection", + "devin", + "php" + ], + "support": { + "issues": "https://github.com/laravel/agent-detector/issues", + "source": "https://github.com/laravel/agent-detector" + }, + "time": "2026-04-29T18:32:34+00:00" + }, + { + "name": "laravel/pail", + "version": "v1.2.7", + "source": { + "type": "git", + "url": "https://github.com/laravel/pail.git", + "reference": "2f7d27dada8effc48b8c424445a69cca7007daaa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pail/zipball/2f7d27dada8effc48b8c424445a69cca7007daaa", + "reference": "2f7d27dada8effc48b8c424445a69cca7007daaa", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/console": "^10.24|^11.0|^12.0|^13.0", + "illuminate/contracts": "^10.24|^11.0|^12.0|^13.0", + "illuminate/log": "^10.24|^11.0|^12.0|^13.0", + "illuminate/process": "^10.24|^11.0|^12.0|^13.0", + "illuminate/support": "^10.24|^11.0|^12.0|^13.0", + "nunomaduro/termwind": "^1.15|^2.0", + "php": "^8.2", + "symfony/console": "^6.0|^7.0|^8.0" + }, + "require-dev": { + "laravel/framework": "^10.24|^11.0|^12.0|^13.0", + "laravel/pint": "^1.13", + "orchestra/testbench-core": "^8.13|^9.17|^10.8|^11.0", + "pestphp/pest": "^2.20|^3.0|^4.0", + "pestphp/pest-plugin-type-coverage": "^2.3|^3.0|^4.0", + "phpstan/phpstan": "^1.12.27", + "symfony/var-dumper": "^6.3|^7.0|^8.0", + "symfony/yaml": "^6.3|^7.0|^8.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": [ + "dev", + "laravel", + "logs", + "php", + "tail" + ], + "support": { + "issues": "https://github.com/laravel/pail/issues", + "source": "https://github.com/laravel/pail" + }, + "time": "2026-05-20T22:24:57+00:00" + }, + { + "name": "laravel/pao", + "version": "v1.1.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/pao.git", + "reference": "8f6c8094d701a03041c85ba583ca233398c792ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pao/zipball/8f6c8094d701a03041c85ba583ca233398c792ec", + "reference": "8f6c8094d701a03041c85ba583ca233398c792ec", + "shasum": "" + }, + "require": { + "laravel/agent-detector": "^2.0.2", + "php": "^8.3" + }, + "conflict": { + "laravel/framework": "<12.0.0", + "nunomaduro/collision": "<8.9.3", + "pestphp/pest": "<4.6.3 || >=6.0.0", + "phpunit/phpunit": "<12.5.23 || >=13.0.0 <13.1.7 || >=14.0.0" + }, + "require-dev": { + "brianium/paratest": "^7.20.0", + "laravel/pint": "^1.29.1", + "orchestra/testbench": "^10.11.0 || ^11.1.0", + "pestphp/pest": "^4.7.2 || ^5.0.0", + "pestphp/pest-plugin-type-coverage": "^4.0.4 || ^5.0.0", + "phpstan/phpstan": "^2.2.2", + "rector/rector": "^2.4.5", + "symfony/process": "^7.4.8 || ^8.1.0", + "symfony/var-dumper": "^7.4.8 || ^8.1.0" + }, + "type": "library", + "extra": { + "pest": { + "plugins": [ + "Laravel\\Pao\\Drivers\\Pest\\Plugin" + ] + }, + "laravel": { + "providers": [ + "Laravel\\Pao\\Laravel\\ServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/Autoload.php" + ], + "psr-4": { + "Laravel\\Pao\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Agent-optimized output for PHP testing tools", + "keywords": [ + "Agent", + "PHPStan", + "ai", + "dev", + "paratest", + "pest", + "php", + "phpunit", + "rector", + "testing" + ], + "support": { + "issues": "https://github.com/laravel/pao/issues", + "source": "https://github.com/laravel/pao" + }, + "time": "2026-06-12T08:00:22+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.29.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "0770e9b7fafd50d4586881d456d6eb41c9247a80" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/0770e9b7fafd50d4586881d456d6eb41c9247a80", + "reference": "0770e9b7fafd50d4586881d456d6eb41c9247a80", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.95.1", + "illuminate/view": "^12.56.0", + "larastan/larastan": "^3.9.6", + "laravel-zero/framework": "^12.1.0", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^2.4.0", + "pestphp/pest": "^3.8.6", + "shipfastlabs/agent-detector": "^1.1.3" + }, + "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": [ + "dev", + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2026-04-20T15:26:14+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.63.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "51bbce3f803c1d386cabbb44e618c955a12ff5fc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/51bbce3f803c1d386cabbb44e618c955a12ff5fc", + "reference": "51bbce3f803c1d386cabbb44e618c955a12ff5fc", + "shasum": "" + }, + "require": { + "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0|^13.0", + "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0|^13.0", + "php": "^8.0", + "symfony/console": "^6.0|^7.0|^8.0", + "symfony/yaml": "^6.0|^7.0|^8.0" + }, + "require-dev": { + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0", + "phpstan/phpstan": "^2.0" + }, + "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": "2026-06-18T08:54:14+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.4", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "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.4" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2025-08-01T08:46:24+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v8.9.4", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "716af8f95a470e9094cfca09ed897b023be191a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/716af8f95a470e9094cfca09ed897b023be191a5", + "reference": "716af8f95a470e9094cfca09ed897b023be191a5", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.18.4", + "nunomaduro/termwind": "^2.4.0", + "php": "^8.2.0", + "symfony/console": "^7.4.8 || ^8.0.8" + }, + "conflict": { + "laravel/framework": "<11.48.0 || >=14.0.0", + "phpunit/phpunit": "<11.5.50 || >=14.0.0" + }, + "require-dev": { + "brianium/paratest": "^7.8.5", + "larastan/larastan": "^3.9.6", + "laravel/framework": "^11.48.0 || ^12.56.0 || ^13.5.0", + "laravel/pint": "^1.29.1", + "orchestra/testbench-core": "^9.12.0 || ^10.12.1 || ^11.2.1", + "pestphp/pest": "^3.8.5 || ^4.4.3 || ^5.0.0", + "sebastian/environment": "^7.2.1 || ^8.0.4 || ^9.3.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": "2026-04-21T14:04:20+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": "14.2.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "82f6e49ff224e2cde923d74425e583a883910783" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/82f6e49ff224e2cde923d74425e583a883910783", + "reference": "82f6e49ff224e2cde923d74425e583a883910783", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.8.0", + "php": ">=8.4", + "phpunit/php-text-template": "^6.0", + "sebastian/complexity": "^6.0", + "sebastian/environment": "^9.3.2", + "sebastian/git-state": "^1.0", + "sebastian/lines-of-code": "^5.0.1", + "sebastian/version": "^7.0", + "theseer/tokenizer": "^2.0.1" + }, + "require-dev": { + "phpunit/phpunit": "^13.2.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": "14.2.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/14.2.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage", + "type": "tidelift" + } + ], + "time": "2026-07-06T15:04:02+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "7.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "6e5aa1fb0a95b1703d83e721299ee18bb4e2de50" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6e5aa1fb0a95b1703d83e721299ee18bb4e2de50", + "reference": "6e5aa1fb0a95b1703d83e721299ee18bb4e2de50", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "phpunit/phpunit": "^13.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": "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/7.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-file-iterator", + "type": "tidelift" + } + ], + "time": "2026-02-06T04:33:26+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "7.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "42e5c5cae0c65df12d1b1a3ab52bf3f50f244d88" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/42e5c5cae0c65df12d1b1a3ab52bf3f50f244d88", + "reference": "42e5c5cae0c65df12d1b1a3ab52bf3f50f244d88", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^13.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "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": "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/7.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-invoker", + "type": "tidelift" + } + ], + "time": "2026-02-06T04:34:47+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "a47af19f93f76aa3368303d752aa5272ca3299f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/a47af19f93f76aa3368303d752aa5272ca3299f4", + "reference": "a47af19f93f76aa3368303d752aa5272ca3299f4", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "phpunit/phpunit": "^13.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", + "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/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-text-template", + "type": "tidelift" + } + ], + "time": "2026-02-06T04:36:37+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "9.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "a0e12065831f6ab0d83120dc61513eb8d9a966f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/a0e12065831f6ab0d83120dc61513eb8d9a966f6", + "reference": "a0e12065831f6ab0d83120dc61513eb8d9a966f6", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "phpunit/phpunit": "^13.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "9.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/9.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-timer", + "type": "tidelift" + } + ], + "time": "2026-02-06T04:37:53+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "13.2.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "d76d0e24225e587d6a5f0c6f6d9fef0d90712b54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d76d0e24225e587d6a5f0c6f6d9fef0d90712b54", + "reference": "d76d0e24225e587d6a5f0c6f6d9fef0d90712b54", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-filter": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.13.4", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.4.1", + "phpunit/php-code-coverage": "^14.2.2", + "phpunit/php-file-iterator": "^7.0.0", + "phpunit/php-invoker": "^7.0.0", + "phpunit/php-text-template": "^6.0.0", + "phpunit/php-timer": "^9.0.0", + "sebastian/cli-parser": "^5.0.0", + "sebastian/comparator": "^8.3.0", + "sebastian/diff": "^9.0", + "sebastian/environment": "^9.3.2", + "sebastian/exporter": "^8.1.0", + "sebastian/file-filter": "^1.0", + "sebastian/git-state": "^1.0", + "sebastian/global-state": "^9.0.1", + "sebastian/object-enumerator": "^8.0.0", + "sebastian/recursion-context": "^8.0.0", + "sebastian/type": "^7.0.1", + "sebastian/version": "^7.0.0", + "staabm/side-effects-detector": "^1.0.5" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "13.2-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/13.2.3" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsoring.html", + "type": "other" + } + ], + "time": "2026-07-06T14:55:56+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "48a4654fa5e48c1c81214e9930048a572d4b23ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/48a4654fa5e48c1c81214e9930048a572d4b23ca", + "reference": "48a4654fa5e48c1c81214e9930048a572d4b23ca", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "phpunit/phpunit": "^13.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": "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/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/cli-parser", + "type": "tidelift" + } + ], + "time": "2026-02-06T04:39:44+00:00" + }, + { + "name": "sebastian/comparator", + "version": "8.3.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "c025fc7604afab3f195fab7cdaf72327331af241" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/c025fc7604afab3f195fab7cdaf72327331af241", + "reference": "c025fc7604afab3f195fab7cdaf72327331af241", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.4", + "sebastian/diff": "^9.0", + "sebastian/exporter": "^8.1.0" + }, + "require-dev": { + "phpunit/phpunit": "^13.2" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "8.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/8.3.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator", + "type": "tidelift" + } + ], + "time": "2026-06-05T03:06:45+00:00" + }, + { + "name": "sebastian/complexity", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "c5651c795c98093480df79350cb050813fc7a2f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/c5651c795c98093480df79350cb050813fc7a2f3", + "reference": "c5651c795c98093480df79350cb050813fc7a2f3", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.4" + }, + "require-dev": { + "phpunit/phpunit": "^13.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", + "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/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/complexity", + "type": "tidelift" + } + ], + "time": "2026-02-06T04:41:32+00:00" + }, + { + "name": "sebastian/diff", + "version": "9.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "a3fb6a298a265ff487a91bbea46e03cd01dbb226" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/a3fb6a298a265ff487a91bbea46e03cd01dbb226", + "reference": "a3fb6a298a265ff487a91bbea46e03cd01dbb226", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "phpunit/phpunit": "^13.2", + "symfony/process": "^7.4.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "9.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/9.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/diff", + "type": "tidelift" + } + ], + "time": "2026-06-05T03:04:51+00:00" + }, + { + "name": "sebastian/environment", + "version": "9.3.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "6c9e487c9eb706a8d258102a1c0b0a3e53e86c2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6c9e487c9eb706a8d258102a1c0b0a3e53e86c2e", + "reference": "6c9e487c9eb706a8d258102a1c0b0a3e53e86c2e", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "phpunit/phpunit": "^13.1.11" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "9.3-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/9.3.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/environment", + "type": "tidelift" + } + ], + "time": "2026-05-25T13:41:38+00:00" + }, + { + "name": "sebastian/exporter", + "version": "8.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "c0d29a945f8cf82f300a05e69874508e307ca4c6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c0d29a945f8cf82f300a05e69874508e307ca4c6", + "reference": "c0d29a945f8cf82f300a05e69874508e307ca4c6", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.4", + "sebastian/recursion-context": "^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^13.1.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "8.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/8.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter", + "type": "tidelift" + } + ], + "time": "2026-05-21T11:50:56+00:00" + }, + { + "name": "sebastian/file-filter", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/file-filter.git", + "reference": "33a26f394330f6faa7684bb9cc73afb7727aae93" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/file-filter/zipball/33a26f394330f6faa7684bb9cc73afb7727aae93", + "reference": "33a26f394330f6faa7684bb9cc73afb7727aae93", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "phpunit/phpunit": "^13.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.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 filtering files", + "homepage": "https://github.com/sebastianbergmann/file-filter", + "support": { + "issues": "https://github.com/sebastianbergmann/file-filter/issues", + "security": "https://github.com/sebastianbergmann/file-filter/security/policy", + "source": "https://github.com/sebastianbergmann/file-filter/tree/1.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" }, { - "url": "https://github.com/fabpot", - "type": "github" + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" }, { - "url": "https://github.com/nicolas-grekas", - "type": "github" + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/sebastian/file-filter", "type": "tidelift" } ], - "time": "2026-05-29T05:06:50+00:00" + "time": "2026-04-22T07:20:04+00:00" }, { - "name": "symfony/dependency-injection", - "version": "v7.4.14", + "name": "sebastian/git-state", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/dependency-injection.git", - "reference": "2c8c64a33e2e6911579e1ff79a8e06c27d48d402" + "url": "https://github.com/sebastianbergmann/git-state.git", + "reference": "792a952e0eba55b6960a48aeceb9f371aad1f76b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2c8c64a33e2e6911579e1ff79a8e06c27d48d402", - "reference": "2c8c64a33e2e6911579e1ff79a8e06c27d48d402", + "url": "https://api.github.com/repos/sebastianbergmann/git-state/zipball/792a952e0eba55b6960a48aeceb9f371aad1f76b", + "reference": "792a952e0eba55b6960a48aeceb9f371aad1f76b", "shasum": "" }, "require": { - "php": ">=8.2", - "psr/container": "^1.1|^2.0", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/service-contracts": "^3.6", - "symfony/var-exporter": "^6.4.20|^7.2.5|^8.0" - }, - "conflict": { - "ext-psr": "<1.1|>=2", - "symfony/config": "<6.4", - "symfony/finder": "<6.4", - "symfony/yaml": "<6.4" - }, - "provide": { - "psr/container-implementation": "1.1|2.0", - "symfony/service-implementation": "1.1|2.0|3.0" + "php": ">=8.4" }, "require-dev": { - "symfony/config": "^6.4|^7.0|^8.0", - "symfony/expression-language": "^6.4|^7.0|^8.0", - "symfony/yaml": "^6.4|^7.0|^8.0" + "phpunit/phpunit": "^13.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.0-dev" + } + }, "autoload": { - "psr-4": { - "Symfony\\Component\\DependencyInjection\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Allows you to standardize and centralize the way objects are constructed in your application", - "homepage": "https://symfony.com", + "description": "Library for describing the state of a Git checkout", + "homepage": "https://github.com/sebastianbergmann/git-state", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v7.4.14" + "issues": "https://github.com/sebastianbergmann/git-state/issues", + "security": "https://github.com/sebastianbergmann/git-state/security/policy", + "source": "https://github.com/sebastianbergmann/git-state/tree/1.0.0" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://github.com/sebastianbergmann", + "type": "github" }, { - "url": "https://github.com/fabpot", - "type": "github" + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" }, { - "url": "https://github.com/nicolas-grekas", - "type": "github" + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/sebastian/git-state", "type": "tidelift" } ], - "time": "2026-06-24T07:41:05+00:00" + "time": "2026-03-21T12:54:28+00:00" }, { - "name": "symfony/deprecation-contracts", - "version": "v3.7.1", + "name": "sebastian/global-state", + "version": "9.0.1", "source": { "type": "git", - "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "f3202fa1b5097b0af062dc978b32ecf63404e31d" + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "ba68ba79da690cf7eddefd3ce5b78b20b9ba9945" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/f3202fa1b5097b0af062dc978b32ecf63404e31d", - "reference": "f3202fa1b5097b0af062dc978b32ecf63404e31d", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/ba68ba79da690cf7eddefd3ce5b78b20b9ba9945", + "reference": "ba68ba79da690cf7eddefd3ce5b78b20b9ba9945", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.4", + "sebastian/object-reflector": "^6.0", + "sebastian/recursion-context": "^8.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^13.1.13" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { - "dev-main": "3.7-dev" + "dev-main": "9.0-dev" } }, "autoload": { - "files": [ - "function.php" + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "A generic function and convention to trigger deprecation notices", - "homepage": "https://symfony.com", + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.1" + "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/9.0.1" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://github.com/sebastianbergmann", + "type": "github" }, { - "url": "https://github.com/fabpot", - "type": "github" + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" }, { - "url": "https://github.com/nicolas-grekas", - "type": "github" + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state", "type": "tidelift" } ], - "time": "2026-06-05T06:23:12+00:00" + "time": "2026-06-01T15:11:33+00:00" }, { - "name": "symfony/dom-crawler", - "version": "v8.1.0", + "name": "sebastian/lines-of-code", + "version": "5.0.1", "source": { "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "77ca351474ea018daba5f2e473cbf1b9b8e72ac6" + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "d2cff273a90c79b0eb590baa682d4b5c318bdbb7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/77ca351474ea018daba5f2e473cbf1b9b8e72ac6", - "reference": "77ca351474ea018daba5f2e473cbf1b9b8e72ac6", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d2cff273a90c79b0eb590baa682d4b5c318bdbb7", + "reference": "d2cff273a90c79b0eb590baa682d4b5c318bdbb7", "shasum": "" }, "require": { - "php": ">=8.4.1", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.0" + "nikic/php-parser": "^5.7.0", + "php": ">=8.4" }, "require-dev": { - "symfony/css-selector": "^7.4|^8.0" + "phpunit/phpunit": "^13.1.10" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, "autoload": { - "psr-4": { - "Symfony\\Component\\DomCrawler\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Eases DOM navigation for HTML and XML documents", - "homepage": "https://symfony.com", + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v8.1.0" + "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/5.0.1" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://github.com/sebastianbergmann", + "type": "github" }, { - "url": "https://github.com/fabpot", - "type": "github" + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" }, { - "url": "https://github.com/nicolas-grekas", - "type": "github" + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/sebastian/lines-of-code", "type": "tidelift" } ], - "time": "2026-05-29T05:06:50+00:00" + "time": "2026-05-19T16:23:37+00:00" }, { - "name": "symfony/event-dispatcher", - "version": "v7.4.14", + "name": "sebastian/object-enumerator", + "version": "8.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "51fe3d170227be8d1772214b82ae506e15ed78ff" + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "b39ab125fd9a7434b0ecbc4202eebce11a98cfc5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/51fe3d170227be8d1772214b82ae506e15ed78ff", - "reference": "51fe3d170227be8d1772214b82ae506e15ed78ff", - "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" + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/b39ab125fd9a7434b0ecbc4202eebce11a98cfc5", + "reference": "b39ab125fd9a7434b0ecbc4202eebce11a98cfc5", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "sebastian/object-reflector": "^6.0", + "sebastian/recursion-context": "^8.0" }, "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^6.4|^7.0|^8.0", - "symfony/dependency-injection": "^6.4|^7.0|^8.0", - "symfony/error-handler": "^6.4|^7.0|^8.0", - "symfony/expression-language": "^6.4|^7.0|^8.0", - "symfony/framework-bundle": "^6.4|^7.0|^8.0", - "symfony/http-foundation": "^6.4|^7.0|^8.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^6.4|^7.0|^8.0" + "phpunit/phpunit": "^13.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "8.0-dev" + } + }, "autoload": { - "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", - "homepage": "https://symfony.com", + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.14" + "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/8.0.0" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://github.com/sebastianbergmann", + "type": "github" }, { - "url": "https://github.com/fabpot", - "type": "github" + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" }, { - "url": "https://github.com/nicolas-grekas", - "type": "github" + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/sebastian/object-enumerator", "type": "tidelift" } ], - "time": "2026-06-06T11:10:32+00:00" + "time": "2026-02-06T04:46:36+00:00" }, { - "name": "symfony/event-dispatcher-contracts", - "version": "v3.7.1", + "name": "sebastian/object-reflector", + "version": "6.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "c7de7a00ffb67842132da02ea92988a39ccd9f4e" + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "3ca042c2c60b0eab094f8a1b6a7093f4d4c72200" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c7de7a00ffb67842132da02ea92988a39ccd9f4e", - "reference": "c7de7a00ffb67842132da02ea92988a39ccd9f4e", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/3ca042c2c60b0eab094f8a1b6a7093f4d4c72200", + "reference": "3ca042c2c60b0eab094f8a1b6a7093f4d4c72200", "shasum": "" }, "require": { - "php": ">=8.1", - "psr/event-dispatcher": "^1" + "php": ">=8.4" + }, + "require-dev": { + "phpunit/phpunit": "^13.0" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { - "dev-main": "3.7-dev" + "dev-main": "6.0-dev" } }, "autoload": { - "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "Generic abstractions related to dispatching event", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.7.1" + "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/6.0.0" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://github.com/sebastianbergmann", + "type": "github" }, { - "url": "https://github.com/fabpot", - "type": "github" + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" }, { - "url": "https://github.com/nicolas-grekas", - "type": "github" + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/sebastian/object-reflector", "type": "tidelift" } ], - "time": "2026-06-05T06:23:12+00:00" + "time": "2026-02-06T04:47:13+00:00" }, { - "name": "symfony/filesystem", - "version": "v8.1.0", + "name": "sebastian/recursion-context", + "version": "8.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "99aec13b82b4967ec5088222c4a3ecca955949c2" + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "74c5af21f6a5833e91767ca068c4d3dfec15317e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/99aec13b82b4967ec5088222c4a3ecca955949c2", - "reference": "99aec13b82b4967ec5088222c4a3ecca955949c2", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/74c5af21f6a5833e91767ca068c4d3dfec15317e", + "reference": "74c5af21f6a5833e91767ca068c4d3dfec15317e", "shasum": "" }, "require": { - "php": ">=8.4.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.8" + "php": ">=8.4" }, "require-dev": { - "symfony/process": "^7.4|^8.0" + "phpunit/phpunit": "^13.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "8.0-dev" + } + }, "autoload": { - "psr-4": { - "Symfony\\Component\\Filesystem\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" } ], - "description": "Provides basic utilities for the filesystem", - "homepage": "https://symfony.com", + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { - "source": "https://github.com/symfony/filesystem/tree/v8.1.0" + "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/8.0.0" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://github.com/sebastianbergmann", + "type": "github" }, { - "url": "https://github.com/fabpot", - "type": "github" + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" }, { - "url": "https://github.com/nicolas-grekas", - "type": "github" + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context", "type": "tidelift" } ], - "time": "2026-05-29T05:06:50+00:00" + "time": "2026-02-06T04:51:28+00:00" }, { - "name": "symfony/polyfill-ctype", - "version": "v1.37.0", + "name": "sebastian/type", + "version": "7.0.1", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "141046a8f9477948ff284fa65be2095baafb94f2" + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "fee0309275847fefd7636167085e379c1dbf6990" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2", - "reference": "141046a8f9477948ff284fa65be2095baafb94f2", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fee0309275847fefd7636167085e379c1dbf6990", + "reference": "fee0309275847fefd7636167085e379c1dbf6990", "shasum": "" }, "require": { - "php": ">=7.2" - }, - "provide": { - "ext-ctype": "*" + "php": ">=8.4" }, - "suggest": { - "ext-ctype": "For best performance" + "require-dev": { + "phpunit/phpunit": "^13.1.10" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "branch-alias": { + "dev-main": "7.0-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "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" + { + "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": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.37.0" + "issues": "https://github.com/sebastianbergmann/type/issues", + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/tree/7.0.1" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://github.com/sebastianbergmann", + "type": "github" }, { - "url": "https://github.com/fabpot", - "type": "github" + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" }, { - "url": "https://github.com/nicolas-grekas", - "type": "github" + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/sebastian/type", "type": "tidelift" } ], - "time": "2026-04-10T16:19:22+00:00" + "time": "2026-05-20T06:49:11+00:00" }, { - "name": "symfony/polyfill-deepclone", - "version": "v1.40.0", + "name": "sebastian/version", + "version": "7.0.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-deepclone.git", - "reference": "dca4ccba5f360070b574414dce4c1e7a559844fa" + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "ad37a5552c8e2b88572249fdc19b6da7792e021b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-deepclone/zipball/dca4ccba5f360070b574414dce4c1e7a559844fa", - "reference": "dca4ccba5f360070b574414dce4c1e7a559844fa", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/ad37a5552c8e2b88572249fdc19b6da7792e021b", + "reference": "ad37a5552c8e2b88572249fdc19b6da7792e021b", "shasum": "" }, "require": { - "php": ">=8.1" - }, - "provide": { - "ext-deepclone": "*" - }, - "suggest": { - "ext-deepclone": "For best performance" + "php": ">=8.4" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "branch-alias": { + "dev-main": "7.0-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\DeepClone\\": "" - }, "classmap": [ - "Resources/stubs" + "src/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Symfony polyfill for the deepclone extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "deepclone", - "polyfill", - "portable", - "shim" - ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", "support": { - "source": "https://github.com/symfony/polyfill-deepclone/tree/v1.40.0" + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/7.0.0" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://github.com/sebastianbergmann", + "type": "github" }, { - "url": "https://github.com/fabpot", - "type": "github" + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" }, { - "url": "https://github.com/nicolas-grekas", - "type": "github" + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/sebastian/version", "type": "tidelift" } ], - "time": "2026-06-12T07:27:17+00:00" + "time": "2026-02-06T04:52:52+00:00" }, { - "name": "symfony/polyfill-intl-grapheme", - "version": "v1.38.1", + "name": "staabm/side-effects-detector", + "version": "1.0.5", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "e9247d281d694a5120554d9afaf54e070e88a603" + "url": "https://github.com/staabm/side-effects-detector.git", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/e9247d281d694a5120554d9afaf54e070e88a603", - "reference": "e9247d281d694a5120554d9afaf54e070e88a603", + "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163", "shasum": "" }, "require": { - "php": ">=7.2" + "ext-tokenizer": "*", + "php": "^7.4 || ^8.0" }, - "suggest": { - "ext-intl": "For best performance" + "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", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Intl\\Grapheme\\": "" - } + "classmap": [ + "lib/" + ] }, "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", + "description": "A static analysis tool to detect side effects in PHP code", "keywords": [ - "compatibility", - "grapheme", - "intl", - "polyfill", - "portable", - "shim" + "static analysis" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.38.1" + "issues": "https://github.com/staabm/side-effects-detector/issues", + "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://github.com/nicolas-grekas", + "url": "https://github.com/staabm", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" } ], - "time": "2026-05-26T05:58:03+00:00" + "time": "2024-10-20T05:08:20+00:00" }, { - "name": "symfony/polyfill-intl-normalizer", - "version": "v1.38.0", + "name": "symfony/browser-kit", + "version": "v8.1.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b" + "url": "https://github.com/symfony/browser-kit.git", + "reference": "74e18e582cdda0eca35f7c74e1e48e62f0ede853" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/2d446c214bdbe5b71bde5011b060a05fece3ae6b", - "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/74e18e582cdda0eca35f7c74e1e48e62f0ede853", + "reference": "74e18e582cdda0eca35f7c74e1e48e62f0ede853", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=8.4.1", + "symfony/dom-crawler": "^7.4|^8.0" }, - "suggest": { - "ext-intl": "For best performance" + "require-dev": { + "symfony/css-selector": "^7.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/mime": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0" }, "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + "Symfony\\Component\\BrowserKit\\": "" }, - "classmap": [ - "Resources/stubs" + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -3990,26 +9455,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's Normalizer class and related functions", + "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "intl", - "normalizer", - "polyfill", - "portable", - "shim" - ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.38.0" + "source": "https://github.com/symfony/browser-kit/tree/v8.1.0" }, "funding": [ { @@ -4029,46 +9486,47 @@ "type": "tidelift" } ], - "time": "2026-05-25T13:48:31+00:00" + "time": "2026-05-29T05:06:50+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.38.2", + "name": "symfony/config", + "version": "v7.4.14", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6" + "url": "https://github.com/symfony/config.git", + "reference": "7b665e443381ea7c4db03eb03b4bf79ea2b020eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6", - "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6", + "url": "https://api.github.com/repos/symfony/config/zipball/7b665e443381ea7c4db03eb03b4bf79ea2b020eb", + "reference": "7b665e443381ea7c4db03eb03b4bf79ea2b020eb", "shasum": "" }, "require": { - "ext-iconv": "*", - "php": ">=7.2" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/filesystem": "^7.1|^8.0", + "symfony/polyfill-ctype": "~1.8" }, - "provide": { - "ext-mbstring": "*" + "conflict": { + "symfony/finder": "<6.4", + "symfony/service-contracts": "<2.5" }, - "suggest": { - "ext-mbstring": "For best performance" + "require-dev": { + "symfony/event-dispatcher": "^6.4|^7.0|^8.0", + "symfony/finder": "^6.4|^7.0|^8.0", + "symfony/messenger": "^6.4|^7.0|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^6.4|^7.0|^8.0" }, "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - } + "Symfony\\Component\\Config\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -4076,25 +9534,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Mbstring extension", + "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" - ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.38.2" + "source": "https://github.com/symfony/config/tree/v7.4.14" }, "funding": [ { @@ -4114,46 +9565,51 @@ "type": "tidelift" } ], - "time": "2026-05-27T06:59:30+00:00" + "time": "2026-06-09T07:51:57+00:00" }, { - "name": "symfony/service-contracts", - "version": "v3.7.1", + "name": "symfony/dependency-injection", + "version": "v7.4.14", "source": { "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "c0a284bab1ed8aa0417e3d69250ab437739563a0" + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "2c8c64a33e2e6911579e1ff79a8e06c27d48d402" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/c0a284bab1ed8aa0417e3d69250ab437739563a0", - "reference": "c0a284bab1ed8aa0417e3d69250ab437739563a0", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2c8c64a33e2e6911579e1ff79a8e06c27d48d402", + "reference": "2c8c64a33e2e6911579e1ff79a8e06c27d48d402", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/container": "^1.1|^2.0", - "symfony/deprecation-contracts": "^2.5|^3" + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/service-contracts": "^3.6", + "symfony/var-exporter": "^6.4.20|^7.2.5|^8.0" }, "conflict": { - "ext-psr": "<1.1|>=2" + "ext-psr": "<1.1|>=2", + "symfony/config": "<6.4", + "symfony/finder": "<6.4", + "symfony/yaml": "<6.4" }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, - "branch-alias": { - "dev-main": "3.7-dev" - } + "provide": { + "psr/container-implementation": "1.1|2.0", + "symfony/service-implementation": "1.1|2.0|3.0" + }, + "require-dev": { + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/yaml": "^6.4|^7.0|^8.0" }, + "type": "library", "autoload": { "psr-4": { - "Symfony\\Contracts\\Service\\": "" + "Symfony\\Component\\DependencyInjection\\": "" }, "exclude-from-classmap": [ - "/Test/" + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -4162,26 +9618,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to writing services", + "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.7.1" + "source": "https://github.com/symfony/dependency-injection/tree/v7.4.14" }, "funding": [ { @@ -4201,46 +9649,34 @@ "type": "tidelift" } ], - "time": "2026-06-16T09:55:08+00:00" + "time": "2026-06-24T07:41:05+00:00" }, { - "name": "symfony/string", + "name": "symfony/dom-crawler", "version": "v8.1.0", "source": { "type": "git", - "url": "https://github.com/symfony/string.git", - "reference": "afd5944f4005862d961efb85c8bbd5c523c4e3c9" + "url": "https://github.com/symfony/dom-crawler.git", + "reference": "77ca351474ea018daba5f2e473cbf1b9b8e72ac6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/afd5944f4005862d961efb85c8bbd5c523c4e3c9", - "reference": "afd5944f4005862d961efb85c8bbd5c523c4e3c9", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/77ca351474ea018daba5f2e473cbf1b9b8e72ac6", + "reference": "77ca351474ea018daba5f2e473cbf1b9b8e72ac6", "shasum": "" }, "require": { "php": ">=8.4.1", "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-intl-grapheme": "^1.33", - "symfony/polyfill-intl-normalizer": "^1.0", "symfony/polyfill-mbstring": "^1.0" }, - "conflict": { - "symfony/translation-contracts": "<2.5" - }, "require-dev": { - "symfony/emoji": "^7.4|^8.0", - "symfony/http-client": "^7.4|^8.0", - "symfony/intl": "^7.4|^8.0", - "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^7.4|^8.0" + "symfony/css-selector": "^7.4|^8.0" }, "type": "library", "autoload": { - "files": [ - "Resources/functions.php" - ], "psr-4": { - "Symfony\\Component\\String\\": "" + "Symfony\\Component\\DomCrawler\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -4252,26 +9688,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.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", + "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", - "keywords": [ - "grapheme", - "i18n", - "string", - "unicode", - "utf-8", - "utf8" - ], "support": { - "source": "https://github.com/symfony/string/tree/v8.1.0" + "source": "https://github.com/symfony/dom-crawler/tree/v8.1.0" }, "funding": [ { @@ -4294,61 +9722,32 @@ "time": "2026-05-29T05:06:50+00:00" }, { - "name": "symfony/translation", - "version": "v7.4.14", + "name": "symfony/filesystem", + "version": "v8.1.0", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "a1af4dacb24eb7ef4f1ca71b94da8ddbce572281" + "url": "https://github.com/symfony/filesystem.git", + "reference": "99aec13b82b4967ec5088222c4a3ecca955949c2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/a1af4dacb24eb7ef4f1ca71b94da8ddbce572281", - "reference": "a1af4dacb24eb7ef4f1ca71b94da8ddbce572281", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/99aec13b82b4967ec5088222c4a3ecca955949c2", + "reference": "99aec13b82b4967ec5088222c4a3ecca955949c2", "shasum": "" }, "require": { - "php": ">=8.2", + "php": ">=8.4.1", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/translation-contracts": "^2.5.3|^3.3" - }, - "conflict": { - "nikic/php-parser": "<5.0", - "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" + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.8" }, "require-dev": { - "nikic/php-parser": "^5.0", - "psr/log": "^1|^2|^3", - "symfony/config": "^6.4|^7.0|^8.0", - "symfony/console": "^6.4|^7.0|^8.0", - "symfony/dependency-injection": "^6.4|^7.0|^8.0", - "symfony/finder": "^6.4|^7.0|^8.0", - "symfony/http-client-contracts": "^2.5|^3.0", - "symfony/http-kernel": "^6.4|^7.0|^8.0", - "symfony/intl": "^6.4|^7.0|^8.0", - "symfony/polyfill-intl-icu": "^1.21", - "symfony/routing": "^6.4|^7.0|^8.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/yaml": "^6.4|^7.0|^8.0" + "symfony/process": "^7.4|^8.0" }, "type": "library", "autoload": { - "files": [ - "Resources/functions.php" - ], "psr-4": { - "Symfony\\Component\\Translation\\": "" + "Symfony\\Component\\Filesystem\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -4368,10 +9767,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides tools to internationalize your application", + "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v7.4.14" + "source": "https://github.com/symfony/filesystem/tree/v8.1.0" }, "funding": [ { @@ -4391,41 +9790,47 @@ "type": "tidelift" } ], - "time": "2026-06-06T09:33:19+00:00" + "time": "2026-05-29T05:06:50+00:00" }, { - "name": "symfony/translation-contracts", - "version": "v3.7.1", + "name": "symfony/polyfill-deepclone", + "version": "v1.40.0", "source": { "type": "git", - "url": "https://github.com/symfony/translation-contracts.git", - "reference": "ccb206b98faccc511ebae8e5fad50f2dc0b30621" + "url": "https://github.com/symfony/polyfill-deepclone.git", + "reference": "dca4ccba5f360070b574414dce4c1e7a559844fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/ccb206b98faccc511ebae8e5fad50f2dc0b30621", - "reference": "ccb206b98faccc511ebae8e5fad50f2dc0b30621", + "url": "https://api.github.com/repos/symfony/polyfill-deepclone/zipball/dca4ccba5f360070b574414dce4c1e7a559844fa", + "reference": "dca4ccba5f360070b574414dce4c1e7a559844fa", "shasum": "" }, "require": { "php": ">=8.1" }, + "provide": { + "ext-deepclone": "*" + }, + "suggest": { + "ext-deepclone": "For best performance" + }, "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, - "branch-alias": { - "dev-main": "3.7-dev" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Contracts\\Translation\\": "" + "Symfony\\Polyfill\\DeepClone\\": "" }, - "exclude-from-classmap": [ - "/Test/" + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -4442,18 +9847,17 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to translation", + "description": "Symfony polyfill for the deepclone extension", "homepage": "https://symfony.com", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "compatibility", + "deepclone", + "polyfill", + "portable", + "shim" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.7.1" + "source": "https://github.com/symfony/polyfill-deepclone/tree/v1.40.0" }, "funding": [ { @@ -4473,7 +9877,7 @@ "type": "tidelift" } ], - "time": "2026-06-05T06:23:12+00:00" + "time": "2026-06-12T07:27:17+00:00" }, { "name": "symfony/var-exporter", @@ -4688,7 +10092,7 @@ "aliases": [], "minimum-stability": "stable", "stability-flags": {}, - "prefer-stable": false, + "prefer-stable": true, "prefer-lowest": false, "platform": { "php": "^8.4.1", diff --git a/config/app.php b/config/app.php new file mode 100644 index 000000000..f99e460d1 --- /dev/null +++ b/config/app.php @@ -0,0 +1,126 @@ + env('APP_NAME', 'OpenCATS'), + + /* + |-------------------------------------------------------------------------- + | 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(',', (string) 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/config/auth.php b/config/auth.php new file mode 100644 index 000000000..d7568ff19 --- /dev/null +++ b/config/auth.php @@ -0,0 +1,117 @@ + [ + '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', 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 number 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/config/cache.php b/config/cache.php new file mode 100644 index 000000000..c68acdfc0 --- /dev/null +++ b/config/cache.php @@ -0,0 +1,130 @@ + 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", + | "failover", "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', + ], + + 'failover' => [ + 'driver' => 'failover', + 'stores' => [ + 'database', + 'array', + ], + ], + + ], + + /* + |-------------------------------------------------------------------------- + | 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((string) env('APP_NAME', 'laravel')).'-cache-'), + + /* + |-------------------------------------------------------------------------- + | Serializable Classes + |-------------------------------------------------------------------------- + | + | This value determines the classes that can be unserialized from cache + | storage. By default, no PHP classes will be unserialized from your + | cache to prevent gadget chain attacks if your APP_KEY is leaked. + | + */ + + 'serializable_classes' => false, + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 000000000..64709ce5a --- /dev/null +++ b/config/database.php @@ -0,0 +1,184 @@ + 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, + 'transaction_mode' => 'DEFERRED', + ], + + '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([ + (PHP_VERSION_ID >= 80500 ? Mysql::ATTR_SSL_CA : 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([ + (PHP_VERSION_ID >= 80500 ? Mysql::ATTR_SSL_CA : 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' => env('DB_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((string) 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'), + 'max_retries' => env('REDIS_MAX_RETRIES', 3), + 'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'), + 'backoff_base' => env('REDIS_BACKOFF_BASE', 100), + 'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000), + ], + + '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'), + 'max_retries' => env('REDIS_MAX_RETRIES', 3), + 'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'), + 'backoff_base' => env('REDIS_BACKOFF_BASE', 100), + 'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000), + ], + + ], + +]; diff --git a/config/filesystems.php b/config/filesystems.php new file mode 100644 index 000000000..37d8fca4f --- /dev/null +++ b/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' => rtrim(env('APP_URL', 'http://localhost'), '/').'/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/config/logging.php b/config/logging.php new file mode 100644 index 000000000..b09cb25d9 --- /dev/null +++ b/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(',', (string) 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', env('APP_NAME', 'Laravel')), + '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/config/mail.php b/config/mail.php new file mode 100644 index 000000000..e32e88da2 --- /dev/null +++ b/config/mail.php @@ -0,0 +1,118 @@ + 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((string) 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', + ], + 'retry_after' => 60, + ], + + 'roundrobin' => [ + 'transport' => 'roundrobin', + 'mailers' => [ + 'ses', + 'postmark', + ], + 'retry_after' => 60, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | 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', env('APP_NAME', 'Laravel')), + ], + +]; diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 000000000..79c2c0a23 --- /dev/null +++ b/config/queue.php @@ -0,0 +1,129 @@ + 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", + | "deferred", "background", "failover", "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, + ], + + 'deferred' => [ + 'driver' => 'deferred', + ], + + 'background' => [ + 'driver' => 'background', + ], + + 'failover' => [ + 'driver' => 'failover', + 'connections' => [ + 'database', + 'deferred', + ], + ], + + ], + + /* + |-------------------------------------------------------------------------- + | 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/config/services.php b/config/services.php new file mode 100644 index 000000000..6a90eb830 --- /dev/null +++ b/config/services.php @@ -0,0 +1,38 @@ + [ + 'key' => env('POSTMARK_API_KEY'), + ], + + 'resend' => [ + 'key' => env('RESEND_API_KEY'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + + 'slack' => [ + 'notifications' => [ + 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), + 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), + ], + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 000000000..f5744827f --- /dev/null +++ b/config/session.php @@ -0,0 +1,233 @@ + 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: "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((string) 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 without 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), + + /* + |-------------------------------------------------------------------------- + | Session Serialization + |-------------------------------------------------------------------------- + | + | This value controls the serialization strategy for session data, which + | is JSON by default. Setting this to "php" allows the storage of PHP + | objects in the session but can make an application vulnerable to + | "gadget chain" serialization attacks if the APP_KEY is leaked. + | + | Supported: "json", "php" + | + */ + + 'serialization' => 'json', + +]; diff --git a/database/.gitignore b/database/.gitignore new file mode 100644 index 000000000..9b19b93c9 --- /dev/null +++ b/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php new file mode 100644 index 000000000..c4ceb0745 --- /dev/null +++ b/database/factories/UserFactory.php @@ -0,0 +1,45 @@ + + */ +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/database/migrations/0001_01_01_000000_create_users_table.php b/database/migrations/0001_01_01_000000_create_users_table.php new file mode 100644 index 000000000..05fb5d9ea --- /dev/null +++ b/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/database/migrations/0001_01_01_000001_create_cache_table.php b/database/migrations/0001_01_01_000001_create_cache_table.php new file mode 100644 index 000000000..06dc7a5ee --- /dev/null +++ b/database/migrations/0001_01_01_000001_create_cache_table.php @@ -0,0 +1,35 @@ +string('key')->primary(); + $table->mediumText('value'); + $table->bigInteger('expiration')->index(); + }); + + Schema::create('cache_locks', function (Blueprint $table) { + $table->string('key')->primary(); + $table->string('owner'); + $table->bigInteger('expiration')->index(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('cache'); + Schema::dropIfExists('cache_locks'); + } +}; diff --git a/database/migrations/0001_01_01_000002_create_jobs_table.php b/database/migrations/0001_01_01_000002_create_jobs_table.php new file mode 100644 index 000000000..87d3ed78f --- /dev/null +++ b/database/migrations/0001_01_01_000002_create_jobs_table.php @@ -0,0 +1,57 @@ +id(); + $table->string('queue')->index(); + $table->longText('payload'); + $table->unsignedSmallInteger('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/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php new file mode 100644 index 000000000..6b901f8bc --- /dev/null +++ b/database/seeders/DatabaseSeeder.php @@ -0,0 +1,25 @@ +create(); + + User::factory()->create([ + 'name' => 'Test User', + 'email' => 'test@example.com', + ]); + } +} diff --git a/docker/docker-compose-test.yml b/docker/docker-compose-test.yml deleted file mode 100644 index cb967dfa6..000000000 --- a/docker/docker-compose-test.yml +++ /dev/null @@ -1,76 +0,0 @@ -services: - opencats: - container_name: opencats_test_web - image: prooph/nginx:www - ports: - - "80:80" - - "443:443" - volumes_from: - - opencatsdata - - php: - container_name: opencats_test_php - build: - context: .. - dockerfile: docker/php/Dockerfile - args: - PHP_VERSION: ${PHP_VERSION:-8.4.1} - working_dir: /var/www/public - volumes_from: - - opencatsdata - - opencatsdata: - container_name: opencats_test_data - image: busybox - volumes: - - ..:/var/www/public - command: "true" - - opencatsdb: - container_name: opencats_test_mariadb - image: mariadb:10.7 - ports: - - 3306 - environment: - - MYSQL_ROOT_PASSWORD=dev - - MYSQL_USER=dev - - MYSQL_PASSWORD=dev - - MYSQL_DATABASE=cats_test - healthcheck: - test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-udev", "-pdev", "--silent"] - interval: 5s - timeout: 5s - retries: 30 - start_period: 20s - volumes: - - ../test/data/:/test/data/ - - ../test/scripts/:/test/scripts - - ../db:/db - - ../db/cats_schema.sql:/docker-entrypoint-initdb.d/000_initDB.sql - - ../test/data/securityTests.sql:/docker-entrypoint-initdb.d/001_addUsers.sql - - integrationtestdb: - image: mariadb:10.7 - ports: - - 3307:3306 - environment: - - MYSQL_ROOT_PASSWORD=dev - - MYSQL_USER=dev - - MYSQL_PASSWORD=dev - - MYSQL_DATABASE=cats_integrationtest - healthcheck: - test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-udev", "-pdev", "--silent"] - interval: 5s - timeout: 5s - retries: 30 - start_period: 20s - - selenium: - container_name: selenium_test - image: mlespiau/standalone-chrome:2.53.1-cd2.23 - environment: - # Required to avoid container startup hanging sometimes in - # some environments - JAVA_OPTS: -Djava.security.egd=file:/dev/./urandom - ports: - - 4444 diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml deleted file mode 100644 index 746db0f2a..000000000 --- a/docker/docker-compose.yml +++ /dev/null @@ -1,50 +0,0 @@ -services: - opencats: - container_name: opencats_web - image: prooph/nginx:www - ports: - - "80:80" - - "443:443" - volumes_from: - - opencatsdata - - php: - container_name: opencats_php - build: - context: .. - dockerfile: docker/php/Dockerfile - volumes_from: - - opencatsdata - - opencatsdata: - container_name: opencats_data - image: busybox - volumes: - - ..:/var/www/public - command: "true" - - opencatsdb: - container_name: opencats_mariadb - image: mariadb - ports: - - 3306:3306 - environment: - - MYSQL_ROOT_PASSWORD=root - - MYSQL_USER=dev - - MYSQL_PASSWORD=dev - - MYSQL_DATABASE=cats - volumes: - - ../test/data:/docker-entrypoint-initdb.d - - ./persist/mysql:/var/lib/mysql - - phpmyadmin: - container_name: opencats_phpmyadmin - image: phpmyadmin/phpmyadmin - ports: - - 8080:80 - links: - - opencatsdb:db - environment: - - PMA_HOST=db - - PMA_USER=dev - - PMA_PASSWORD=dev diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile deleted file mode 100644 index 590f3027f..000000000 --- a/docker/php/Dockerfile +++ /dev/null @@ -1,50 +0,0 @@ -ARG PHP_VERSION=8.4.1 -FROM php:${PHP_VERSION}-fpm-alpine - -# Runtime/system packages required by OpenCATS and helper tools. -RUN apk add --no-cache \ - antiword \ - coreutils \ - html2text \ - libltdl \ - poppler-utils \ - wget - -# Build dependencies for PHP extensions and external tools. -RUN apk add --no-cache \ - alpine-sdk \ - autoconf \ - automake \ - freetype-dev \ - libjpeg-turbo-dev \ - libmcrypt-dev \ - oniguruma-dev \ - libpng-dev \ - libxml2-dev \ - libzip-dev \ - openldap-dev - -# External tools. -RUN cd /tmp && \ - wget https://ftp.gnu.org/gnu/unrtf/unrtf-0.21.10.tar.gz && \ - tar xzvf unrtf-0.21.10.tar.gz && \ - cd unrtf-0.21.10/ && \ - export CFLAGS="-D_GNU_SOURCE -std=gnu89 -Wno-error=implicit-int -Wno-error=implicit-function-declaration" && \ - ./bootstrap && \ - ./configure && \ - make && \ - make install - -# PHP extensions expected by OpenCATS. -RUN pecl install mcrypt-1.0.9 && docker-php-ext-enable mcrypt -RUN docker-php-ext-configure gd --with-freetype --with-jpeg \ - && docker-php-ext-install -j"$(nproc)" mysqli gd soap zip ldap mbstring - -# Composer and helper binaries. -COPY docker/php/scripts/install-composer.sh /opt/install-composer.sh -RUN chmod +x /opt/install-composer.sh && \ - /opt/install-composer.sh && \ - mv /var/www/html/composer.phar /usr/local/bin/composer -ENV DOCKERIZE_VERSION=v0.2.0 -RUN wget https://github.com/jwilder/dockerize/releases/download/${DOCKERIZE_VERSION}/dockerize-linux-amd64-${DOCKERIZE_VERSION}.tar.gz \ - && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-${DOCKERIZE_VERSION}.tar.gz diff --git a/docker/php/scripts/install-composer.sh b/docker/php/scripts/install-composer.sh deleted file mode 100755 index bb200f00b..000000000 --- a/docker/php/scripts/install-composer.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -set -eu - -php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" -php composer-setup.php -rm -f composer-setup.php diff --git a/legacy/.gitignore b/legacy/.gitignore new file mode 100644 index 000000000..5f085a4a0 --- /dev/null +++ b/legacy/.gitignore @@ -0,0 +1,19 @@ +INSTALL_BLOCK +.buildpath +.project +.settings/* +docker/data/* +docker/persist/* +vendor/* +attachments/* +!attachments/.htaccess +!attachments/index.php +temp/* +!temp/.htaccess +uploads/* +# Ignore Mac DS_Store files +.DS_Store +/vendor/ +.phpunit.result.cache +*.diff +*.rej diff --git a/Error.tpl b/legacy/Error.tpl similarity index 100% rename from Error.tpl rename to legacy/Error.tpl diff --git a/QueueCLI.php b/legacy/QueueCLI.php similarity index 100% rename from QueueCLI.php rename to legacy/QueueCLI.php diff --git a/legacy/README-testing.md b/legacy/README-testing.md new file mode 100644 index 000000000..8103bbfa4 --- /dev/null +++ b/legacy/README-testing.md @@ -0,0 +1,56 @@ +# Legacy Testing Infrastructure Notes + +The legacy OpenCATS tests still live in their original folders and are run +through the Laravel Sail stack. There are two groups of tests: + +* **Laravel suite** – `tests/Unit`, `tests/Feature` (root `phpunit.xml`), run + with `sail artisan test`. +* **Legacy suites** – kept under `legacy/`, driven by their own + `legacy/phpunit.xml.dist` and `legacy/test/behat.yml`: + * `UnitTests` – pure unit tests, no infrastructure required. + * `IntegrationTests` – need a MariaDB sandbox (`integrationtestdb`). + * `Behat` (`default` / `security`) – drive the legacy app (served through the + Laravel wrapper) against `opencatsdb`, optionally via Selenium. + +## CI-only services + +The legacy databases and browser are recreated for CI by `compose.ci.yml`, +which is merged with the base Sail stack (`compose.yaml`) via the +`COMPOSE_FILE` environment variable: + +| Service | Purpose | +| ------------------- | --------------------------------------------------- | +| `opencatsdb` | Functional DB for Behat. Seeded from `legacy/db/cats_schema.sql` + `legacy/test/data/securityTests.sql`. | +| `integrationtestdb` | Disposable sandbox; `DatabaseTestCase` drops/recreates `cats_integrationtest` each run. | +| `selenium` | Standalone Chrome for `@javascript` Behat scenarios. | + +Hostnames and credentials (`dev`/`dev`) mirror `legacy/test/config.php`. + +## Running the suites locally + +```bash +# 1. Bring up the full stack (base Sail + legacy CI services) +export COMPOSE_FILE=compose.yaml:compose.ci.yml +cp legacy/test/config.php legacy/config.php +./vendor/bin/sail up -d --wait + +# 2. Laravel suite +./vendor/bin/sail artisan test + +# 3. Legacy suites (run from the legacy/ working directory inside the container) +./vendor/bin/sail exec laravel.test bash -c "cd legacy && ../vendor/bin/phpunit -c phpunit.xml.dist --testsuite UnitTests" +./vendor/bin/sail exec laravel.test bash -c "cd legacy && ../vendor/bin/phpunit -c phpunit.xml.dist --testsuite IntegrationTests" +./vendor/bin/sail exec laravel.test bash -c "cd legacy && ../vendor/bin/behat -c test/behat.yml --suite=default" +./vendor/bin/sail exec laravel.test bash -c "cd legacy && ../vendor/bin/behat -c test/behat.yml --suite=security" +``` + +## Troubleshooting + +* **DB not ready:** `sail up -d --wait` blocks on the healthchecks, so the + seeded databases are ready before tests run. If a suite still can't connect, + check `sail logs opencatsdb integrationtestdb`. +* **Behat can't reach the app:** the suites target `http://laravel.test` (the + Sail app container serving the legacy app through the wrapper). Ensure the + `laravel.test` service is up. +* **Risky tests:** PHPUnit may flag empty placeholder methods as "Risky". These + do not fail the build. diff --git a/ajax.php b/legacy/ajax.php similarity index 100% rename from ajax.php rename to legacy/ajax.php diff --git a/ajax/bootstrap.php b/legacy/ajax/bootstrap.php similarity index 100% rename from ajax/bootstrap.php rename to legacy/ajax/bootstrap.php diff --git a/ajax/deleteActivity.php b/legacy/ajax/deleteActivity.php similarity index 100% rename from ajax/deleteActivity.php rename to legacy/ajax/deleteActivity.php diff --git a/ajax/editActivity.php b/legacy/ajax/editActivity.php similarity index 100% rename from ajax/editActivity.php rename to legacy/ajax/editActivity.php diff --git a/ajax/getCandidateIdByEmail.php b/legacy/ajax/getCandidateIdByEmail.php similarity index 100% rename from ajax/getCandidateIdByEmail.php rename to legacy/ajax/getCandidateIdByEmail.php diff --git a/ajax/getCandidateIdByPhone.php b/legacy/ajax/getCandidateIdByPhone.php similarity index 100% rename from ajax/getCandidateIdByPhone.php rename to legacy/ajax/getCandidateIdByPhone.php diff --git a/ajax/getCompanyContacts.php b/legacy/ajax/getCompanyContacts.php similarity index 100% rename from ajax/getCompanyContacts.php rename to legacy/ajax/getCompanyContacts.php diff --git a/ajax/getCompanyLocation.php b/legacy/ajax/getCompanyLocation.php similarity index 100% rename from ajax/getCompanyLocation.php rename to legacy/ajax/getCompanyLocation.php diff --git a/ajax/getCompanyLocationAndDepartments.php b/legacy/ajax/getCompanyLocationAndDepartments.php similarity index 100% rename from ajax/getCompanyLocationAndDepartments.php rename to legacy/ajax/getCompanyLocationAndDepartments.php diff --git a/ajax/getCompanyNames.php b/legacy/ajax/getCompanyNames.php similarity index 100% rename from ajax/getCompanyNames.php rename to legacy/ajax/getCompanyNames.php diff --git a/ajax/getDataGridPager.php b/legacy/ajax/getDataGridPager.php similarity index 100% rename from ajax/getDataGridPager.php rename to legacy/ajax/getDataGridPager.php diff --git a/ajax/getDataItemJobOrders.php b/legacy/ajax/getDataItemJobOrders.php similarity index 100% rename from ajax/getDataItemJobOrders.php rename to legacy/ajax/getDataItemJobOrders.php diff --git a/ajax/getParsedAddress.php b/legacy/ajax/getParsedAddress.php similarity index 100% rename from ajax/getParsedAddress.php rename to legacy/ajax/getParsedAddress.php diff --git a/ajax/getPipelineDetails.php b/legacy/ajax/getPipelineDetails.php similarity index 100% rename from ajax/getPipelineDetails.php rename to legacy/ajax/getPipelineDetails.php diff --git a/ajax/getPipelineJobOrder.php b/legacy/ajax/getPipelineJobOrder.php similarity index 100% rename from ajax/getPipelineJobOrder.php rename to legacy/ajax/getPipelineJobOrder.php diff --git a/ajax/getReportHTML.php b/legacy/ajax/getReportHTML.php similarity index 100% rename from ajax/getReportHTML.php rename to legacy/ajax/getReportHTML.php diff --git a/ajax/replaceTemplateTags.php b/legacy/ajax/replaceTemplateTags.php similarity index 100% rename from ajax/replaceTemplateTags.php rename to legacy/ajax/replaceTemplateTags.php diff --git a/ajax/setCandidateJobOrderRating.php b/legacy/ajax/setCandidateJobOrderRating.php similarity index 100% rename from ajax/setCandidateJobOrderRating.php rename to legacy/ajax/setCandidateJobOrderRating.php diff --git a/ajax/setColumnWidth.php b/legacy/ajax/setColumnWidth.php similarity index 100% rename from ajax/setColumnWidth.php rename to legacy/ajax/setColumnWidth.php diff --git a/ajax/showTemplate.php b/legacy/ajax/showTemplate.php similarity index 100% rename from ajax/showTemplate.php rename to legacy/ajax/showTemplate.php diff --git a/ajax/testEmailSettings.php b/legacy/ajax/testEmailSettings.php similarity index 100% rename from ajax/testEmailSettings.php rename to legacy/ajax/testEmailSettings.php diff --git a/ajax/zipLookup.php b/legacy/ajax/zipLookup.php similarity index 100% rename from ajax/zipLookup.php rename to legacy/ajax/zipLookup.php diff --git a/careers/.htaccess b/legacy/careers/.htaccess similarity index 100% rename from careers/.htaccess rename to legacy/careers/.htaccess diff --git a/careers/index.php b/legacy/careers/index.php similarity index 100% rename from careers/index.php rename to legacy/careers/index.php diff --git a/careersPage.css b/legacy/careersPage.css similarity index 100% rename from careersPage.css rename to legacy/careersPage.css diff --git a/config.php b/legacy/config.php similarity index 100% rename from config.php rename to legacy/config.php diff --git a/constants.php b/legacy/constants.php similarity index 100% rename from constants.php rename to legacy/constants.php diff --git a/db/cats_schema.sql b/legacy/db/cats_schema.sql similarity index 100% rename from db/cats_schema.sql rename to legacy/db/cats_schema.sql diff --git a/db/cats_testdata.bak b/legacy/db/cats_testdata.bak similarity index 100% rename from db/cats_testdata.bak rename to legacy/db/cats_testdata.bak diff --git a/db/upgrade-0.5.0-0.5.1.sql b/legacy/db/upgrade-0.5.0-0.5.1.sql similarity index 100% rename from db/upgrade-0.5.0-0.5.1.sql rename to legacy/db/upgrade-0.5.0-0.5.1.sql diff --git a/db/upgrade-0.5.1-0.5.2.sql b/legacy/db/upgrade-0.5.1-0.5.2.sql similarity index 100% rename from db/upgrade-0.5.1-0.5.2.sql rename to legacy/db/upgrade-0.5.1-0.5.2.sql diff --git a/db/upgrade-0.5.2-0.5.5.sql b/legacy/db/upgrade-0.5.2-0.5.5.sql similarity index 100% rename from db/upgrade-0.5.2-0.5.5.sql rename to legacy/db/upgrade-0.5.2-0.5.5.sql diff --git a/db/upgrade-0.5.5-0.6.x.sql b/legacy/db/upgrade-0.5.5-0.6.x.sql similarity index 100% rename from db/upgrade-0.5.5-0.6.x.sql rename to legacy/db/upgrade-0.5.5-0.6.x.sql diff --git a/db/upgrade-0.6.x-0.7.0.sql b/legacy/db/upgrade-0.6.x-0.7.0.sql similarity index 100% rename from db/upgrade-0.6.x-0.7.0.sql rename to legacy/db/upgrade-0.6.x-0.7.0.sql diff --git a/db/upgrade-0.9.4-0.9.5.sql b/legacy/db/upgrade-0.9.4-0.9.5.sql similarity index 100% rename from db/upgrade-0.9.4-0.9.5.sql rename to legacy/db/upgrade-0.9.4-0.9.5.sql diff --git a/db/upgrade-zipcodes.sql b/legacy/db/upgrade-zipcodes.sql similarity index 100% rename from db/upgrade-zipcodes.sql rename to legacy/db/upgrade-zipcodes.sql diff --git a/ie.css b/legacy/ie.css similarity index 100% rename from ie.css rename to legacy/ie.css diff --git a/images/CATS-powered.gif b/legacy/images/CATS-powered.gif similarity index 100% rename from images/CATS-powered.gif rename to legacy/images/CATS-powered.gif diff --git a/images/CATS-sig.gif b/legacy/images/CATS-sig.gif similarity index 100% rename from images/CATS-sig.gif rename to legacy/images/CATS-sig.gif diff --git a/images/actions/add.gif b/legacy/images/actions/add.gif similarity index 100% rename from images/actions/add.gif rename to legacy/images/actions/add.gif diff --git a/images/actions/add_contact.gif b/legacy/images/actions/add_contact.gif similarity index 100% rename from images/actions/add_contact.gif rename to legacy/images/actions/add_contact.gif diff --git a/images/actions/add_job_order.gif b/legacy/images/actions/add_job_order.gif similarity index 100% rename from images/actions/add_job_order.gif rename to legacy/images/actions/add_job_order.gif diff --git a/images/actions/add_small.gif b/legacy/images/actions/add_small.gif similarity index 100% rename from images/actions/add_small.gif rename to legacy/images/actions/add_small.gif diff --git a/images/actions/add_to_pipeline.gif b/legacy/images/actions/add_to_pipeline.gif similarity index 100% rename from images/actions/add_to_pipeline.gif rename to legacy/images/actions/add_to_pipeline.gif diff --git a/images/actions/blank.gif b/legacy/images/actions/blank.gif similarity index 100% rename from images/actions/blank.gif rename to legacy/images/actions/blank.gif diff --git a/images/actions/check_all.gif b/legacy/images/actions/check_all.gif similarity index 100% rename from images/actions/check_all.gif rename to legacy/images/actions/check_all.gif diff --git a/images/actions/delete.gif b/legacy/images/actions/delete.gif similarity index 100% rename from images/actions/delete.gif rename to legacy/images/actions/delete.gif diff --git a/images/actions/delete_small.gif b/legacy/images/actions/delete_small.gif similarity index 100% rename from images/actions/delete_small.gif rename to legacy/images/actions/delete_small.gif diff --git a/images/actions/duplicates.png b/legacy/images/actions/duplicates.png similarity index 100% rename from images/actions/duplicates.png rename to legacy/images/actions/duplicates.png diff --git a/images/actions/edit.gif b/legacy/images/actions/edit.gif similarity index 100% rename from images/actions/edit.gif rename to legacy/images/actions/edit.gif diff --git a/images/actions/email.gif b/legacy/images/actions/email.gif similarity index 100% rename from images/actions/email.gif rename to legacy/images/actions/email.gif diff --git a/images/actions/email_no.gif b/legacy/images/actions/email_no.gif similarity index 100% rename from images/actions/email_no.gif rename to legacy/images/actions/email_no.gif diff --git a/images/actions/info.gif b/legacy/images/actions/info.gif similarity index 100% rename from images/actions/info.gif rename to legacy/images/actions/info.gif diff --git a/images/actions/job_order.gif b/legacy/images/actions/job_order.gif similarity index 100% rename from images/actions/job_order.gif rename to legacy/images/actions/job_order.gif diff --git a/images/actions/print.gif b/legacy/images/actions/print.gif similarity index 100% rename from images/actions/print.gif rename to legacy/images/actions/print.gif diff --git a/images/actions/screen.gif b/legacy/images/actions/screen.gif similarity index 100% rename from images/actions/screen.gif rename to legacy/images/actions/screen.gif diff --git a/images/actions/screen_grey.gif b/legacy/images/actions/screen_grey.gif similarity index 100% rename from images/actions/screen_grey.gif rename to legacy/images/actions/screen_grey.gif diff --git a/images/actions/uncheck_all.gif b/legacy/images/actions/uncheck_all.gif similarity index 100% rename from images/actions/uncheck_all.gif rename to legacy/images/actions/uncheck_all.gif diff --git a/images/actions/view.gif b/legacy/images/actions/view.gif similarity index 100% rename from images/actions/view.gif rename to legacy/images/actions/view.gif diff --git a/images/active_tab_gradient.gif b/legacy/images/active_tab_gradient.gif similarity index 100% rename from images/active_tab_gradient.gif rename to legacy/images/active_tab_gradient.gif diff --git a/images/activities.gif b/legacy/images/activities.gif similarity index 100% rename from images/activities.gif rename to legacy/images/activities.gif diff --git a/images/applicationLogo.jpg b/legacy/images/applicationLogo.jpg similarity index 100% rename from images/applicationLogo.jpg rename to legacy/images/applicationLogo.jpg diff --git a/images/arrow_down.gif b/legacy/images/arrow_down.gif similarity index 100% rename from images/arrow_down.gif rename to legacy/images/arrow_down.gif diff --git a/images/arrow_down.png b/legacy/images/arrow_down.png similarity index 100% rename from images/arrow_down.png rename to legacy/images/arrow_down.png diff --git a/images/arrow_left_24.gif b/legacy/images/arrow_left_24.gif similarity index 100% rename from images/arrow_left_24.gif rename to legacy/images/arrow_left_24.gif diff --git a/images/arrow_next.gif b/legacy/images/arrow_next.gif similarity index 100% rename from images/arrow_next.gif rename to legacy/images/arrow_next.gif diff --git a/images/arrow_next.png b/legacy/images/arrow_next.png similarity index 100% rename from images/arrow_next.png rename to legacy/images/arrow_next.png diff --git a/images/arrow_right_24.gif b/legacy/images/arrow_right_24.gif similarity index 100% rename from images/arrow_right_24.gif rename to legacy/images/arrow_right_24.gif diff --git a/images/attachment.gif b/legacy/images/attachment.gif similarity index 100% rename from images/attachment.gif rename to legacy/images/attachment.gif diff --git a/images/bell.gif b/legacy/images/bell.gif similarity index 100% rename from images/bell.gif rename to legacy/images/bell.gif diff --git a/images/bgBlue.gif b/legacy/images/bgBlue.gif similarity index 100% rename from images/bgBlue.gif rename to legacy/images/bgBlue.gif diff --git a/images/bgGrayForm.gif b/legacy/images/bgGrayForm.gif similarity index 100% rename from images/bgGrayForm.gif rename to legacy/images/bgGrayForm.gif diff --git a/images/blue_check.gif b/legacy/images/blue_check.gif similarity index 100% rename from images/blue_check.gif rename to legacy/images/blue_check.gif diff --git a/images/blue_gradient.jpg b/legacy/images/blue_gradient.jpg similarity index 100% rename from images/blue_gradient.jpg rename to legacy/images/blue_gradient.jpg diff --git a/images/bullet_black.gif b/legacy/images/bullet_black.gif similarity index 100% rename from images/bullet_black.gif rename to legacy/images/bullet_black.gif diff --git a/images/button_bg.gif b/legacy/images/button_bg.gif similarity index 100% rename from images/button_bg.gif rename to legacy/images/button_bg.gif diff --git a/images/button_bg_down.gif b/legacy/images/button_bg_down.gif similarity index 100% rename from images/button_bg_down.gif rename to legacy/images/button_bg_down.gif diff --git a/images/calendar.gif b/legacy/images/calendar.gif similarity index 100% rename from images/calendar.gif rename to legacy/images/calendar.gif diff --git a/images/calendar1_bg.gif b/legacy/images/calendar1_bg.gif similarity index 100% rename from images/calendar1_bg.gif rename to legacy/images/calendar1_bg.gif diff --git a/images/calendar_add.gif b/legacy/images/calendar_add.gif similarity index 100% rename from images/calendar_add.gif rename to legacy/images/calendar_add.gif diff --git a/images/candidate.gif b/legacy/images/candidate.gif similarity index 100% rename from images/candidate.gif rename to legacy/images/candidate.gif diff --git a/images/candidate_inline.gif b/legacy/images/candidate_inline.gif similarity index 100% rename from images/candidate_inline.gif rename to legacy/images/candidate_inline.gif diff --git a/images/candidate_small.gif b/legacy/images/candidate_small.gif similarity index 100% rename from images/candidate_small.gif rename to legacy/images/candidate_small.gif diff --git a/images/candidate_tiny.gif b/legacy/images/candidate_tiny.gif similarity index 100% rename from images/candidate_tiny.gif rename to legacy/images/candidate_tiny.gif diff --git a/images/careers_apply-o.gif b/legacy/images/careers_apply-o.gif similarity index 100% rename from images/careers_apply-o.gif rename to legacy/images/careers_apply-o.gif diff --git a/images/careers_apply.gif b/legacy/images/careers_apply.gif similarity index 100% rename from images/careers_apply.gif rename to legacy/images/careers_apply.gif diff --git a/images/careers_arrow.gif b/legacy/images/careers_arrow.gif similarity index 100% rename from images/careers_arrow.gif rename to legacy/images/careers_arrow.gif diff --git a/images/careers_cats.gif b/legacy/images/careers_cats.gif similarity index 100% rename from images/careers_cats.gif rename to legacy/images/careers_cats.gif diff --git a/images/careers_populate.gif b/legacy/images/careers_populate.gif similarity index 100% rename from images/careers_populate.gif rename to legacy/images/careers_populate.gif diff --git a/images/careers_powered.gif b/legacy/images/careers_powered.gif similarity index 100% rename from images/careers_powered.gif rename to legacy/images/careers_powered.gif diff --git a/images/careers_return-o.gif b/legacy/images/careers_return-o.gif similarity index 100% rename from images/careers_return-o.gif rename to legacy/images/careers_return-o.gif diff --git a/images/careers_return.gif b/legacy/images/careers_return.gif similarity index 100% rename from images/careers_return.gif rename to legacy/images/careers_return.gif diff --git a/images/careers_rss-o.gif b/legacy/images/careers_rss-o.gif similarity index 100% rename from images/careers_rss-o.gif rename to legacy/images/careers_rss-o.gif diff --git a/images/careers_rss.gif b/legacy/images/careers_rss.gif similarity index 100% rename from images/careers_rss.gif rename to legacy/images/careers_rss.gif diff --git a/images/careers_search-o.gif b/legacy/images/careers_search-o.gif similarity index 100% rename from images/careers_search-o.gif rename to legacy/images/careers_search-o.gif diff --git a/images/careers_search.gif b/legacy/images/careers_search.gif similarity index 100% rename from images/careers_search.gif rename to legacy/images/careers_search.gif diff --git a/images/careers_share-o.gif b/legacy/images/careers_share-o.gif similarity index 100% rename from images/careers_share-o.gif rename to legacy/images/careers_share-o.gif diff --git a/images/careers_share.gif b/legacy/images/careers_share.gif similarity index 100% rename from images/careers_share.gif rename to legacy/images/careers_share.gif diff --git a/images/careers_show-o.gif b/legacy/images/careers_show-o.gif similarity index 100% rename from images/careers_show-o.gif rename to legacy/images/careers_show-o.gif diff --git a/images/careers_show.gif b/legacy/images/careers_show.gif similarity index 100% rename from images/careers_show.gif rename to legacy/images/careers_show.gif diff --git a/images/careers_submit-o.gif b/legacy/images/careers_submit-o.gif similarity index 100% rename from images/careers_submit-o.gif rename to legacy/images/careers_submit-o.gif diff --git a/images/careers_submit.gif b/legacy/images/careers_submit.gif similarity index 100% rename from images/careers_submit.gif rename to legacy/images/careers_submit.gif diff --git a/images/cats_icon.gif b/legacy/images/cats_icon.gif similarity index 100% rename from images/cats_icon.gif rename to legacy/images/cats_icon.gif diff --git a/images/cats_logo.jpg b/legacy/images/cats_logo.jpg similarity index 100% rename from images/cats_logo.jpg rename to legacy/images/cats_logo.jpg diff --git a/images/cats_small_ad.jpg b/legacy/images/cats_small_ad.jpg similarity index 100% rename from images/cats_small_ad.jpg rename to legacy/images/cats_small_ad.jpg diff --git a/images/checkbox.gif b/legacy/images/checkbox.gif similarity index 100% rename from images/checkbox.gif rename to legacy/images/checkbox.gif diff --git a/images/checkbox_blank.gif b/legacy/images/checkbox_blank.gif similarity index 100% rename from images/checkbox_blank.gif rename to legacy/images/checkbox_blank.gif diff --git a/images/cognizo-logo.jpg b/legacy/images/cognizo-logo.jpg similarity index 100% rename from images/cognizo-logo.jpg rename to legacy/images/cognizo-logo.jpg diff --git a/images/companies.gif b/legacy/images/companies.gif similarity index 100% rename from images/companies.gif rename to legacy/images/companies.gif diff --git a/images/consider.gif b/legacy/images/consider.gif similarity index 100% rename from images/consider.gif rename to legacy/images/consider.gif diff --git a/images/contact.gif b/legacy/images/contact.gif similarity index 100% rename from images/contact.gif rename to legacy/images/contact.gif diff --git a/images/contact_small.gif b/legacy/images/contact_small.gif similarity index 100% rename from images/contact_small.gif rename to legacy/images/contact_small.gif diff --git a/images/copyArrow-d.jpg b/legacy/images/copyArrow-d.jpg similarity index 100% rename from images/copyArrow-d.jpg rename to legacy/images/copyArrow-d.jpg diff --git a/images/copyArrow.jpg b/legacy/images/copyArrow.jpg similarity index 100% rename from images/copyArrow.jpg rename to legacy/images/copyArrow.jpg diff --git a/images/copyBg-d.jpg b/legacy/images/copyBg-d.jpg similarity index 100% rename from images/copyBg-d.jpg rename to legacy/images/copyBg-d.jpg diff --git a/images/copyBg.jpg b/legacy/images/copyBg.jpg similarity index 100% rename from images/copyBg.jpg rename to legacy/images/copyBg.jpg diff --git a/images/copyBottom-d.jpg b/legacy/images/copyBottom-d.jpg similarity index 100% rename from images/copyBottom-d.jpg rename to legacy/images/copyBottom-d.jpg diff --git a/images/copyBottom.jpg b/legacy/images/copyBottom.jpg similarity index 100% rename from images/copyBottom.jpg rename to legacy/images/copyBottom.jpg diff --git a/images/copyTemplate.psd b/legacy/images/copyTemplate.psd similarity index 100% rename from images/copyTemplate.psd rename to legacy/images/copyTemplate.psd diff --git a/images/copyTop-d.jpg b/legacy/images/copyTop-d.jpg similarity index 100% rename from images/copyTop-d.jpg rename to legacy/images/copyTop-d.jpg diff --git a/images/copyTop.jpg b/legacy/images/copyTop.jpg similarity index 100% rename from images/copyTop.jpg rename to legacy/images/copyTop.jpg diff --git a/images/cp_add.gif b/legacy/images/cp_add.gif similarity index 100% rename from images/cp_add.gif rename to legacy/images/cp_add.gif diff --git a/images/cp_back.gif b/legacy/images/cp_back.gif similarity index 100% rename from images/cp_back.gif rename to legacy/images/cp_back.gif diff --git a/images/cp_delete.gif b/legacy/images/cp_delete.gif similarity index 100% rename from images/cp_delete.gif rename to legacy/images/cp_delete.gif diff --git a/images/cp_edit.gif b/legacy/images/cp_edit.gif similarity index 100% rename from images/cp_edit.gif rename to legacy/images/cp_edit.gif diff --git a/images/cp_info.jpg b/legacy/images/cp_info.jpg similarity index 100% rename from images/cp_info.jpg rename to legacy/images/cp_info.jpg diff --git a/images/cp_listing.jpg b/legacy/images/cp_listing.jpg similarity index 100% rename from images/cp_listing.jpg rename to legacy/images/cp_listing.jpg diff --git a/images/cp_questionnaire.jpg b/legacy/images/cp_questionnaire.jpg similarity index 100% rename from images/cp_questionnaire.jpg rename to legacy/images/cp_questionnaire.jpg diff --git a/images/cp_resume.jpg b/legacy/images/cp_resume.jpg similarity index 100% rename from images/cp_resume.jpg rename to legacy/images/cp_resume.jpg diff --git a/images/cp_save.gif b/legacy/images/cp_save.gif similarity index 100% rename from images/cp_save.gif rename to legacy/images/cp_save.gif diff --git a/images/cross.gif b/legacy/images/cross.gif similarity index 100% rename from images/cross.gif rename to legacy/images/cross.gif diff --git a/images/customsearch.jpg b/legacy/images/customsearch.jpg similarity index 100% rename from images/customsearch.jpg rename to legacy/images/customsearch.jpg diff --git a/images/customsearch2.jpg b/legacy/images/customsearch2.jpg similarity index 100% rename from images/customsearch2.jpg rename to legacy/images/customsearch2.jpg diff --git a/images/dashboard_preview/activity.png b/legacy/images/dashboard_preview/activity.png similarity index 100% rename from images/dashboard_preview/activity.png rename to legacy/images/dashboard_preview/activity.png diff --git a/images/dashboard_preview/candidates.png b/legacy/images/dashboard_preview/candidates.png similarity index 100% rename from images/dashboard_preview/candidates.png rename to legacy/images/dashboard_preview/candidates.png diff --git a/images/dashboard_preview/image.png b/legacy/images/dashboard_preview/image.png similarity index 100% rename from images/dashboard_preview/image.png rename to legacy/images/dashboard_preview/image.png diff --git a/images/dashboard_preview/joborders.png b/legacy/images/dashboard_preview/joborders.png similarity index 100% rename from images/dashboard_preview/joborders.png rename to legacy/images/dashboard_preview/joborders.png diff --git a/images/dashboard_preview/pipeline.png b/legacy/images/dashboard_preview/pipeline.png similarity index 100% rename from images/dashboard_preview/pipeline.png rename to legacy/images/dashboard_preview/pipeline.png diff --git a/images/dashboard_preview/recent_job_orders.png b/legacy/images/dashboard_preview/recent_job_orders.png similarity index 100% rename from images/dashboard_preview/recent_job_orders.png rename to legacy/images/dashboard_preview/recent_job_orders.png diff --git a/images/dashboard_preview/submissions.png b/legacy/images/dashboard_preview/submissions.png similarity index 100% rename from images/dashboard_preview/submissions.png rename to legacy/images/dashboard_preview/submissions.png diff --git a/images/dashboard_preview/text.png b/legacy/images/dashboard_preview/text.png similarity index 100% rename from images/dashboard_preview/text.png rename to legacy/images/dashboard_preview/text.png diff --git a/images/dashboard_preview/title_bar.png b/legacy/images/dashboard_preview/title_bar.png similarity index 100% rename from images/dashboard_preview/title_bar.png rename to legacy/images/dashboard_preview/title_bar.png diff --git a/images/dashboard_preview/upcoming_events.png b/legacy/images/dashboard_preview/upcoming_events.png similarity index 100% rename from images/dashboard_preview/upcoming_events.png rename to legacy/images/dashboard_preview/upcoming_events.png diff --git a/images/downward.gif b/legacy/images/downward.gif similarity index 100% rename from images/downward.gif rename to legacy/images/downward.gif diff --git a/images/edit.gif b/legacy/images/edit.gif similarity index 100% rename from images/edit.gif rename to legacy/images/edit.gif diff --git a/images/email.gif b/legacy/images/email.gif similarity index 100% rename from images/email.gif rename to legacy/images/email.gif diff --git a/images/email_logo.jpg b/legacy/images/email_logo.jpg similarity index 100% rename from images/email_logo.jpg rename to legacy/images/email_logo.jpg diff --git a/images/file/avi.gif b/legacy/images/file/avi.gif similarity index 100% rename from images/file/avi.gif rename to legacy/images/file/avi.gif diff --git a/images/file/bmp.gif b/legacy/images/file/bmp.gif similarity index 100% rename from images/file/bmp.gif rename to legacy/images/file/bmp.gif diff --git a/images/file/doc.gif b/legacy/images/file/doc.gif similarity index 100% rename from images/file/doc.gif rename to legacy/images/file/doc.gif diff --git a/images/file/eps.gif b/legacy/images/file/eps.gif similarity index 100% rename from images/file/eps.gif rename to legacy/images/file/eps.gif diff --git a/images/file/gif.gif b/legacy/images/file/gif.gif similarity index 100% rename from images/file/gif.gif rename to legacy/images/file/gif.gif diff --git a/images/file/jpeg.gif b/legacy/images/file/jpeg.gif similarity index 100% rename from images/file/jpeg.gif rename to legacy/images/file/jpeg.gif diff --git a/images/file/jpg.gif b/legacy/images/file/jpg.gif similarity index 100% rename from images/file/jpg.gif rename to legacy/images/file/jpg.gif diff --git a/images/file/pdf.gif b/legacy/images/file/pdf.gif similarity index 100% rename from images/file/pdf.gif rename to legacy/images/file/pdf.gif diff --git a/images/file/png.gif b/legacy/images/file/png.gif similarity index 100% rename from images/file/png.gif rename to legacy/images/file/png.gif diff --git a/images/file/ppt.gif b/legacy/images/file/ppt.gif similarity index 100% rename from images/file/ppt.gif rename to legacy/images/file/ppt.gif diff --git a/images/file/rtf.gif b/legacy/images/file/rtf.gif similarity index 100% rename from images/file/rtf.gif rename to legacy/images/file/rtf.gif diff --git a/images/file/txt.gif b/legacy/images/file/txt.gif similarity index 100% rename from images/file/txt.gif rename to legacy/images/file/txt.gif diff --git a/images/file/wmv.gif b/legacy/images/file/wmv.gif similarity index 100% rename from images/file/wmv.gif rename to legacy/images/file/wmv.gif diff --git a/images/file/xls.gif b/legacy/images/file/xls.gif similarity index 100% rename from images/file/xls.gif rename to legacy/images/file/xls.gif diff --git a/images/file/zip.gif b/legacy/images/file/zip.gif similarity index 100% rename from images/file/zip.gif rename to legacy/images/file/zip.gif diff --git a/images/fileTypeBz2.jpg b/legacy/images/fileTypeBz2.jpg similarity index 100% rename from images/fileTypeBz2.jpg rename to legacy/images/fileTypeBz2.jpg diff --git a/images/fileTypeDoc.jpg b/legacy/images/fileTypeDoc.jpg similarity index 100% rename from images/fileTypeDoc.jpg rename to legacy/images/fileTypeDoc.jpg diff --git a/images/fileTypeGz.jpg b/legacy/images/fileTypeGz.jpg similarity index 100% rename from images/fileTypeGz.jpg rename to legacy/images/fileTypeGz.jpg diff --git a/images/fileTypeHtml.jpg b/legacy/images/fileTypeHtml.jpg similarity index 100% rename from images/fileTypeHtml.jpg rename to legacy/images/fileTypeHtml.jpg diff --git a/images/fileTypePdf.jpg b/legacy/images/fileTypePdf.jpg similarity index 100% rename from images/fileTypePdf.jpg rename to legacy/images/fileTypePdf.jpg diff --git a/images/fileTypeRtf.jpg b/legacy/images/fileTypeRtf.jpg similarity index 100% rename from images/fileTypeRtf.jpg rename to legacy/images/fileTypeRtf.jpg diff --git a/images/fileTypeTar.jpg b/legacy/images/fileTypeTar.jpg similarity index 100% rename from images/fileTypeTar.jpg rename to legacy/images/fileTypeTar.jpg diff --git a/images/fileTypeTxt.jpg b/legacy/images/fileTypeTxt.jpg similarity index 100% rename from images/fileTypeTxt.jpg rename to legacy/images/fileTypeTxt.jpg diff --git a/images/fileTypeZip.jpg b/legacy/images/fileTypeZip.jpg similarity index 100% rename from images/fileTypeZip.jpg rename to legacy/images/fileTypeZip.jpg diff --git a/images/firefox-spread-btn-2.png b/legacy/images/firefox-spread-btn-2.png similarity index 100% rename from images/firefox-spread-btn-2.png rename to legacy/images/firefox-spread-btn-2.png diff --git a/images/folder1_locked.jpg b/legacy/images/folder1_locked.jpg similarity index 100% rename from images/folder1_locked.jpg rename to legacy/images/folder1_locked.jpg diff --git a/images/friendly_error.jpg b/legacy/images/friendly_error.jpg similarity index 100% rename from images/friendly_error.jpg rename to legacy/images/friendly_error.jpg diff --git a/images/google_maps.gif b/legacy/images/google_maps.gif similarity index 100% rename from images/google_maps.gif rename to legacy/images/google_maps.gif diff --git a/images/gradient.gif b/legacy/images/gradient.gif similarity index 100% rename from images/gradient.gif rename to legacy/images/gradient.gif diff --git a/images/graphNoData.jpg b/legacy/images/graphNoData.jpg similarity index 100% rename from images/graphNoData.jpg rename to legacy/images/graphNoData.jpg diff --git a/images/gray_gradient.gif b/legacy/images/gray_gradient.gif similarity index 100% rename from images/gray_gradient.gif rename to legacy/images/gray_gradient.gif diff --git a/images/gray_x.gif b/legacy/images/gray_x.gif similarity index 100% rename from images/gray_x.gif rename to legacy/images/gray_x.gif diff --git a/images/home.gif b/legacy/images/home.gif similarity index 100% rename from images/home.gif rename to legacy/images/home.gif diff --git a/images/i-firefox-small.gif b/legacy/images/i-firefox-small.gif similarity index 100% rename from images/i-firefox-small.gif rename to legacy/images/i-firefox-small.gif diff --git a/images/i-firefox.gif b/legacy/images/i-firefox.gif similarity index 100% rename from images/i-firefox.gif rename to legacy/images/i-firefox.gif diff --git a/images/i-ie.gif b/legacy/images/i-ie.gif similarity index 100% rename from images/i-ie.gif rename to legacy/images/i-ie.gif diff --git a/images/i-opera-grayed.gif b/legacy/images/i-opera-grayed.gif similarity index 100% rename from images/i-opera-grayed.gif rename to legacy/images/i-opera-grayed.gif diff --git a/images/i-outlook.gif b/legacy/images/i-outlook.gif similarity index 100% rename from images/i-outlook.gif rename to legacy/images/i-outlook.gif diff --git a/images/i-safari-grayed.gif b/legacy/images/i-safari-grayed.gif similarity index 100% rename from images/i-safari-grayed.gif rename to legacy/images/i-safari-grayed.gif diff --git a/images/i-thunderbird.gif b/legacy/images/i-thunderbird.gif similarity index 100% rename from images/i-thunderbird.gif rename to legacy/images/i-thunderbird.gif diff --git a/images/icon_clock.gif b/legacy/images/icon_clock.gif similarity index 100% rename from images/icon_clock.gif rename to legacy/images/icon_clock.gif diff --git a/images/indicator.gif b/legacy/images/indicator.gif similarity index 100% rename from images/indicator.gif rename to legacy/images/indicator.gif diff --git a/images/indicator2.gif b/legacy/images/indicator2.gif similarity index 100% rename from images/indicator2.gif rename to legacy/images/indicator2.gif diff --git a/images/indicator_small.gif b/legacy/images/indicator_small.gif similarity index 100% rename from images/indicator_small.gif rename to legacy/images/indicator_small.gif diff --git a/images/information.gif b/legacy/images/information.gif similarity index 100% rename from images/information.gif rename to legacy/images/information.gif diff --git a/images/install_logo.gif b/legacy/images/install_logo.gif similarity index 100% rename from images/install_logo.gif rename to legacy/images/install_logo.gif diff --git a/images/interview.gif b/legacy/images/interview.gif similarity index 100% rename from images/interview.gif rename to legacy/images/interview.gif diff --git a/images/job_orders.gif b/legacy/images/job_orders.gif similarity index 100% rename from images/job_orders.gif rename to legacy/images/job_orders.gif diff --git a/images/joborder.gif b/legacy/images/joborder.gif similarity index 100% rename from images/joborder.gif rename to legacy/images/joborder.gif diff --git a/images/key.png b/legacy/images/key.png similarity index 100% rename from images/key.png rename to legacy/images/key.png diff --git a/images/large_error.gif b/legacy/images/large_error.gif similarity index 100% rename from images/large_error.gif rename to legacy/images/large_error.gif diff --git a/images/lightblue_gradient.jpg b/legacy/images/lightblue_gradient.jpg similarity index 100% rename from images/lightblue_gradient.jpg rename to legacy/images/lightblue_gradient.jpg diff --git a/images/lightblue_gradient_15.jpg b/legacy/images/lightblue_gradient_15.jpg similarity index 100% rename from images/lightblue_gradient_15.jpg rename to legacy/images/lightblue_gradient_15.jpg diff --git a/images/loading.gif b/legacy/images/loading.gif similarity index 100% rename from images/loading.gif rename to legacy/images/loading.gif diff --git a/images/login2.jpg b/legacy/images/login2.jpg similarity index 100% rename from images/login2.jpg rename to legacy/images/login2.jpg diff --git a/images/maskBG.gif b/legacy/images/maskBG.gif similarity index 100% rename from images/maskBG.gif rename to legacy/images/maskBG.gif diff --git a/images/massImport.jpg b/legacy/images/massImport.jpg similarity index 100% rename from images/massImport.jpg rename to legacy/images/massImport.jpg diff --git a/images/massResumeImport.jpg b/legacy/images/massResumeImport.jpg similarity index 100% rename from images/massResumeImport.jpg rename to legacy/images/massResumeImport.jpg diff --git a/images/meeting.gif b/legacy/images/meeting.gif similarity index 100% rename from images/meeting.gif rename to legacy/images/meeting.gif diff --git a/images/moveUp-o.gif b/legacy/images/moveUp-o.gif similarity index 100% rename from images/moveUp-o.gif rename to legacy/images/moveUp-o.gif diff --git a/images/moveUp.gif b/legacy/images/moveUp.gif similarity index 100% rename from images/moveUp.gif rename to legacy/images/moveUp.gif diff --git a/images/mru/blank.gif b/legacy/images/mru/blank.gif similarity index 100% rename from images/mru/blank.gif rename to legacy/images/mru/blank.gif diff --git a/images/mru/candidate.gif b/legacy/images/mru/candidate.gif similarity index 100% rename from images/mru/candidate.gif rename to legacy/images/mru/candidate.gif diff --git a/images/mru/company.gif b/legacy/images/mru/company.gif similarity index 100% rename from images/mru/company.gif rename to legacy/images/mru/company.gif diff --git a/images/mru/contact.gif b/legacy/images/mru/contact.gif similarity index 100% rename from images/mru/contact.gif rename to legacy/images/mru/contact.gif diff --git a/images/mru/job_order.gif b/legacy/images/mru/job_order.gif similarity index 100% rename from images/mru/job_order.gif rename to legacy/images/mru/job_order.gif diff --git a/images/mru_background.gif b/legacy/images/mru_background.gif similarity index 100% rename from images/mru_background.gif rename to legacy/images/mru_background.gif diff --git a/images/mycompany.gif b/legacy/images/mycompany.gif similarity index 100% rename from images/mycompany.gif rename to legacy/images/mycompany.gif diff --git a/images/mycompany_small.gif b/legacy/images/mycompany_small.gif similarity index 100% rename from images/mycompany_small.gif rename to legacy/images/mycompany_small.gif diff --git a/images/new_activity_inline.gif b/legacy/images/new_activity_inline.gif similarity index 100% rename from images/new_activity_inline.gif rename to legacy/images/new_activity_inline.gif diff --git a/images/new_browser_inline.gif b/legacy/images/new_browser_inline.gif similarity index 100% rename from images/new_browser_inline.gif rename to legacy/images/new_browser_inline.gif diff --git a/images/new_window.gif b/legacy/images/new_window.gif similarity index 100% rename from images/new_window.gif rename to legacy/images/new_window.gif diff --git a/images/next.gif b/legacy/images/next.gif similarity index 100% rename from images/next.gif rename to legacy/images/next.gif diff --git a/images/noDataByDisability.png b/legacy/images/noDataByDisability.png similarity index 100% rename from images/noDataByDisability.png rename to legacy/images/noDataByDisability.png diff --git a/images/noDataByGender.png b/legacy/images/noDataByGender.png similarity index 100% rename from images/noDataByGender.png rename to legacy/images/noDataByGender.png diff --git a/images/nodata/activitiesTop.jpg b/legacy/images/nodata/activitiesTop.jpg similarity index 100% rename from images/nodata/activitiesTop.jpg rename to legacy/images/nodata/activitiesTop.jpg diff --git a/images/nodata/addMassImport-o.jpg b/legacy/images/nodata/addMassImport-o.jpg similarity index 100% rename from images/nodata/addMassImport-o.jpg rename to legacy/images/nodata/addMassImport-o.jpg diff --git a/images/nodata/addMassImport.jpg b/legacy/images/nodata/addMassImport.jpg similarity index 100% rename from images/nodata/addMassImport.jpg rename to legacy/images/nodata/addMassImport.jpg diff --git a/images/nodata/candidateButton-o.jpg b/legacy/images/nodata/candidateButton-o.jpg similarity index 100% rename from images/nodata/candidateButton-o.jpg rename to legacy/images/nodata/candidateButton-o.jpg diff --git a/images/nodata/candidatesButton.jpg b/legacy/images/nodata/candidatesButton.jpg similarity index 100% rename from images/nodata/candidatesButton.jpg rename to legacy/images/nodata/candidatesButton.jpg diff --git a/images/nodata/candidatesTop.jpg b/legacy/images/nodata/candidatesTop.jpg similarity index 100% rename from images/nodata/candidatesTop.jpg rename to legacy/images/nodata/candidatesTop.jpg diff --git a/images/nodata/companiesTop.jpg b/legacy/images/nodata/companiesTop.jpg similarity index 100% rename from images/nodata/companiesTop.jpg rename to legacy/images/nodata/companiesTop.jpg diff --git a/images/nodata/contactsButton-o.jpg b/legacy/images/nodata/contactsButton-o.jpg similarity index 100% rename from images/nodata/contactsButton-o.jpg rename to legacy/images/nodata/contactsButton-o.jpg diff --git a/images/nodata/contactsButton.jpg b/legacy/images/nodata/contactsButton.jpg similarity index 100% rename from images/nodata/contactsButton.jpg rename to legacy/images/nodata/contactsButton.jpg diff --git a/images/nodata/contactsTop.jpg b/legacy/images/nodata/contactsTop.jpg similarity index 100% rename from images/nodata/contactsTop.jpg rename to legacy/images/nodata/contactsTop.jpg diff --git a/images/nodata/dashboardNoCandidates.jpg b/legacy/images/nodata/dashboardNoCandidates.jpg similarity index 100% rename from images/nodata/dashboardNoCandidates.jpg rename to legacy/images/nodata/dashboardNoCandidates.jpg diff --git a/images/nodata/dashboardNoCandidatesWhite.jpg b/legacy/images/nodata/dashboardNoCandidatesWhite.jpg similarity index 100% rename from images/nodata/dashboardNoCandidatesWhite.jpg rename to legacy/images/nodata/dashboardNoCandidatesWhite.jpg diff --git a/images/nodata/dashboardNoHires.jpg b/legacy/images/nodata/dashboardNoHires.jpg similarity index 100% rename from images/nodata/dashboardNoHires.jpg rename to legacy/images/nodata/dashboardNoHires.jpg diff --git a/images/nodata/dashboardNoHiresWhite.jpg b/legacy/images/nodata/dashboardNoHiresWhite.jpg similarity index 100% rename from images/nodata/dashboardNoHiresWhite.jpg rename to legacy/images/nodata/dashboardNoHiresWhite.jpg diff --git a/images/nodata/jobOrdersButton-o.jpg b/legacy/images/nodata/jobOrdersButton-o.jpg similarity index 100% rename from images/nodata/jobOrdersButton-o.jpg rename to legacy/images/nodata/jobOrdersButton-o.jpg diff --git a/images/nodata/jobOrdersButton.jpg b/legacy/images/nodata/jobOrdersButton.jpg similarity index 100% rename from images/nodata/jobOrdersButton.jpg rename to legacy/images/nodata/jobOrdersButton.jpg diff --git a/images/nodata/jobOrdersTop.jpg b/legacy/images/nodata/jobOrdersTop.jpg similarity index 100% rename from images/nodata/jobOrdersTop.jpg rename to legacy/images/nodata/jobOrdersTop.jpg diff --git a/images/nodata/joborders.jpg b/legacy/images/nodata/joborders.jpg similarity index 100% rename from images/nodata/joborders.jpg rename to legacy/images/nodata/joborders.jpg diff --git a/images/nodata/listsTop.jpg b/legacy/images/nodata/listsTop.jpg similarity index 100% rename from images/nodata/listsTop.jpg rename to legacy/images/nodata/listsTop.jpg diff --git a/images/nodata/noDataTable.jpg b/legacy/images/nodata/noDataTable.jpg similarity index 100% rename from images/nodata/noDataTable.jpg rename to legacy/images/nodata/noDataTable.jpg diff --git a/images/nosort.gif b/legacy/images/nosort.gif similarity index 100% rename from images/nosort.gif rename to legacy/images/nosort.gif diff --git a/images/orange_gradient.jpg b/legacy/images/orange_gradient.jpg similarity index 100% rename from images/orange_gradient.jpg rename to legacy/images/orange_gradient.jpg diff --git a/images/other.gif b/legacy/images/other.gif similarity index 100% rename from images/other.gif rename to legacy/images/other.gif diff --git a/images/package_editors.gif b/legacy/images/package_editors.gif similarity index 100% rename from images/package_editors.gif rename to legacy/images/package_editors.gif diff --git a/images/paperclip.gif b/legacy/images/paperclip.gif similarity index 100% rename from images/paperclip.gif rename to legacy/images/paperclip.gif diff --git a/images/paperclip_add.gif b/legacy/images/paperclip_add.gif similarity index 100% rename from images/paperclip_add.gif rename to legacy/images/paperclip_add.gif diff --git a/images/parser/ad.gif b/legacy/images/parser/ad.gif similarity index 100% rename from images/parser/ad.gif rename to legacy/images/parser/ad.gif diff --git a/images/parser/arrow.gif b/legacy/images/parser/arrow.gif similarity index 100% rename from images/parser/arrow.gif rename to legacy/images/parser/arrow.gif diff --git a/images/parser/attachment.gif b/legacy/images/parser/attachment.gif similarity index 100% rename from images/parser/attachment.gif rename to legacy/images/parser/attachment.gif diff --git a/images/parser/document.gif b/legacy/images/parser/document.gif similarity index 100% rename from images/parser/document.gif rename to legacy/images/parser/document.gif diff --git a/images/parser/import.gif b/legacy/images/parser/import.gif similarity index 100% rename from images/parser/import.gif rename to legacy/images/parser/import.gif diff --git a/images/parser/manual.gif b/legacy/images/parser/manual.gif similarity index 100% rename from images/parser/manual.gif rename to legacy/images/parser/manual.gif diff --git a/images/parser/new.gif b/legacy/images/parser/new.gif similarity index 100% rename from images/parser/new.gif rename to legacy/images/parser/new.gif diff --git a/images/parser/or.gif b/legacy/images/parser/or.gif similarity index 100% rename from images/parser/or.gif rename to legacy/images/parser/or.gif diff --git a/images/parser/paste.gif b/legacy/images/parser/paste.gif similarity index 100% rename from images/parser/paste.gif rename to legacy/images/parser/paste.gif diff --git a/images/parser/statusBar.jpg b/legacy/images/parser/statusBar.jpg similarity index 100% rename from images/parser/statusBar.jpg rename to legacy/images/parser/statusBar.jpg diff --git a/images/parser/statusBottomLeft.jpg b/legacy/images/parser/statusBottomLeft.jpg similarity index 100% rename from images/parser/statusBottomLeft.jpg rename to legacy/images/parser/statusBottomLeft.jpg diff --git a/images/parser/statusBottomRight.jpg b/legacy/images/parser/statusBottomRight.jpg similarity index 100% rename from images/parser/statusBottomRight.jpg rename to legacy/images/parser/statusBottomRight.jpg diff --git a/images/parser/title.gif b/legacy/images/parser/title.gif similarity index 100% rename from images/parser/title.gif rename to legacy/images/parser/title.gif diff --git a/images/parser/transfer.gif b/legacy/images/parser/transfer.gif similarity index 100% rename from images/parser/transfer.gif rename to legacy/images/parser/transfer.gif diff --git a/images/parser/transfer_grey.gif b/legacy/images/parser/transfer_grey.gif similarity index 100% rename from images/parser/transfer_grey.gif rename to legacy/images/parser/transfer_grey.gif diff --git a/images/personal.gif b/legacy/images/personal.gif similarity index 100% rename from images/personal.gif rename to legacy/images/personal.gif diff --git a/images/phone.gif b/legacy/images/phone.gif similarity index 100% rename from images/phone.gif rename to legacy/images/phone.gif diff --git a/images/popup.gif b/legacy/images/popup.gif similarity index 100% rename from images/popup.gif rename to legacy/images/popup.gif diff --git a/images/poweredByResfly.jpg b/legacy/images/poweredByResfly.jpg similarity index 100% rename from images/poweredByResfly.jpg rename to legacy/images/poweredByResfly.jpg diff --git a/images/prev.gif b/legacy/images/prev.gif similarity index 100% rename from images/prev.gif rename to legacy/images/prev.gif diff --git a/images/profButton-o.jpg b/legacy/images/profButton-o.jpg similarity index 100% rename from images/profButton-o.jpg rename to legacy/images/profButton-o.jpg diff --git a/images/profButton.jpg b/legacy/images/profButton.jpg similarity index 100% rename from images/profButton.jpg rename to legacy/images/profButton.jpg diff --git a/images/public.gif b/legacy/images/public.gif similarity index 100% rename from images/public.gif rename to legacy/images/public.gif diff --git a/images/rcf_logo.gif b/legacy/images/rcf_logo.gif similarity index 100% rename from images/rcf_logo.gif rename to legacy/images/rcf_logo.gif diff --git a/images/recruitingEasy.jpg b/legacy/images/recruitingEasy.jpg similarity index 100% rename from images/recruitingEasy.jpg rename to legacy/images/recruitingEasy.jpg diff --git a/images/red_gradient.jpg b/legacy/images/red_gradient.jpg similarity index 100% rename from images/red_gradient.jpg rename to legacy/images/red_gradient.jpg diff --git a/images/report1small.jpg b/legacy/images/report1small.jpg similarity index 100% rename from images/report1small.jpg rename to legacy/images/report1small.jpg diff --git a/images/reports.gif b/legacy/images/reports.gif similarity index 100% rename from images/reports.gif rename to legacy/images/reports.gif diff --git a/images/reportsSmall.gif b/legacy/images/reportsSmall.gif similarity index 100% rename from images/reportsSmall.gif rename to legacy/images/reportsSmall.gif diff --git a/images/resume_preview_inline.gif b/legacy/images/resume_preview_inline.gif similarity index 100% rename from images/resume_preview_inline.gif rename to legacy/images/resume_preview_inline.gif diff --git a/images/scrollBottom.jpg b/legacy/images/scrollBottom.jpg similarity index 100% rename from images/scrollBottom.jpg rename to legacy/images/scrollBottom.jpg diff --git a/images/scrollTop.jpg b/legacy/images/scrollTop.jpg similarity index 100% rename from images/scrollTop.jpg rename to legacy/images/scrollTop.jpg diff --git a/images/search.gif b/legacy/images/search.gif similarity index 100% rename from images/search.gif rename to legacy/images/search.gif diff --git a/images/serverSystem.jpg b/legacy/images/serverSystem.jpg similarity index 100% rename from images/serverSystem.jpg rename to legacy/images/serverSystem.jpg diff --git a/images/settings.gif b/legacy/images/settings.gif similarity index 100% rename from images/settings.gif rename to legacy/images/settings.gif diff --git a/images/settingsAdminProf.jpg b/legacy/images/settingsAdminProf.jpg similarity index 100% rename from images/settingsAdminProf.jpg rename to legacy/images/settingsAdminProf.jpg diff --git a/images/signUp.jpg b/legacy/images/signUp.jpg similarity index 100% rename from images/signUp.jpg rename to legacy/images/signUp.jpg diff --git a/images/sort_table_bg.gif b/legacy/images/sort_table_bg.gif similarity index 100% rename from images/sort_table_bg.gif rename to legacy/images/sort_table_bg.gif diff --git a/images/stars/star0.gif b/legacy/images/stars/star0.gif similarity index 100% rename from images/stars/star0.gif rename to legacy/images/stars/star0.gif diff --git a/images/stars/star1.gif b/legacy/images/stars/star1.gif similarity index 100% rename from images/stars/star1.gif rename to legacy/images/stars/star1.gif diff --git a/images/stars/star2.gif b/legacy/images/stars/star2.gif similarity index 100% rename from images/stars/star2.gif rename to legacy/images/stars/star2.gif diff --git a/images/stars/star3.gif b/legacy/images/stars/star3.gif similarity index 100% rename from images/stars/star3.gif rename to legacy/images/stars/star3.gif diff --git a/images/stars/star4.gif b/legacy/images/stars/star4.gif similarity index 100% rename from images/stars/star4.gif rename to legacy/images/stars/star4.gif diff --git a/images/stars/star5.gif b/legacy/images/stars/star5.gif similarity index 100% rename from images/stars/star5.gif rename to legacy/images/stars/star5.gif diff --git a/images/stars/starneg1.gif b/legacy/images/stars/starneg1.gif similarity index 100% rename from images/stars/starneg1.gif rename to legacy/images/stars/starneg1.gif diff --git a/images/stars/starneg2.gif b/legacy/images/stars/starneg2.gif similarity index 100% rename from images/stars/starneg2.gif rename to legacy/images/stars/starneg2.gif diff --git a/images/stars/starneg3.gif b/legacy/images/stars/starneg3.gif similarity index 100% rename from images/stars/starneg3.gif rename to legacy/images/stars/starneg3.gif diff --git a/images/stars/starneg4.gif b/legacy/images/stars/starneg4.gif similarity index 100% rename from images/stars/starneg4.gif rename to legacy/images/stars/starneg4.gif diff --git a/images/stars/starneg5.gif b/legacy/images/stars/starneg5.gif similarity index 100% rename from images/stars/starneg5.gif rename to legacy/images/stars/starneg5.gif diff --git a/images/stars/starneg6.gif b/legacy/images/stars/starneg6.gif similarity index 100% rename from images/stars/starneg6.gif rename to legacy/images/stars/starneg6.gif diff --git a/images/stars/starsave.gif b/legacy/images/stars/starsave.gif similarity index 100% rename from images/stars/starsave.gif rename to legacy/images/stars/starsave.gif diff --git a/images/submit.gif b/legacy/images/submit.gif similarity index 100% rename from images/submit.gif rename to legacy/images/submit.gif diff --git a/images/superblogo.gif b/legacy/images/superblogo.gif similarity index 100% rename from images/superblogo.gif rename to legacy/images/superblogo.gif diff --git a/images/support.gif b/legacy/images/support.gif similarity index 100% rename from images/support.gif rename to legacy/images/support.gif diff --git a/images/tab1.png b/legacy/images/tab1.png similarity index 100% rename from images/tab1.png rename to legacy/images/tab1.png diff --git a/images/tab2.png b/legacy/images/tab2.png similarity index 100% rename from images/tab2.png rename to legacy/images/tab2.png diff --git a/images/tab3.png b/legacy/images/tab3.png similarity index 100% rename from images/tab3.png rename to legacy/images/tab3.png diff --git a/images/tab_add.gif b/legacy/images/tab_add.gif similarity index 100% rename from images/tab_add.gif rename to legacy/images/tab_add.gif diff --git a/images/tablebg.gif b/legacy/images/tablebg.gif similarity index 100% rename from images/tablebg.gif rename to legacy/images/tablebg.gif diff --git a/images/tabs/active.jpg b/legacy/images/tabs/active.jpg similarity index 100% rename from images/tabs/active.jpg rename to legacy/images/tabs/active.jpg diff --git a/images/tabs/inactive.jpg b/legacy/images/tabs/inactive.jpg similarity index 100% rename from images/tabs/inactive.jpg rename to legacy/images/tabs/inactive.jpg diff --git a/images/tabs/small_account.jpg b/legacy/images/tabs/small_account.jpg similarity index 100% rename from images/tabs/small_account.jpg rename to legacy/images/tabs/small_account.jpg diff --git a/images/tabs/small_logout.jpg b/legacy/images/tabs/small_logout.jpg similarity index 100% rename from images/tabs/small_logout.jpg rename to legacy/images/tabs/small_logout.jpg diff --git a/images/tabs/small_upgrade.jpg b/legacy/images/tabs/small_upgrade.jpg similarity index 100% rename from images/tabs/small_upgrade.jpg rename to legacy/images/tabs/small_upgrade.jpg diff --git a/images/tabs/subtab_active.jpg b/legacy/images/tabs/subtab_active.jpg similarity index 100% rename from images/tabs/subtab_active.jpg rename to legacy/images/tabs/subtab_active.jpg diff --git a/images/tabs/subtab_inactive.jpg b/legacy/images/tabs/subtab_inactive.jpg similarity index 100% rename from images/tabs/subtab_inactive.jpg rename to legacy/images/tabs/subtab_inactive.jpg diff --git a/images/tests.gif b/legacy/images/tests.gif similarity index 100% rename from images/tests.gif rename to legacy/images/tests.gif diff --git a/images/tests_inline.gif b/legacy/images/tests_inline.gif similarity index 100% rename from images/tests_inline.gif rename to legacy/images/tests_inline.gif diff --git a/images/tiled2c.gif b/legacy/images/tiled2c.gif similarity index 100% rename from images/tiled2c.gif rename to legacy/images/tiled2c.gif diff --git a/images/toolbarImport.jpg b/legacy/images/toolbarImport.jpg similarity index 100% rename from images/toolbarImport.jpg rename to legacy/images/toolbarImport.jpg diff --git a/images/toolbarPreview.jpg b/legacy/images/toolbarPreview.jpg similarity index 100% rename from images/toolbarPreview.jpg rename to legacy/images/toolbarPreview.jpg diff --git a/images/unsubmit.gif b/legacy/images/unsubmit.gif similarity index 100% rename from images/unsubmit.gif rename to legacy/images/unsubmit.gif diff --git a/images/upward.gif b/legacy/images/upward.gif similarity index 100% rename from images/upward.gif rename to legacy/images/upward.gif diff --git a/images/vcard.gif b/legacy/images/vcard.gif similarity index 100% rename from images/vcard.gif rename to legacy/images/vcard.gif diff --git a/images/vip_arrow.gif b/legacy/images/vip_arrow.gif similarity index 100% rename from images/vip_arrow.gif rename to legacy/images/vip_arrow.gif diff --git a/images/vip_banner.gif b/legacy/images/vip_banner.gif similarity index 100% rename from images/vip_banner.gif rename to legacy/images/vip_banner.gif diff --git a/images/wf_error.gif b/legacy/images/wf_error.gif similarity index 100% rename from images/wf_error.gif rename to legacy/images/wf_error.gif diff --git a/images/wizard/bottomLeft.jpg b/legacy/images/wizard/bottomLeft.jpg similarity index 100% rename from images/wizard/bottomLeft.jpg rename to legacy/images/wizard/bottomLeft.jpg diff --git a/images/wizard/bottomRight.jpg b/legacy/images/wizard/bottomRight.jpg similarity index 100% rename from images/wizard/bottomRight.jpg rename to legacy/images/wizard/bottomRight.jpg diff --git a/images/wizard/massImport.jpg b/legacy/images/wizard/massImport.jpg similarity index 100% rename from images/wizard/massImport.jpg rename to legacy/images/wizard/massImport.jpg diff --git a/images/wizard/opaqueLogo.jpg b/legacy/images/wizard/opaqueLogo.jpg similarity index 100% rename from images/wizard/opaqueLogo.jpg rename to legacy/images/wizard/opaqueLogo.jpg diff --git a/images/wizard/professional.jpg b/legacy/images/wizard/professional.jpg similarity index 100% rename from images/wizard/professional.jpg rename to legacy/images/wizard/professional.jpg diff --git a/images/wizard/sectionTopLeft.jpg b/legacy/images/wizard/sectionTopLeft.jpg similarity index 100% rename from images/wizard/sectionTopLeft.jpg rename to legacy/images/wizard/sectionTopLeft.jpg diff --git a/images/wizard/sectionTopRight.jpg b/legacy/images/wizard/sectionTopRight.jpg similarity index 100% rename from images/wizard/sectionTopRight.jpg rename to legacy/images/wizard/sectionTopRight.jpg diff --git a/images/wizard/topLeft.jpg b/legacy/images/wizard/topLeft.jpg similarity index 100% rename from images/wizard/topLeft.jpg rename to legacy/images/wizard/topLeft.jpg diff --git a/images/wizard/topRight.jpg b/legacy/images/wizard/topRight.jpg similarity index 100% rename from images/wizard/topRight.jpg rename to legacy/images/wizard/topRight.jpg diff --git a/index.php b/legacy/index.php similarity index 100% rename from index.php rename to legacy/index.php diff --git a/installtest.php b/legacy/installtest.php similarity index 100% rename from installtest.php rename to legacy/installtest.php diff --git a/installwizard.php b/legacy/installwizard.php similarity index 100% rename from installwizard.php rename to legacy/installwizard.php diff --git a/js/activity.js b/legacy/js/activity.js similarity index 100% rename from js/activity.js rename to legacy/js/activity.js diff --git a/js/addressParser.js b/legacy/js/addressParser.js similarity index 100% rename from js/addressParser.js rename to legacy/js/addressParser.js diff --git a/js/backup.js b/legacy/js/backup.js similarity index 100% rename from js/backup.js rename to legacy/js/backup.js diff --git a/js/calendarDateInput.js b/legacy/js/calendarDateInput.js similarity index 100% rename from js/calendarDateInput.js rename to legacy/js/calendarDateInput.js diff --git a/js/candidate.js b/legacy/js/candidate.js similarity index 100% rename from js/candidate.js rename to legacy/js/candidate.js diff --git a/js/candidateParser.js b/legacy/js/candidateParser.js similarity index 100% rename from js/candidateParser.js rename to legacy/js/candidateParser.js diff --git a/js/careerPortalApply.js b/legacy/js/careerPortalApply.js similarity index 100% rename from js/careerPortalApply.js rename to legacy/js/careerPortalApply.js diff --git a/js/careerportal.js b/legacy/js/careerportal.js similarity index 100% rename from js/careerportal.js rename to legacy/js/careerportal.js diff --git a/js/careersPage.js b/legacy/js/careersPage.js similarity index 100% rename from js/careersPage.js rename to legacy/js/careersPage.js diff --git a/js/ckeditor-manager.js b/legacy/js/ckeditor-manager.js similarity index 100% rename from js/ckeditor-manager.js rename to legacy/js/ckeditor-manager.js diff --git a/js/company.js b/legacy/js/company.js similarity index 100% rename from js/company.js rename to legacy/js/company.js diff --git a/js/contact.js b/legacy/js/contact.js similarity index 100% rename from js/contact.js rename to legacy/js/contact.js diff --git a/js/dataGrid.js b/legacy/js/dataGrid.js similarity index 100% rename from js/dataGrid.js rename to legacy/js/dataGrid.js diff --git a/js/dataGridFilters.js b/legacy/js/dataGridFilters.js similarity index 100% rename from js/dataGridFilters.js rename to legacy/js/dataGridFilters.js diff --git a/js/doubleListEditor.js b/legacy/js/doubleListEditor.js similarity index 100% rename from js/doubleListEditor.js rename to legacy/js/doubleListEditor.js diff --git a/js/eeo.js b/legacy/js/eeo.js similarity index 100% rename from js/eeo.js rename to legacy/js/eeo.js diff --git a/js/emailHandler.js b/legacy/js/emailHandler.js similarity index 100% rename from js/emailHandler.js rename to legacy/js/emailHandler.js diff --git a/js/export.js b/legacy/js/export.js similarity index 100% rename from js/export.js rename to legacy/js/export.js diff --git a/js/highlightrows.js b/legacy/js/highlightrows.js similarity index 100% rename from js/highlightrows.js rename to legacy/js/highlightrows.js diff --git a/js/home.js b/legacy/js/home.js similarity index 100% rename from js/home.js rename to legacy/js/home.js diff --git a/js/index.php b/legacy/js/index.php similarity index 100% rename from js/index.php rename to legacy/js/index.php diff --git a/js/install.js b/legacy/js/install.js similarity index 100% rename from js/install.js rename to legacy/js/install.js diff --git a/js/joborder.js b/legacy/js/joborder.js similarity index 100% rename from js/joborder.js rename to legacy/js/joborder.js diff --git a/js/jquery-1.3.2.min.js b/legacy/js/jquery-1.3.2.min.js similarity index 100% rename from js/jquery-1.3.2.min.js rename to legacy/js/jquery-1.3.2.min.js diff --git a/js/lib.js b/legacy/js/lib.js similarity index 100% rename from js/lib.js rename to legacy/js/lib.js diff --git a/js/listEditor.js b/legacy/js/listEditor.js similarity index 100% rename from js/listEditor.js rename to legacy/js/listEditor.js diff --git a/js/lists.js b/legacy/js/lists.js similarity index 100% rename from js/lists.js rename to legacy/js/lists.js diff --git a/js/massImport.js b/legacy/js/massImport.js similarity index 100% rename from js/massImport.js rename to legacy/js/massImport.js diff --git a/js/match.js b/legacy/js/match.js similarity index 100% rename from js/match.js rename to legacy/js/match.js diff --git a/js/pipeline.js b/legacy/js/pipeline.js similarity index 100% rename from js/pipeline.js rename to legacy/js/pipeline.js diff --git a/js/questionnaire.js b/legacy/js/questionnaire.js similarity index 100% rename from js/questionnaire.js rename to legacy/js/questionnaire.js diff --git a/js/quickAction.js b/legacy/js/quickAction.js similarity index 100% rename from js/quickAction.js rename to legacy/js/quickAction.js diff --git a/js/searchAdvanced.js b/legacy/js/searchAdvanced.js similarity index 100% rename from js/searchAdvanced.js rename to legacy/js/searchAdvanced.js diff --git a/js/searchSaved.js b/legacy/js/searchSaved.js similarity index 100% rename from js/searchSaved.js rename to legacy/js/searchSaved.js diff --git a/js/sorttable.js b/legacy/js/sorttable.js similarity index 100% rename from js/sorttable.js rename to legacy/js/sorttable.js diff --git a/js/submodal/close.gif b/legacy/js/submodal/close.gif similarity index 100% rename from js/submodal/close.gif rename to legacy/js/submodal/close.gif diff --git a/js/submodal/loading.html b/legacy/js/submodal/loading.html similarity index 100% rename from js/submodal/loading.html rename to legacy/js/submodal/loading.html diff --git a/js/submodal/subModal.js b/legacy/js/submodal/subModal.js similarity index 100% rename from js/submodal/subModal.js rename to legacy/js/submodal/subModal.js diff --git a/js/suggest.js b/legacy/js/suggest.js similarity index 100% rename from js/suggest.js rename to legacy/js/suggest.js diff --git a/js/sweetTitles.js b/legacy/js/sweetTitles.js similarity index 100% rename from js/sweetTitles.js rename to legacy/js/sweetTitles.js diff --git a/js/wizardIntro.js b/legacy/js/wizardIntro.js similarity index 100% rename from js/wizardIntro.js rename to legacy/js/wizardIntro.js diff --git a/lib/ACL.php b/legacy/lib/ACL.php similarity index 100% rename from lib/ACL.php rename to legacy/lib/ACL.php diff --git a/lib/AJAXInterface.php b/legacy/lib/AJAXInterface.php similarity index 100% rename from lib/AJAXInterface.php rename to legacy/lib/AJAXInterface.php diff --git a/lib/ActivityEntries.php b/legacy/lib/ActivityEntries.php similarity index 100% rename from lib/ActivityEntries.php rename to legacy/lib/ActivityEntries.php diff --git a/lib/AddressParser.php b/legacy/lib/AddressParser.php similarity index 100% rename from lib/AddressParser.php rename to legacy/lib/AddressParser.php diff --git a/lib/ArrayUtility.php b/legacy/lib/ArrayUtility.php similarity index 100% rename from lib/ArrayUtility.php rename to legacy/lib/ArrayUtility.php diff --git a/lib/Attachments.php b/legacy/lib/Attachments.php similarity index 100% rename from lib/Attachments.php rename to legacy/lib/Attachments.php diff --git a/lib/BrowserDetection.php b/legacy/lib/BrowserDetection.php similarity index 100% rename from lib/BrowserDetection.php rename to legacy/lib/BrowserDetection.php diff --git a/lib/CATSUtility.php b/legacy/lib/CATSUtility.php similarity index 100% rename from lib/CATSUtility.php rename to legacy/lib/CATSUtility.php diff --git a/lib/Calendar.php b/legacy/lib/Calendar.php similarity index 100% rename from lib/Calendar.php rename to legacy/lib/Calendar.php diff --git a/lib/Candidates.php b/legacy/lib/Candidates.php similarity index 100% rename from lib/Candidates.php rename to legacy/lib/Candidates.php diff --git a/lib/CandidatesImport.php b/legacy/lib/CandidatesImport.php similarity index 100% rename from lib/CandidatesImport.php rename to legacy/lib/CandidatesImport.php diff --git a/lib/CareerPortal.php b/legacy/lib/CareerPortal.php similarity index 100% rename from lib/CareerPortal.php rename to legacy/lib/CareerPortal.php diff --git a/lib/CommonErrors.php b/legacy/lib/CommonErrors.php similarity index 100% rename from lib/CommonErrors.php rename to legacy/lib/CommonErrors.php diff --git a/lib/Companies.php b/legacy/lib/Companies.php similarity index 99% rename from lib/Companies.php rename to legacy/lib/Companies.php index 5e7480fa3..ae7929a20 100755 --- a/lib/Companies.php +++ b/legacy/lib/Companies.php @@ -1,5 +1,5 @@ ', "\n"; echo 'OpenCATS - ', Template::escapeHtml($pageTitle), '', "\n"; echo '', "\n"; - echo '', "\n"; - echo '', "\n"; + echo '', "\n"; + echo '', "\n"; echo '', "\n"; diff --git a/lib/UserInterface.php b/legacy/lib/UserInterface.php similarity index 100% rename from lib/UserInterface.php rename to legacy/lib/UserInterface.php diff --git a/lib/Users.php b/legacy/lib/Users.php similarity index 100% rename from lib/Users.php rename to legacy/lib/Users.php diff --git a/lib/VCard.php b/legacy/lib/VCard.php similarity index 100% rename from lib/VCard.php rename to legacy/lib/VCard.php diff --git a/lib/WebForm.php b/legacy/lib/WebForm.php similarity index 100% rename from lib/WebForm.php rename to legacy/lib/WebForm.php diff --git a/lib/Width.php b/legacy/lib/Width.php similarity index 100% rename from lib/Width.php rename to legacy/lib/Width.php diff --git a/lib/Wizard.php b/legacy/lib/Wizard.php similarity index 100% rename from lib/Wizard.php rename to legacy/lib/Wizard.php diff --git a/lib/XmlJobExport.php b/legacy/lib/XmlJobExport.php similarity index 100% rename from lib/XmlJobExport.php rename to legacy/lib/XmlJobExport.php diff --git a/lib/ZipLookup.php b/legacy/lib/ZipLookup.php similarity index 100% rename from lib/ZipLookup.php rename to legacy/lib/ZipLookup.php diff --git a/lib/artichow/AntiSpam.class.php b/legacy/lib/artichow/AntiSpam.class.php similarity index 100% rename from lib/artichow/AntiSpam.class.php rename to legacy/lib/artichow/AntiSpam.class.php diff --git a/lib/artichow/Artichow.cfg.php b/legacy/lib/artichow/Artichow.cfg.php similarity index 100% rename from lib/artichow/Artichow.cfg.php rename to legacy/lib/artichow/Artichow.cfg.php diff --git a/lib/artichow/Artichow.class.php b/legacy/lib/artichow/Artichow.class.php similarity index 100% rename from lib/artichow/Artichow.class.php rename to legacy/lib/artichow/Artichow.class.php diff --git a/lib/artichow/BarPlot.class.php b/legacy/lib/artichow/BarPlot.class.php similarity index 100% rename from lib/artichow/BarPlot.class.php rename to legacy/lib/artichow/BarPlot.class.php diff --git a/lib/artichow/BarPlotDashboard.class.php b/legacy/lib/artichow/BarPlotDashboard.class.php similarity index 100% rename from lib/artichow/BarPlotDashboard.class.php rename to legacy/lib/artichow/BarPlotDashboard.class.php diff --git a/lib/artichow/BarPlotPipeline.class.php b/legacy/lib/artichow/BarPlotPipeline.class.php similarity index 100% rename from lib/artichow/BarPlotPipeline.class.php rename to legacy/lib/artichow/BarPlotPipeline.class.php diff --git a/lib/artichow/Component.class.php b/legacy/lib/artichow/Component.class.php similarity index 100% rename from lib/artichow/Component.class.php rename to legacy/lib/artichow/Component.class.php diff --git a/lib/artichow/Graph.class.php b/legacy/lib/artichow/Graph.class.php similarity index 100% rename from lib/artichow/Graph.class.php rename to legacy/lib/artichow/Graph.class.php diff --git a/lib/artichow/Image.class.php b/legacy/lib/artichow/Image.class.php similarity index 100% rename from lib/artichow/Image.class.php rename to legacy/lib/artichow/Image.class.php diff --git a/lib/artichow/LinePlot.class.php b/legacy/lib/artichow/LinePlot.class.php similarity index 100% rename from lib/artichow/LinePlot.class.php rename to legacy/lib/artichow/LinePlot.class.php diff --git a/lib/artichow/MathPlot.class.php b/legacy/lib/artichow/MathPlot.class.php similarity index 100% rename from lib/artichow/MathPlot.class.php rename to legacy/lib/artichow/MathPlot.class.php diff --git a/lib/artichow/Pattern.class.php b/legacy/lib/artichow/Pattern.class.php similarity index 100% rename from lib/artichow/Pattern.class.php rename to legacy/lib/artichow/Pattern.class.php diff --git a/lib/artichow/Pie.class.php b/legacy/lib/artichow/Pie.class.php similarity index 100% rename from lib/artichow/Pie.class.php rename to legacy/lib/artichow/Pie.class.php diff --git a/lib/artichow/Plot.class.php b/legacy/lib/artichow/Plot.class.php similarity index 100% rename from lib/artichow/Plot.class.php rename to legacy/lib/artichow/Plot.class.php diff --git a/lib/artichow/ScatterPlot.class.php b/legacy/lib/artichow/ScatterPlot.class.php similarity index 100% rename from lib/artichow/ScatterPlot.class.php rename to legacy/lib/artichow/ScatterPlot.class.php diff --git a/lib/artichow/common.php b/legacy/lib/artichow/common.php similarity index 100% rename from lib/artichow/common.php rename to legacy/lib/artichow/common.php diff --git a/lib/artichow/font/Tuffy.ttf b/legacy/lib/artichow/font/Tuffy.ttf similarity index 100% rename from lib/artichow/font/Tuffy.ttf rename to legacy/lib/artichow/font/Tuffy.ttf diff --git a/lib/artichow/font/TuffyBold.ttf b/legacy/lib/artichow/font/TuffyBold.ttf similarity index 100% rename from lib/artichow/font/TuffyBold.ttf rename to legacy/lib/artichow/font/TuffyBold.ttf diff --git a/lib/artichow/font/TuffyBoldItalic.ttf b/legacy/lib/artichow/font/TuffyBoldItalic.ttf similarity index 100% rename from lib/artichow/font/TuffyBoldItalic.ttf rename to legacy/lib/artichow/font/TuffyBoldItalic.ttf diff --git a/lib/artichow/font/TuffyItalic.ttf b/legacy/lib/artichow/font/TuffyItalic.ttf similarity index 100% rename from lib/artichow/font/TuffyItalic.ttf rename to legacy/lib/artichow/font/TuffyItalic.ttf diff --git a/lib/artichow/images/book.png b/legacy/lib/artichow/images/book.png similarity index 100% rename from lib/artichow/images/book.png rename to legacy/lib/artichow/images/book.png diff --git a/lib/artichow/images/paperclip.png b/legacy/lib/artichow/images/paperclip.png similarity index 100% rename from lib/artichow/images/paperclip.png rename to legacy/lib/artichow/images/paperclip.png diff --git a/lib/artichow/images/star.png b/legacy/lib/artichow/images/star.png similarity index 100% rename from lib/artichow/images/star.png rename to legacy/lib/artichow/images/star.png diff --git a/lib/artichow/inc/Axis.class.php b/legacy/lib/artichow/inc/Axis.class.php similarity index 100% rename from lib/artichow/inc/Axis.class.php rename to legacy/lib/artichow/inc/Axis.class.php diff --git a/lib/artichow/inc/Border.class.php b/legacy/lib/artichow/inc/Border.class.php similarity index 100% rename from lib/artichow/inc/Border.class.php rename to legacy/lib/artichow/inc/Border.class.php diff --git a/lib/artichow/inc/Color.class.php b/legacy/lib/artichow/inc/Color.class.php similarity index 100% rename from lib/artichow/inc/Color.class.php rename to legacy/lib/artichow/inc/Color.class.php diff --git a/lib/artichow/inc/Drawer.class.php b/legacy/lib/artichow/inc/Drawer.class.php similarity index 100% rename from lib/artichow/inc/Drawer.class.php rename to legacy/lib/artichow/inc/Drawer.class.php diff --git a/lib/artichow/inc/Font.class.php b/legacy/lib/artichow/inc/Font.class.php similarity index 100% rename from lib/artichow/inc/Font.class.php rename to legacy/lib/artichow/inc/Font.class.php diff --git a/lib/artichow/inc/Gradient.class.php b/legacy/lib/artichow/inc/Gradient.class.php similarity index 100% rename from lib/artichow/inc/Gradient.class.php rename to legacy/lib/artichow/inc/Gradient.class.php diff --git a/lib/artichow/inc/Grid.class.php b/legacy/lib/artichow/inc/Grid.class.php similarity index 100% rename from lib/artichow/inc/Grid.class.php rename to legacy/lib/artichow/inc/Grid.class.php diff --git a/lib/artichow/inc/Label.class.php b/legacy/lib/artichow/inc/Label.class.php similarity index 100% rename from lib/artichow/inc/Label.class.php rename to legacy/lib/artichow/inc/Label.class.php diff --git a/lib/artichow/inc/Legend.class.php b/legacy/lib/artichow/inc/Legend.class.php similarity index 100% rename from lib/artichow/inc/Legend.class.php rename to legacy/lib/artichow/inc/Legend.class.php diff --git a/lib/artichow/inc/Mark.class.php b/legacy/lib/artichow/inc/Mark.class.php similarity index 100% rename from lib/artichow/inc/Mark.class.php rename to legacy/lib/artichow/inc/Mark.class.php diff --git a/lib/artichow/inc/Math.class.php b/legacy/lib/artichow/inc/Math.class.php similarity index 100% rename from lib/artichow/inc/Math.class.php rename to legacy/lib/artichow/inc/Math.class.php diff --git a/lib/artichow/inc/Shadow.class.php b/legacy/lib/artichow/inc/Shadow.class.php similarity index 100% rename from lib/artichow/inc/Shadow.class.php rename to legacy/lib/artichow/inc/Shadow.class.php diff --git a/lib/artichow/inc/Text.class.php b/legacy/lib/artichow/inc/Text.class.php similarity index 100% rename from lib/artichow/inc/Text.class.php rename to legacy/lib/artichow/inc/Text.class.php diff --git a/lib/artichow/inc/Tick.class.php b/legacy/lib/artichow/inc/Tick.class.php similarity index 100% rename from lib/artichow/inc/Tick.class.php rename to legacy/lib/artichow/inc/Tick.class.php diff --git a/lib/artichow/inc/Tools.class.php b/legacy/lib/artichow/inc/Tools.class.php similarity index 100% rename from lib/artichow/inc/Tools.class.php rename to legacy/lib/artichow/inc/Tools.class.php diff --git a/lib/artichow/patterns/BarDepth.php b/legacy/lib/artichow/patterns/BarDepth.php similarity index 100% rename from lib/artichow/patterns/BarDepth.php rename to legacy/lib/artichow/patterns/BarDepth.php diff --git a/lib/artichow/patterns/LightLine.php b/legacy/lib/artichow/patterns/LightLine.php similarity index 100% rename from lib/artichow/patterns/LightLine.php rename to legacy/lib/artichow/patterns/LightLine.php diff --git a/lib/datagrid/FilterArea.tpl b/legacy/lib/datagrid/FilterArea.tpl similarity index 100% rename from lib/datagrid/FilterArea.tpl rename to legacy/lib/datagrid/FilterArea.tpl diff --git a/lib/mime.types b/legacy/lib/mime.types similarity index 100% rename from lib/mime.types rename to legacy/lib/mime.types diff --git a/config/sphinx/STOPWORDS b/legacy/lib/sphinx/STOPWORDS similarity index 100% rename from config/sphinx/STOPWORDS rename to legacy/lib/sphinx/STOPWORDS diff --git a/config/sphinx/sphinx.conf b/legacy/lib/sphinx/conf/sphinx.conf similarity index 100% rename from config/sphinx/sphinx.conf rename to legacy/lib/sphinx/conf/sphinx.conf diff --git a/modules/careers/Openings.tpl b/legacy/lib/sphinx/index/cats/empty old mode 100755 new mode 100644 similarity index 100% rename from modules/careers/Openings.tpl rename to legacy/lib/sphinx/index/cats/empty diff --git a/modules/careers/SearchOpenings.tpl b/legacy/lib/sphinx/index/cats_delta/empty old mode 100755 new mode 100644 similarity index 100% rename from modules/careers/SearchOpenings.tpl rename to legacy/lib/sphinx/index/cats_delta/empty diff --git a/reports/index.html b/legacy/lib/sphinx/var/log/empty similarity index 100% rename from reports/index.html rename to legacy/lib/sphinx/var/log/empty diff --git a/scripts/index.php b/legacy/lib/sphinx/var/run/empty old mode 100755 new mode 100644 similarity index 100% rename from scripts/index.php rename to legacy/lib/sphinx/var/run/empty diff --git a/main.css b/legacy/main.css similarity index 100% rename from main.css rename to legacy/main.css diff --git a/modules/activity/ActivityDataGrid.tpl b/legacy/modules/activity/ActivityDataGrid.tpl similarity index 100% rename from modules/activity/ActivityDataGrid.tpl rename to legacy/modules/activity/ActivityDataGrid.tpl diff --git a/modules/activity/ActivityUI.php b/legacy/modules/activity/ActivityUI.php similarity index 100% rename from modules/activity/ActivityUI.php rename to legacy/modules/activity/ActivityUI.php diff --git a/modules/activity/Search.tpl b/legacy/modules/activity/Search.tpl similarity index 100% rename from modules/activity/Search.tpl rename to legacy/modules/activity/Search.tpl diff --git a/modules/activity/dataGrids.php b/legacy/modules/activity/dataGrids.php similarity index 100% rename from modules/activity/dataGrids.php rename to legacy/modules/activity/dataGrids.php diff --git a/modules/activity/validator.js b/legacy/modules/activity/validator.js similarity index 100% rename from modules/activity/validator.js rename to legacy/modules/activity/validator.js diff --git a/modules/attachments/AttachmentsUI.php b/legacy/modules/attachments/AttachmentsUI.php similarity index 100% rename from modules/attachments/AttachmentsUI.php rename to legacy/modules/attachments/AttachmentsUI.php diff --git a/modules/calendar/Calendar.css b/legacy/modules/calendar/Calendar.css similarity index 100% rename from modules/calendar/Calendar.css rename to legacy/modules/calendar/Calendar.css diff --git a/modules/calendar/Calendar.js b/legacy/modules/calendar/Calendar.js similarity index 100% rename from modules/calendar/Calendar.js rename to legacy/modules/calendar/Calendar.js diff --git a/modules/calendar/Calendar.tpl b/legacy/modules/calendar/Calendar.tpl similarity index 100% rename from modules/calendar/Calendar.tpl rename to legacy/modules/calendar/Calendar.tpl diff --git a/modules/calendar/CalendarUI.js b/legacy/modules/calendar/CalendarUI.js similarity index 100% rename from modules/calendar/CalendarUI.js rename to legacy/modules/calendar/CalendarUI.js diff --git a/modules/calendar/CalendarUI.php b/legacy/modules/calendar/CalendarUI.php similarity index 100% rename from modules/calendar/CalendarUI.php rename to legacy/modules/calendar/CalendarUI.php diff --git a/modules/calendar/Error.tpl b/legacy/modules/calendar/Error.tpl similarity index 100% rename from modules/calendar/Error.tpl rename to legacy/modules/calendar/Error.tpl diff --git a/modules/calendar/tasks/Reminders.php b/legacy/modules/calendar/tasks/Reminders.php similarity index 100% rename from modules/calendar/tasks/Reminders.php rename to legacy/modules/calendar/tasks/Reminders.php diff --git a/modules/calendar/tasks/tasks.php b/legacy/modules/calendar/tasks/tasks.php similarity index 100% rename from modules/calendar/tasks/tasks.php rename to legacy/modules/calendar/tasks/tasks.php diff --git a/modules/calendar/validator.js b/legacy/modules/calendar/validator.js similarity index 100% rename from modules/calendar/validator.js rename to legacy/modules/calendar/validator.js diff --git a/modules/candidates/Add.tpl b/legacy/modules/candidates/Add.tpl similarity index 100% rename from modules/candidates/Add.tpl rename to legacy/modules/candidates/Add.tpl diff --git a/modules/candidates/AddActivityScheduleEventModal.tpl b/legacy/modules/candidates/AddActivityScheduleEventModal.tpl similarity index 100% rename from modules/candidates/AddActivityScheduleEventModal.tpl rename to legacy/modules/candidates/AddActivityScheduleEventModal.tpl diff --git a/modules/candidates/AssignCandidateTagModal.tpl b/legacy/modules/candidates/AssignCandidateTagModal.tpl similarity index 100% rename from modules/candidates/AssignCandidateTagModal.tpl rename to legacy/modules/candidates/AssignCandidateTagModal.tpl diff --git a/modules/candidates/Candidates.tpl b/legacy/modules/candidates/Candidates.tpl similarity index 100% rename from modules/candidates/Candidates.tpl rename to legacy/modules/candidates/Candidates.tpl diff --git a/modules/candidates/CandidatesUI.php b/legacy/modules/candidates/CandidatesUI.php similarity index 100% rename from modules/candidates/CandidatesUI.php rename to legacy/modules/candidates/CandidatesUI.php diff --git a/modules/candidates/ChangeStatusModal.tpl b/legacy/modules/candidates/ChangeStatusModal.tpl similarity index 100% rename from modules/candidates/ChangeStatusModal.tpl rename to legacy/modules/candidates/ChangeStatusModal.tpl diff --git a/modules/candidates/ConsiderSearchModal.tpl b/legacy/modules/candidates/ConsiderSearchModal.tpl similarity index 100% rename from modules/candidates/ConsiderSearchModal.tpl rename to legacy/modules/candidates/ConsiderSearchModal.tpl diff --git a/modules/candidates/CreateAttachmentModal.tpl b/legacy/modules/candidates/CreateAttachmentModal.tpl similarity index 100% rename from modules/candidates/CreateAttachmentModal.tpl rename to legacy/modules/candidates/CreateAttachmentModal.tpl diff --git a/modules/candidates/CreateImageAttachmentModal.tpl b/legacy/modules/candidates/CreateImageAttachmentModal.tpl similarity index 100% rename from modules/candidates/CreateImageAttachmentModal.tpl rename to legacy/modules/candidates/CreateImageAttachmentModal.tpl diff --git a/modules/candidates/Duplicates.tpl b/legacy/modules/candidates/Duplicates.tpl similarity index 100% rename from modules/candidates/Duplicates.tpl rename to legacy/modules/candidates/Duplicates.tpl diff --git a/modules/candidates/Edit.tpl b/legacy/modules/candidates/Edit.tpl similarity index 100% rename from modules/candidates/Edit.tpl rename to legacy/modules/candidates/Edit.tpl diff --git a/modules/candidates/Error.tpl b/legacy/modules/candidates/Error.tpl similarity index 100% rename from modules/candidates/Error.tpl rename to legacy/modules/candidates/Error.tpl diff --git a/modules/candidates/ErrorModal.tpl b/legacy/modules/candidates/ErrorModal.tpl similarity index 100% rename from modules/candidates/ErrorModal.tpl rename to legacy/modules/candidates/ErrorModal.tpl diff --git a/modules/candidates/HotList.tpl b/legacy/modules/candidates/HotList.tpl similarity index 100% rename from modules/candidates/HotList.tpl rename to legacy/modules/candidates/HotList.tpl diff --git a/modules/candidates/LinkDuplicity.tpl b/legacy/modules/candidates/LinkDuplicity.tpl similarity index 100% rename from modules/candidates/LinkDuplicity.tpl rename to legacy/modules/candidates/LinkDuplicity.tpl diff --git a/modules/candidates/Merge.tpl b/legacy/modules/candidates/Merge.tpl similarity index 100% rename from modules/candidates/Merge.tpl rename to legacy/modules/candidates/Merge.tpl diff --git a/modules/candidates/Questionnaire.tpl b/legacy/modules/candidates/Questionnaire.tpl similarity index 100% rename from modules/candidates/Questionnaire.tpl rename to legacy/modules/candidates/Questionnaire.tpl diff --git a/modules/candidates/ResumeView.tpl b/legacy/modules/candidates/ResumeView.tpl similarity index 100% rename from modules/candidates/ResumeView.tpl rename to legacy/modules/candidates/ResumeView.tpl diff --git a/modules/candidates/Search.tpl b/legacy/modules/candidates/Search.tpl similarity index 100% rename from modules/candidates/Search.tpl rename to legacy/modules/candidates/Search.tpl diff --git a/modules/candidates/SendEmail.tpl b/legacy/modules/candidates/SendEmail.tpl similarity index 100% rename from modules/candidates/SendEmail.tpl rename to legacy/modules/candidates/SendEmail.tpl diff --git a/modules/candidates/Show.tpl b/legacy/modules/candidates/Show.tpl similarity index 99% rename from modules/candidates/Show.tpl rename to legacy/modules/candidates/Show.tpl index a435a0e36..563d334b4 100755 --- a/modules/candidates/Show.tpl +++ b/legacy/modules/candidates/Show.tpl @@ -1,5 +1,5 @@ diff --git a/modules/candidates/activityvalidator.js b/legacy/modules/candidates/activityvalidator.js similarity index 100% rename from modules/candidates/activityvalidator.js rename to legacy/modules/candidates/activityvalidator.js diff --git a/modules/candidates/dataGrids.php b/legacy/modules/candidates/dataGrids.php similarity index 100% rename from modules/candidates/dataGrids.php rename to legacy/modules/candidates/dataGrids.php diff --git a/modules/candidates/quickAction-candidates.js b/legacy/modules/candidates/quickAction-candidates.js similarity index 100% rename from modules/candidates/quickAction-candidates.js rename to legacy/modules/candidates/quickAction-candidates.js diff --git a/modules/candidates/quickAction-duplicates.js b/legacy/modules/candidates/quickAction-duplicates.js similarity index 100% rename from modules/candidates/quickAction-duplicates.js rename to legacy/modules/candidates/quickAction-duplicates.js diff --git a/modules/candidates/validator.js b/legacy/modules/candidates/validator.js similarity index 100% rename from modules/candidates/validator.js rename to legacy/modules/candidates/validator.js diff --git a/modules/careers/Blank.tpl b/legacy/modules/careers/Blank.tpl similarity index 100% rename from modules/careers/Blank.tpl rename to legacy/modules/careers/Blank.tpl diff --git a/modules/careers/Blank2.tpl b/legacy/modules/careers/Blank2.tpl similarity index 100% rename from modules/careers/Blank2.tpl rename to legacy/modules/careers/Blank2.tpl diff --git a/modules/careers/BlankNoMargin.tpl b/legacy/modules/careers/BlankNoMargin.tpl similarity index 100% rename from modules/careers/BlankNoMargin.tpl rename to legacy/modules/careers/BlankNoMargin.tpl diff --git a/modules/careers/CareersUI.php b/legacy/modules/careers/CareersUI.php similarity index 100% rename from modules/careers/CareersUI.php rename to legacy/modules/careers/CareersUI.php diff --git a/modules/careers/Error.tpl b/legacy/modules/careers/Error.tpl similarity index 100% rename from modules/careers/Error.tpl rename to legacy/modules/careers/Error.tpl diff --git a/legacy/modules/careers/Openings.tpl b/legacy/modules/careers/Openings.tpl new file mode 100755 index 000000000..e69de29bb diff --git a/legacy/modules/careers/SearchOpenings.tpl b/legacy/modules/careers/SearchOpenings.tpl new file mode 100755 index 000000000..e69de29bb diff --git a/modules/companies/Add.tpl b/legacy/modules/companies/Add.tpl similarity index 100% rename from modules/companies/Add.tpl rename to legacy/modules/companies/Add.tpl diff --git a/modules/companies/Companies.tpl b/legacy/modules/companies/Companies.tpl similarity index 100% rename from modules/companies/Companies.tpl rename to legacy/modules/companies/Companies.tpl diff --git a/modules/companies/CompaniesUI.php b/legacy/modules/companies/CompaniesUI.php similarity index 100% rename from modules/companies/CompaniesUI.php rename to legacy/modules/companies/CompaniesUI.php diff --git a/modules/companies/CreateAttachmentModal.tpl b/legacy/modules/companies/CreateAttachmentModal.tpl similarity index 100% rename from modules/companies/CreateAttachmentModal.tpl rename to legacy/modules/companies/CreateAttachmentModal.tpl diff --git a/modules/companies/Edit.tpl b/legacy/modules/companies/Edit.tpl similarity index 100% rename from modules/companies/Edit.tpl rename to legacy/modules/companies/Edit.tpl diff --git a/modules/companies/Error.tpl b/legacy/modules/companies/Error.tpl similarity index 100% rename from modules/companies/Error.tpl rename to legacy/modules/companies/Error.tpl diff --git a/modules/companies/ErrorModal.tpl b/legacy/modules/companies/ErrorModal.tpl similarity index 100% rename from modules/companies/ErrorModal.tpl rename to legacy/modules/companies/ErrorModal.tpl diff --git a/modules/companies/Search.tpl b/legacy/modules/companies/Search.tpl similarity index 100% rename from modules/companies/Search.tpl rename to legacy/modules/companies/Search.tpl diff --git a/modules/companies/Show.tpl b/legacy/modules/companies/Show.tpl similarity index 99% rename from modules/companies/Show.tpl rename to legacy/modules/companies/Show.tpl index 025f0cc8a..4cc045b9d 100755 --- a/modules/companies/Show.tpl +++ b/legacy/modules/companies/Show.tpl @@ -1,5 +1,5 @@ data['name'], array( 'js/activity.js', 'js/sorttable.js', 'js/attachment.js')); ?> diff --git a/modules/companies/dataGrids.php b/legacy/modules/companies/dataGrids.php similarity index 100% rename from modules/companies/dataGrids.php rename to legacy/modules/companies/dataGrids.php diff --git a/modules/companies/validator.js b/legacy/modules/companies/validator.js similarity index 100% rename from modules/companies/validator.js rename to legacy/modules/companies/validator.js diff --git a/modules/contacts/Add.tpl b/legacy/modules/contacts/Add.tpl similarity index 100% rename from modules/contacts/Add.tpl rename to legacy/modules/contacts/Add.tpl diff --git a/modules/contacts/AddActivityScheduleEventModal.tpl b/legacy/modules/contacts/AddActivityScheduleEventModal.tpl similarity index 100% rename from modules/contacts/AddActivityScheduleEventModal.tpl rename to legacy/modules/contacts/AddActivityScheduleEventModal.tpl diff --git a/modules/contacts/ColdCallList.tpl b/legacy/modules/contacts/ColdCallList.tpl similarity index 100% rename from modules/contacts/ColdCallList.tpl rename to legacy/modules/contacts/ColdCallList.tpl diff --git a/modules/contacts/Contacts.tpl b/legacy/modules/contacts/Contacts.tpl similarity index 100% rename from modules/contacts/Contacts.tpl rename to legacy/modules/contacts/Contacts.tpl diff --git a/modules/contacts/ContactsUI.php b/legacy/modules/contacts/ContactsUI.php similarity index 100% rename from modules/contacts/ContactsUI.php rename to legacy/modules/contacts/ContactsUI.php diff --git a/modules/contacts/Edit.tpl b/legacy/modules/contacts/Edit.tpl similarity index 100% rename from modules/contacts/Edit.tpl rename to legacy/modules/contacts/Edit.tpl diff --git a/modules/contacts/Error.tpl b/legacy/modules/contacts/Error.tpl similarity index 100% rename from modules/contacts/Error.tpl rename to legacy/modules/contacts/Error.tpl diff --git a/modules/contacts/ErrorModal.tpl b/legacy/modules/contacts/ErrorModal.tpl similarity index 100% rename from modules/contacts/ErrorModal.tpl rename to legacy/modules/contacts/ErrorModal.tpl diff --git a/modules/contacts/Search.tpl b/legacy/modules/contacts/Search.tpl similarity index 100% rename from modules/contacts/Search.tpl rename to legacy/modules/contacts/Search.tpl diff --git a/modules/contacts/Show.tpl b/legacy/modules/contacts/Show.tpl similarity index 99% rename from modules/contacts/Show.tpl rename to legacy/modules/contacts/Show.tpl index e90aad22d..cc878c29d 100755 --- a/modules/contacts/Show.tpl +++ b/legacy/modules/contacts/Show.tpl @@ -1,6 +1,6 @@ data['firstName'] . ' ' . $this->data['lastName'], array( 'js/activity.js', 'js/attachment.js')); ?> diff --git a/modules/contacts/activityvalidator.js b/legacy/modules/contacts/activityvalidator.js similarity index 100% rename from modules/contacts/activityvalidator.js rename to legacy/modules/contacts/activityvalidator.js diff --git a/modules/contacts/dataGrids.php b/legacy/modules/contacts/dataGrids.php similarity index 100% rename from modules/contacts/dataGrids.php rename to legacy/modules/contacts/dataGrids.php diff --git a/modules/contacts/validator.js b/legacy/modules/contacts/validator.js similarity index 100% rename from modules/contacts/validator.js rename to legacy/modules/contacts/validator.js diff --git a/modules/export/ExportUI.php b/legacy/modules/export/ExportUI.php similarity index 100% rename from modules/export/ExportUI.php rename to legacy/modules/export/ExportUI.php diff --git a/modules/graphs/GraphsUI.php b/legacy/modules/graphs/GraphsUI.php similarity index 100% rename from modules/graphs/GraphsUI.php rename to legacy/modules/graphs/GraphsUI.php diff --git a/modules/home/Error.tpl b/legacy/modules/home/Error.tpl similarity index 100% rename from modules/home/Error.tpl rename to legacy/modules/home/Error.tpl diff --git a/modules/home/FriendlyError.tpl b/legacy/modules/home/FriendlyError.tpl similarity index 100% rename from modules/home/FriendlyError.tpl rename to legacy/modules/home/FriendlyError.tpl diff --git a/modules/home/Home.tpl b/legacy/modules/home/Home.tpl similarity index 100% rename from modules/home/Home.tpl rename to legacy/modules/home/Home.tpl diff --git a/modules/home/HomeUI.php b/legacy/modules/home/HomeUI.php similarity index 100% rename from modules/home/HomeUI.php rename to legacy/modules/home/HomeUI.php diff --git a/modules/home/SearchEverything.tpl b/legacy/modules/home/SearchEverything.tpl similarity index 100% rename from modules/home/SearchEverything.tpl rename to legacy/modules/home/SearchEverything.tpl diff --git a/modules/home/dataGrids.php b/legacy/modules/home/dataGrids.php similarity index 100% rename from modules/home/dataGrids.php rename to legacy/modules/home/dataGrids.php diff --git a/modules/import/BulkResumesHelp.tpl b/legacy/modules/import/BulkResumesHelp.tpl similarity index 100% rename from modules/import/BulkResumesHelp.tpl rename to legacy/modules/import/BulkResumesHelp.tpl diff --git a/modules/import/Error.tpl b/legacy/modules/import/Error.tpl similarity index 100% rename from modules/import/Error.tpl rename to legacy/modules/import/Error.tpl diff --git a/modules/import/ErrorModal.tpl b/legacy/modules/import/ErrorModal.tpl similarity index 100% rename from modules/import/ErrorModal.tpl rename to legacy/modules/import/ErrorModal.tpl diff --git a/modules/import/Import.php b/legacy/modules/import/Import.php similarity index 100% rename from modules/import/Import.php rename to legacy/modules/import/Import.php diff --git a/modules/import/Import.tpl b/legacy/modules/import/Import.tpl similarity index 100% rename from modules/import/Import.tpl rename to legacy/modules/import/Import.tpl diff --git a/modules/import/Import1.tpl b/legacy/modules/import/Import1.tpl similarity index 100% rename from modules/import/Import1.tpl rename to legacy/modules/import/Import1.tpl diff --git a/modules/import/Import2.tpl b/legacy/modules/import/Import2.tpl similarity index 100% rename from modules/import/Import2.tpl rename to legacy/modules/import/Import2.tpl diff --git a/modules/import/ImportCommits.tpl b/legacy/modules/import/ImportCommits.tpl similarity index 100% rename from modules/import/ImportCommits.tpl rename to legacy/modules/import/ImportCommits.tpl diff --git a/modules/import/ImportRecent.tpl b/legacy/modules/import/ImportRecent.tpl similarity index 100% rename from modules/import/ImportRecent.tpl rename to legacy/modules/import/ImportRecent.tpl diff --git a/modules/import/ImportResumesBulk.tpl b/legacy/modules/import/ImportResumesBulk.tpl similarity index 100% rename from modules/import/ImportResumesBulk.tpl rename to legacy/modules/import/ImportResumesBulk.tpl diff --git a/modules/import/ImportUI.php b/legacy/modules/import/ImportUI.php similarity index 100% rename from modules/import/ImportUI.php rename to legacy/modules/import/ImportUI.php diff --git a/modules/import/MassImport.css b/legacy/modules/import/MassImport.css similarity index 100% rename from modules/import/MassImport.css rename to legacy/modules/import/MassImport.css diff --git a/modules/import/MassImport.tpl b/legacy/modules/import/MassImport.tpl similarity index 100% rename from modules/import/MassImport.tpl rename to legacy/modules/import/MassImport.tpl diff --git a/modules/import/MassImportEdit.tpl b/legacy/modules/import/MassImportEdit.tpl similarity index 100% rename from modules/import/MassImportEdit.tpl rename to legacy/modules/import/MassImportEdit.tpl diff --git a/modules/import/MassImportStep1.tpl b/legacy/modules/import/MassImportStep1.tpl similarity index 100% rename from modules/import/MassImportStep1.tpl rename to legacy/modules/import/MassImportStep1.tpl diff --git a/modules/import/MassImportStep2.tpl b/legacy/modules/import/MassImportStep2.tpl similarity index 100% rename from modules/import/MassImportStep2.tpl rename to legacy/modules/import/MassImportStep2.tpl diff --git a/modules/import/MassImportStep3.tpl b/legacy/modules/import/MassImportStep3.tpl similarity index 100% rename from modules/import/MassImportStep3.tpl rename to legacy/modules/import/MassImportStep3.tpl diff --git a/modules/import/MassImportStep4.tpl b/legacy/modules/import/MassImportStep4.tpl similarity index 100% rename from modules/import/MassImportStep4.tpl rename to legacy/modules/import/MassImportStep4.tpl diff --git a/modules/import/ajax/processMassImportItem.php b/legacy/modules/import/ajax/processMassImportItem.php similarity index 100% rename from modules/import/ajax/processMassImportItem.php rename to legacy/modules/import/ajax/processMassImportItem.php diff --git a/modules/import/import.js b/legacy/modules/import/import.js similarity index 100% rename from modules/import/import.js rename to legacy/modules/import/import.js diff --git a/modules/install/CATSUI.php b/legacy/modules/install/CATSUI.php similarity index 100% rename from modules/install/CATSUI.php rename to legacy/modules/install/CATSUI.php diff --git a/modules/install/OptionalComponents.php b/legacy/modules/install/OptionalComponents.php similarity index 100% rename from modules/install/OptionalComponents.php rename to legacy/modules/install/OptionalComponents.php diff --git a/modules/install/Schema.php b/legacy/modules/install/Schema.php similarity index 100% rename from modules/install/Schema.php rename to legacy/modules/install/Schema.php diff --git a/modules/install/ajax/attachmentsReindex.php b/legacy/modules/install/ajax/attachmentsReindex.php similarity index 100% rename from modules/install/ajax/attachmentsReindex.php rename to legacy/modules/install/ajax/attachmentsReindex.php diff --git a/modules/install/ajax/attachmentsToThreeDirectory.php b/legacy/modules/install/ajax/attachmentsToThreeDirectory.php similarity index 100% rename from modules/install/ajax/attachmentsToThreeDirectory.php rename to legacy/modules/install/ajax/attachmentsToThreeDirectory.php diff --git a/modules/install/ajax/maint.php b/legacy/modules/install/ajax/maint.php similarity index 100% rename from modules/install/ajax/maint.php rename to legacy/modules/install/ajax/maint.php diff --git a/modules/install/ajax/ui.php b/legacy/modules/install/ajax/ui.php similarity index 100% rename from modules/install/ajax/ui.php rename to legacy/modules/install/ajax/ui.php diff --git a/modules/install/backupDB.php b/legacy/modules/install/backupDB.php similarity index 100% rename from modules/install/backupDB.php rename to legacy/modules/install/backupDB.php diff --git a/modules/install/install.css b/legacy/modules/install/install.css similarity index 100% rename from modules/install/install.css rename to legacy/modules/install/install.css diff --git a/modules/install/notinstalled.php b/legacy/modules/install/notinstalled.php similarity index 100% rename from modules/install/notinstalled.php rename to legacy/modules/install/notinstalled.php diff --git a/modules/install/phpVersion.php b/legacy/modules/install/phpVersion.php similarity index 100% rename from modules/install/phpVersion.php rename to legacy/modules/install/phpVersion.php diff --git a/modules/install/scripts/114.php b/legacy/modules/install/scripts/114.php similarity index 100% rename from modules/install/scripts/114.php rename to legacy/modules/install/scripts/114.php diff --git a/modules/install/scripts/150.php b/legacy/modules/install/scripts/150.php similarity index 100% rename from modules/install/scripts/150.php rename to legacy/modules/install/scripts/150.php diff --git a/modules/install/scripts/359.sql b/legacy/modules/install/scripts/359.sql similarity index 100% rename from modules/install/scripts/359.sql rename to legacy/modules/install/scripts/359.sql diff --git a/modules/install/scripts/372.php b/legacy/modules/install/scripts/372.php similarity index 100% rename from modules/install/scripts/372.php rename to legacy/modules/install/scripts/372.php diff --git a/modules/install/testdocs/test.doc b/legacy/modules/install/testdocs/test.doc similarity index 100% rename from modules/install/testdocs/test.doc rename to legacy/modules/install/testdocs/test.doc diff --git a/modules/install/testdocs/test.html b/legacy/modules/install/testdocs/test.html similarity index 100% rename from modules/install/testdocs/test.html rename to legacy/modules/install/testdocs/test.html diff --git a/modules/install/testdocs/test.pdf b/legacy/modules/install/testdocs/test.pdf similarity index 100% rename from modules/install/testdocs/test.pdf rename to legacy/modules/install/testdocs/test.pdf diff --git a/modules/install/testdocs/test.rtf b/legacy/modules/install/testdocs/test.rtf similarity index 100% rename from modules/install/testdocs/test.rtf rename to legacy/modules/install/testdocs/test.rtf diff --git a/modules/joborders/Add.tpl b/legacy/modules/joborders/Add.tpl similarity index 100% rename from modules/joborders/Add.tpl rename to legacy/modules/joborders/Add.tpl diff --git a/modules/joborders/AddModalPopup.tpl b/legacy/modules/joborders/AddModalPopup.tpl similarity index 100% rename from modules/joborders/AddModalPopup.tpl rename to legacy/modules/joborders/AddModalPopup.tpl diff --git a/modules/joborders/ConsiderSearchModal.tpl b/legacy/modules/joborders/ConsiderSearchModal.tpl similarity index 100% rename from modules/joborders/ConsiderSearchModal.tpl rename to legacy/modules/joborders/ConsiderSearchModal.tpl diff --git a/modules/joborders/CreateAttachmentModal.tpl b/legacy/modules/joborders/CreateAttachmentModal.tpl similarity index 100% rename from modules/joborders/CreateAttachmentModal.tpl rename to legacy/modules/joborders/CreateAttachmentModal.tpl diff --git a/modules/joborders/Edit.tpl b/legacy/modules/joborders/Edit.tpl similarity index 100% rename from modules/joborders/Edit.tpl rename to legacy/modules/joborders/Edit.tpl diff --git a/modules/joborders/Error.tpl b/legacy/modules/joborders/Error.tpl similarity index 100% rename from modules/joborders/Error.tpl rename to legacy/modules/joborders/Error.tpl diff --git a/modules/joborders/ErrorModal.tpl b/legacy/modules/joborders/ErrorModal.tpl similarity index 100% rename from modules/joborders/ErrorModal.tpl rename to legacy/modules/joborders/ErrorModal.tpl diff --git a/modules/joborders/JobOrders.tpl b/legacy/modules/joborders/JobOrders.tpl similarity index 100% rename from modules/joborders/JobOrders.tpl rename to legacy/modules/joborders/JobOrders.tpl diff --git a/modules/joborders/JobOrdersUI.php b/legacy/modules/joborders/JobOrdersUI.php similarity index 100% rename from modules/joborders/JobOrdersUI.php rename to legacy/modules/joborders/JobOrdersUI.php diff --git a/modules/joborders/Search.tpl b/legacy/modules/joborders/Search.tpl similarity index 100% rename from modules/joborders/Search.tpl rename to legacy/modules/joborders/Search.tpl diff --git a/modules/joborders/Show.tpl b/legacy/modules/joborders/Show.tpl similarity index 99% rename from modules/joborders/Show.tpl rename to legacy/modules/joborders/Show.tpl index 2b0ee3674..79cda0578 100755 --- a/modules/joborders/Show.tpl +++ b/legacy/modules/joborders/Show.tpl @@ -1,5 +1,5 @@ isPopup): ?> diff --git a/modules/joborders/dataGrids.php b/legacy/modules/joborders/dataGrids.php similarity index 100% rename from modules/joborders/dataGrids.php rename to legacy/modules/joborders/dataGrids.php diff --git a/modules/joborders/validator.js b/legacy/modules/joborders/validator.js similarity index 100% rename from modules/joborders/validator.js rename to legacy/modules/joborders/validator.js diff --git a/modules/lists/List.tpl b/legacy/modules/lists/List.tpl similarity index 100% rename from modules/lists/List.tpl rename to legacy/modules/lists/List.tpl diff --git a/modules/lists/Lists.tpl b/legacy/modules/lists/Lists.tpl similarity index 100% rename from modules/lists/Lists.tpl rename to legacy/modules/lists/Lists.tpl diff --git a/modules/lists/ListsUI.php b/legacy/modules/lists/ListsUI.php similarity index 100% rename from modules/lists/ListsUI.php rename to legacy/modules/lists/ListsUI.php diff --git a/modules/lists/QuickActionAddToListModal.tpl b/legacy/modules/lists/QuickActionAddToListModal.tpl similarity index 100% rename from modules/lists/QuickActionAddToListModal.tpl rename to legacy/modules/lists/QuickActionAddToListModal.tpl diff --git a/modules/lists/ajax/addToLists.php b/legacy/modules/lists/ajax/addToLists.php similarity index 100% rename from modules/lists/ajax/addToLists.php rename to legacy/modules/lists/ajax/addToLists.php diff --git a/modules/lists/ajax/deleteList.php b/legacy/modules/lists/ajax/deleteList.php similarity index 100% rename from modules/lists/ajax/deleteList.php rename to legacy/modules/lists/ajax/deleteList.php diff --git a/modules/lists/ajax/editListName.php b/legacy/modules/lists/ajax/editListName.php similarity index 100% rename from modules/lists/ajax/editListName.php rename to legacy/modules/lists/ajax/editListName.php diff --git a/modules/lists/ajax/newList.php b/legacy/modules/lists/ajax/newList.php similarity index 100% rename from modules/lists/ajax/newList.php rename to legacy/modules/lists/ajax/newList.php diff --git a/modules/lists/dataGrids.php b/legacy/modules/lists/dataGrids.php similarity index 100% rename from modules/lists/dataGrids.php rename to legacy/modules/lists/dataGrids.php diff --git a/modules/login/ForgotPassword.tpl b/legacy/modules/login/ForgotPassword.tpl similarity index 100% rename from modules/login/ForgotPassword.tpl rename to legacy/modules/login/ForgotPassword.tpl diff --git a/modules/login/Login.tpl b/legacy/modules/login/Login.tpl similarity index 100% rename from modules/login/Login.tpl rename to legacy/modules/login/Login.tpl diff --git a/modules/login/LoginUI.php b/legacy/modules/login/LoginUI.php similarity index 100% rename from modules/login/LoginUI.php rename to legacy/modules/login/LoginUI.php diff --git a/modules/login/NoCookiesModal.tpl b/legacy/modules/login/NoCookiesModal.tpl similarity index 100% rename from modules/login/NoCookiesModal.tpl rename to legacy/modules/login/NoCookiesModal.tpl diff --git a/modules/login/login.css b/legacy/modules/login/login.css similarity index 100% rename from modules/login/login.css rename to legacy/modules/login/login.css diff --git a/modules/login/validator.js b/legacy/modules/login/validator.js similarity index 100% rename from modules/login/validator.js rename to legacy/modules/login/validator.js diff --git a/modules/login/wizard/Email.tpl b/legacy/modules/login/wizard/Email.tpl similarity index 100% rename from modules/login/wizard/Email.tpl rename to legacy/modules/login/wizard/Email.tpl diff --git a/modules/login/wizard/Intro.tpl b/legacy/modules/login/wizard/Intro.tpl similarity index 100% rename from modules/login/wizard/Intro.tpl rename to legacy/modules/login/wizard/Intro.tpl diff --git a/modules/login/wizard/Localization.tpl b/legacy/modules/login/wizard/Localization.tpl similarity index 100% rename from modules/login/wizard/Localization.tpl rename to legacy/modules/login/wizard/Localization.tpl diff --git a/modules/login/wizard/Password.tpl b/legacy/modules/login/wizard/Password.tpl similarity index 100% rename from modules/login/wizard/Password.tpl rename to legacy/modules/login/wizard/Password.tpl diff --git a/modules/login/wizard/SiteName.tpl b/legacy/modules/login/wizard/SiteName.tpl similarity index 100% rename from modules/login/wizard/SiteName.tpl rename to legacy/modules/login/wizard/SiteName.tpl diff --git a/modules/login/wizard/Users.tpl b/legacy/modules/login/wizard/Users.tpl similarity index 100% rename from modules/login/wizard/Users.tpl rename to legacy/modules/login/wizard/Users.tpl diff --git a/modules/queue/QueueUI.php b/legacy/modules/queue/QueueUI.php similarity index 100% rename from modules/queue/QueueUI.php rename to legacy/modules/queue/QueueUI.php diff --git a/modules/queue/constants.php b/legacy/modules/queue/constants.php similarity index 100% rename from modules/queue/constants.php rename to legacy/modules/queue/constants.php diff --git a/modules/queue/lib/Task.php b/legacy/modules/queue/lib/Task.php similarity index 100% rename from modules/queue/lib/Task.php rename to legacy/modules/queue/lib/Task.php diff --git a/modules/queue/tasks.php b/legacy/modules/queue/tasks.php similarity index 100% rename from modules/queue/tasks.php rename to legacy/modules/queue/tasks.php diff --git a/modules/queue/tasks/CleanExceptions.php b/legacy/modules/queue/tasks/CleanExceptions.php similarity index 100% rename from modules/queue/tasks/CleanExceptions.php rename to legacy/modules/queue/tasks/CleanExceptions.php diff --git a/modules/queue/tasks/SampleRecurring.php b/legacy/modules/queue/tasks/SampleRecurring.php similarity index 100% rename from modules/queue/tasks/SampleRecurring.php rename to legacy/modules/queue/tasks/SampleRecurring.php diff --git a/modules/queue/tasks/SampleTask.php b/legacy/modules/queue/tasks/SampleTask.php similarity index 100% rename from modules/queue/tasks/SampleTask.php rename to legacy/modules/queue/tasks/SampleTask.php diff --git a/modules/queue/tasks/lib/Task.php b/legacy/modules/queue/tasks/lib/Task.php similarity index 100% rename from modules/queue/tasks/lib/Task.php rename to legacy/modules/queue/tasks/lib/Task.php diff --git a/modules/queue/tasks/tasks.php b/legacy/modules/queue/tasks/tasks.php similarity index 100% rename from modules/queue/tasks/tasks.php rename to legacy/modules/queue/tasks/tasks.php diff --git a/modules/reports/EEOReport.tpl b/legacy/modules/reports/EEOReport.tpl similarity index 100% rename from modules/reports/EEOReport.tpl rename to legacy/modules/reports/EEOReport.tpl diff --git a/modules/reports/Error.tpl b/legacy/modules/reports/Error.tpl similarity index 100% rename from modules/reports/Error.tpl rename to legacy/modules/reports/Error.tpl diff --git a/modules/reports/GraphView.tpl b/legacy/modules/reports/GraphView.tpl similarity index 93% rename from modules/reports/GraphView.tpl rename to legacy/modules/reports/GraphView.tpl index 1b62170f3..4012aa88c 100755 --- a/modules/reports/GraphView.tpl +++ b/legacy/modules/reports/GraphView.tpl @@ -5,8 +5,8 @@ CATS - Reports - - + + diff --git a/modules/reports/JobOrderReport.tpl b/legacy/modules/reports/JobOrderReport.tpl similarity index 100% rename from modules/reports/JobOrderReport.tpl rename to legacy/modules/reports/JobOrderReport.tpl diff --git a/modules/reports/NewDataItems.tpl b/legacy/modules/reports/NewDataItems.tpl similarity index 100% rename from modules/reports/NewDataItems.tpl rename to legacy/modules/reports/NewDataItems.tpl diff --git a/modules/reports/PlacedReport.tpl b/legacy/modules/reports/PlacedReport.tpl similarity index 100% rename from modules/reports/PlacedReport.tpl rename to legacy/modules/reports/PlacedReport.tpl diff --git a/modules/reports/Reports.tpl b/legacy/modules/reports/Reports.tpl similarity index 100% rename from modules/reports/Reports.tpl rename to legacy/modules/reports/Reports.tpl diff --git a/modules/reports/ReportsUI.php b/legacy/modules/reports/ReportsUI.php similarity index 100% rename from modules/reports/ReportsUI.php rename to legacy/modules/reports/ReportsUI.php diff --git a/modules/reports/SubmissionReport.tpl b/legacy/modules/reports/SubmissionReport.tpl similarity index 100% rename from modules/reports/SubmissionReport.tpl rename to legacy/modules/reports/SubmissionReport.tpl diff --git a/modules/rss/RssUI.php b/legacy/modules/rss/RssUI.php similarity index 100% rename from modules/rss/RssUI.php rename to legacy/modules/rss/RssUI.php diff --git a/modules/settings/AddUser.tpl b/legacy/modules/settings/AddUser.tpl similarity index 100% rename from modules/settings/AddUser.tpl rename to legacy/modules/settings/AddUser.tpl diff --git a/modules/settings/Administration.tpl b/legacy/modules/settings/Administration.tpl similarity index 100% rename from modules/settings/Administration.tpl rename to legacy/modules/settings/Administration.tpl diff --git a/modules/settings/Backup.tpl b/legacy/modules/settings/Backup.tpl similarity index 100% rename from modules/settings/Backup.tpl rename to legacy/modules/settings/Backup.tpl diff --git a/modules/settings/CareerPortalQuestionnaire.tpl b/legacy/modules/settings/CareerPortalQuestionnaire.tpl similarity index 100% rename from modules/settings/CareerPortalQuestionnaire.tpl rename to legacy/modules/settings/CareerPortalQuestionnaire.tpl diff --git a/modules/settings/CareerPortalQuestionnaireShow.tpl b/legacy/modules/settings/CareerPortalQuestionnaireShow.tpl similarity index 100% rename from modules/settings/CareerPortalQuestionnaireShow.tpl rename to legacy/modules/settings/CareerPortalQuestionnaireShow.tpl diff --git a/modules/settings/CareerPortalSettings.tpl b/legacy/modules/settings/CareerPortalSettings.tpl similarity index 100% rename from modules/settings/CareerPortalSettings.tpl rename to legacy/modules/settings/CareerPortalSettings.tpl diff --git a/modules/settings/CareerPortalTemplateEdit.tpl b/legacy/modules/settings/CareerPortalTemplateEdit.tpl similarity index 100% rename from modules/settings/CareerPortalTemplateEdit.tpl rename to legacy/modules/settings/CareerPortalTemplateEdit.tpl diff --git a/modules/settings/ChangePassword.tpl b/legacy/modules/settings/ChangePassword.tpl similarity index 100% rename from modules/settings/ChangePassword.tpl rename to legacy/modules/settings/ChangePassword.tpl diff --git a/modules/settings/CustomizeCalendar.tpl b/legacy/modules/settings/CustomizeCalendar.tpl similarity index 100% rename from modules/settings/CustomizeCalendar.tpl rename to legacy/modules/settings/CustomizeCalendar.tpl diff --git a/modules/settings/CustomizeExtraFields.tpl b/legacy/modules/settings/CustomizeExtraFields.tpl similarity index 100% rename from modules/settings/CustomizeExtraFields.tpl rename to legacy/modules/settings/CustomizeExtraFields.tpl diff --git a/modules/settings/CustomizeReports.tpl b/legacy/modules/settings/CustomizeReports.tpl similarity index 100% rename from modules/settings/CustomizeReports.tpl rename to legacy/modules/settings/CustomizeReports.tpl diff --git a/modules/settings/EEOEOCSettings.tpl b/legacy/modules/settings/EEOEOCSettings.tpl similarity index 100% rename from modules/settings/EEOEOCSettings.tpl rename to legacy/modules/settings/EEOEOCSettings.tpl diff --git a/modules/settings/EditUser.tpl b/legacy/modules/settings/EditUser.tpl similarity index 100% rename from modules/settings/EditUser.tpl rename to legacy/modules/settings/EditUser.tpl diff --git a/modules/settings/EmailSettings.tpl b/legacy/modules/settings/EmailSettings.tpl similarity index 100% rename from modules/settings/EmailSettings.tpl rename to legacy/modules/settings/EmailSettings.tpl diff --git a/modules/settings/EmailTemplates.tpl b/legacy/modules/settings/EmailTemplates.tpl similarity index 100% rename from modules/settings/EmailTemplates.tpl rename to legacy/modules/settings/EmailTemplates.tpl diff --git a/modules/settings/Error.tpl b/legacy/modules/settings/Error.tpl similarity index 100% rename from modules/settings/Error.tpl rename to legacy/modules/settings/Error.tpl diff --git a/modules/settings/ItemHistory.tpl b/legacy/modules/settings/ItemHistory.tpl similarity index 100% rename from modules/settings/ItemHistory.tpl rename to legacy/modules/settings/ItemHistory.tpl diff --git a/modules/settings/Localization.tpl b/legacy/modules/settings/Localization.tpl similarity index 100% rename from modules/settings/Localization.tpl rename to legacy/modules/settings/Localization.tpl diff --git a/modules/settings/LoginActivity.tpl b/legacy/modules/settings/LoginActivity.tpl similarity index 100% rename from modules/settings/LoginActivity.tpl rename to legacy/modules/settings/LoginActivity.tpl diff --git a/modules/settings/MyProfile.tpl b/legacy/modules/settings/MyProfile.tpl similarity index 100% rename from modules/settings/MyProfile.tpl rename to legacy/modules/settings/MyProfile.tpl diff --git a/modules/settings/NewInstallWizard.tpl b/legacy/modules/settings/NewInstallWizard.tpl similarity index 100% rename from modules/settings/NewInstallWizard.tpl rename to legacy/modules/settings/NewInstallWizard.tpl diff --git a/modules/settings/NewVersionCheck.tpl b/legacy/modules/settings/NewVersionCheck.tpl similarity index 100% rename from modules/settings/NewVersionCheck.tpl rename to legacy/modules/settings/NewVersionCheck.tpl diff --git a/modules/settings/Passwords.tpl b/legacy/modules/settings/Passwords.tpl similarity index 100% rename from modules/settings/Passwords.tpl rename to legacy/modules/settings/Passwords.tpl diff --git a/modules/settings/PreviewPage.tpl b/legacy/modules/settings/PreviewPage.tpl similarity index 100% rename from modules/settings/PreviewPage.tpl rename to legacy/modules/settings/PreviewPage.tpl diff --git a/modules/settings/PreviewPageTop.tpl b/legacy/modules/settings/PreviewPageTop.tpl similarity index 100% rename from modules/settings/PreviewPageTop.tpl rename to legacy/modules/settings/PreviewPageTop.tpl diff --git a/modules/settings/Settings.js b/legacy/modules/settings/Settings.js similarity index 100% rename from modules/settings/Settings.js rename to legacy/modules/settings/Settings.js diff --git a/modules/settings/SettingsUI.php b/legacy/modules/settings/SettingsUI.php similarity index 100% rename from modules/settings/SettingsUI.php rename to legacy/modules/settings/SettingsUI.php diff --git a/modules/settings/ShowUser.tpl b/legacy/modules/settings/ShowUser.tpl similarity index 100% rename from modules/settings/ShowUser.tpl rename to legacy/modules/settings/ShowUser.tpl diff --git a/modules/settings/SiteName.tpl b/legacy/modules/settings/SiteName.tpl similarity index 100% rename from modules/settings/SiteName.tpl rename to legacy/modules/settings/SiteName.tpl diff --git a/modules/settings/SystemInformation.tpl b/legacy/modules/settings/SystemInformation.tpl similarity index 100% rename from modules/settings/SystemInformation.tpl rename to legacy/modules/settings/SystemInformation.tpl diff --git a/modules/settings/Users.tpl b/legacy/modules/settings/Users.tpl similarity index 100% rename from modules/settings/Users.tpl rename to legacy/modules/settings/Users.tpl diff --git a/modules/settings/ajax/backup.php b/legacy/modules/settings/ajax/backup.php similarity index 100% rename from modules/settings/ajax/backup.php rename to legacy/modules/settings/ajax/backup.php diff --git a/modules/settings/downloads.css b/legacy/modules/settings/downloads.css similarity index 100% rename from modules/settings/downloads.css rename to legacy/modules/settings/downloads.css diff --git a/modules/settings/tags.tpl b/legacy/modules/settings/tags.tpl similarity index 100% rename from modules/settings/tags.tpl rename to legacy/modules/settings/tags.tpl diff --git a/modules/settings/validator.js b/legacy/modules/settings/validator.js similarity index 100% rename from modules/settings/validator.js rename to legacy/modules/settings/validator.js diff --git a/modules/wizard/Show.tpl b/legacy/modules/wizard/Show.tpl similarity index 96% rename from modules/wizard/Show.tpl rename to legacy/modules/wizard/Show.tpl index ea799d8df..7a6f6b627 100755 --- a/modules/wizard/Show.tpl +++ b/legacy/modules/wizard/Show.tpl @@ -4,8 +4,8 @@ CATS Applicant Tracking System - - + + jsInclude != ''): ?> diff --git a/modules/wizard/WizardUI.php b/legacy/modules/wizard/WizardUI.php similarity index 100% rename from modules/wizard/WizardUI.php rename to legacy/modules/wizard/WizardUI.php diff --git a/modules/wizard/style.css b/legacy/modules/wizard/style.css similarity index 100% rename from modules/wizard/style.css rename to legacy/modules/wizard/style.css diff --git a/modules/wizard/wizard.js b/legacy/modules/wizard/wizard.js similarity index 100% rename from modules/wizard/wizard.js rename to legacy/modules/wizard/wizard.js diff --git a/modules/xml/XmlUI.php b/legacy/modules/xml/XmlUI.php similarity index 100% rename from modules/xml/XmlUI.php rename to legacy/modules/xml/XmlUI.php diff --git a/modules/xml/xml_templates/indeed.xtpl b/legacy/modules/xml/xml_templates/indeed.xtpl similarity index 100% rename from modules/xml/xml_templates/indeed.xtpl rename to legacy/modules/xml/xml_templates/indeed.xtpl diff --git a/modules/xml/xml_templates/rss.xtpl b/legacy/modules/xml/xml_templates/rss.xtpl similarity index 100% rename from modules/xml/xml_templates/rss.xtpl rename to legacy/modules/xml/xml_templates/rss.xtpl diff --git a/modules/xml/xml_templates/simplyhired.xtpl b/legacy/modules/xml/xml_templates/simplyhired.xtpl similarity index 100% rename from modules/xml/xml_templates/simplyhired.xtpl rename to legacy/modules/xml/xml_templates/simplyhired.xtpl diff --git a/not-ie.css b/legacy/not-ie.css similarity index 100% rename from not-ie.css rename to legacy/not-ie.css diff --git a/optional-updates/latest-sphinx-search/README.MD b/legacy/optional-updates/latest-sphinx-search/README.MD similarity index 100% rename from optional-updates/latest-sphinx-search/README.MD rename to legacy/optional-updates/latest-sphinx-search/README.MD diff --git a/optional-updates/latest-sphinx-search/Search.php b/legacy/optional-updates/latest-sphinx-search/Search.php similarity index 100% rename from optional-updates/latest-sphinx-search/Search.php rename to legacy/optional-updates/latest-sphinx-search/Search.php diff --git a/optional-updates/latest-sphinx-search/config.php b/legacy/optional-updates/latest-sphinx-search/config.php similarity index 100% rename from optional-updates/latest-sphinx-search/config.php rename to legacy/optional-updates/latest-sphinx-search/config.php diff --git a/optional-updates/latest-sphinx-search/sphinx.conf b/legacy/optional-updates/latest-sphinx-search/sphinx.conf similarity index 100% rename from optional-updates/latest-sphinx-search/sphinx.conf rename to legacy/optional-updates/latest-sphinx-search/sphinx.conf diff --git a/phpunit.xml.dist b/legacy/phpunit.xml.dist similarity index 100% rename from phpunit.xml.dist rename to legacy/phpunit.xml.dist diff --git a/rebuild_old_docs.php b/legacy/rebuild_old_docs.php similarity index 100% rename from rebuild_old_docs.php rename to legacy/rebuild_old_docs.php diff --git a/legacy/reports/index.html b/legacy/reports/index.html new file mode 100644 index 000000000..e69de29bb diff --git a/rss/index.php b/legacy/rss/index.php similarity index 100% rename from rss/index.php rename to legacy/rss/index.php diff --git a/scripts/countcode.sh b/legacy/scripts/countcode.sh similarity index 100% rename from scripts/countcode.sh rename to legacy/scripts/countcode.sh diff --git a/scripts/countfilecode.awk b/legacy/scripts/countfilecode.awk similarity index 100% rename from scripts/countfilecode.awk rename to legacy/scripts/countfilecode.awk diff --git a/legacy/scripts/index.php b/legacy/scripts/index.php new file mode 100755 index 000000000..e69de29bb diff --git a/scripts/killwhitespace.sh b/legacy/scripts/killwhitespace.sh similarity index 100% rename from scripts/killwhitespace.sh rename to legacy/scripts/killwhitespace.sh diff --git a/scripts/makeBackup.php b/legacy/scripts/makeBackup.php similarity index 100% rename from scripts/makeBackup.php rename to legacy/scripts/makeBackup.php diff --git a/scripts/mysql_get_prod_db.sh b/legacy/scripts/mysql_get_prod_db.sh similarity index 100% rename from scripts/mysql_get_prod_db.sh rename to legacy/scripts/mysql_get_prod_db.sh diff --git a/scripts/newversion.sh b/legacy/scripts/newversion.sh similarity index 100% rename from scripts/newversion.sh rename to legacy/scripts/newversion.sh diff --git a/scripts/sphinx_reindex.sh b/legacy/scripts/sphinx_reindex.sh similarity index 100% rename from scripts/sphinx_reindex.sh rename to legacy/scripts/sphinx_reindex.sh diff --git a/scripts/sphinx_restart.sh b/legacy/scripts/sphinx_restart.sh similarity index 100% rename from scripts/sphinx_restart.sh rename to legacy/scripts/sphinx_restart.sh diff --git a/scripts/sphinx_rotate.sh b/legacy/scripts/sphinx_rotate.sh similarity index 100% rename from scripts/sphinx_rotate.sh rename to legacy/scripts/sphinx_rotate.sh diff --git a/scripts/sphinx_update_delta.sh b/legacy/scripts/sphinx_update_delta.sh similarity index 100% rename from scripts/sphinx_update_delta.sh rename to legacy/scripts/sphinx_update_delta.sh diff --git a/scripts/sphinxtest.php b/legacy/scripts/sphinxtest.php similarity index 100% rename from scripts/sphinxtest.php rename to legacy/scripts/sphinxtest.php diff --git a/scripts/storeDeletedAttachments.sh b/legacy/scripts/storeDeletedAttachments.sh similarity index 100% rename from scripts/storeDeletedAttachments.sh rename to legacy/scripts/storeDeletedAttachments.sh diff --git a/scripts/svnkeywords.sh b/legacy/scripts/svnkeywords.sh similarity index 100% rename from scripts/svnkeywords.sh rename to legacy/scripts/svnkeywords.sh diff --git a/src/OpenCATS/Entity/Company.php b/legacy/src/OpenCATS/Entity/Company.php similarity index 100% rename from src/OpenCATS/Entity/Company.php rename to legacy/src/OpenCATS/Entity/Company.php diff --git a/src/OpenCATS/Entity/CompanyRepository.php b/legacy/src/OpenCATS/Entity/CompanyRepository.php similarity index 100% rename from src/OpenCATS/Entity/CompanyRepository.php rename to legacy/src/OpenCATS/Entity/CompanyRepository.php diff --git a/src/OpenCATS/Entity/CompanyRepositoryException.php b/legacy/src/OpenCATS/Entity/CompanyRepositoryException.php similarity index 100% rename from src/OpenCATS/Entity/CompanyRepositoryException.php rename to legacy/src/OpenCATS/Entity/CompanyRepositoryException.php diff --git a/src/OpenCATS/Entity/JobOrder.php b/legacy/src/OpenCATS/Entity/JobOrder.php similarity index 100% rename from src/OpenCATS/Entity/JobOrder.php rename to legacy/src/OpenCATS/Entity/JobOrder.php diff --git a/src/OpenCATS/Entity/JobOrderRepository.php b/legacy/src/OpenCATS/Entity/JobOrderRepository.php similarity index 100% rename from src/OpenCATS/Entity/JobOrderRepository.php rename to legacy/src/OpenCATS/Entity/JobOrderRepository.php diff --git a/src/OpenCATS/Entity/JobOrderRepositoryException.php b/legacy/src/OpenCATS/Entity/JobOrderRepositoryException.php similarity index 100% rename from src/OpenCATS/Entity/JobOrderRepositoryException.php rename to legacy/src/OpenCATS/Entity/JobOrderRepositoryException.php diff --git a/src/OpenCATS/Tests/Behat/BrowserKit/StreamHttpBrowser.php b/legacy/src/OpenCATS/Tests/Behat/BrowserKit/StreamHttpBrowser.php similarity index 100% rename from src/OpenCATS/Tests/Behat/BrowserKit/StreamHttpBrowser.php rename to legacy/src/OpenCATS/Tests/Behat/BrowserKit/StreamHttpBrowser.php diff --git a/src/OpenCATS/Tests/Behat/ServiceContainer/Driver/BrowserKitFactory.php b/legacy/src/OpenCATS/Tests/Behat/ServiceContainer/Driver/BrowserKitFactory.php similarity index 100% rename from src/OpenCATS/Tests/Behat/ServiceContainer/Driver/BrowserKitFactory.php rename to legacy/src/OpenCATS/Tests/Behat/ServiceContainer/Driver/BrowserKitFactory.php diff --git a/src/OpenCATS/Tests/Behat/ServiceContainer/MinkExtension.php b/legacy/src/OpenCATS/Tests/Behat/ServiceContainer/MinkExtension.php similarity index 100% rename from src/OpenCATS/Tests/Behat/ServiceContainer/MinkExtension.php rename to legacy/src/OpenCATS/Tests/Behat/ServiceContainer/MinkExtension.php diff --git a/src/OpenCATS/Tests/Fixtures/SampleText.txt b/legacy/src/OpenCATS/Tests/Fixtures/SampleText.txt similarity index 100% rename from src/OpenCATS/Tests/Fixtures/SampleText.txt rename to legacy/src/OpenCATS/Tests/Fixtures/SampleText.txt diff --git a/src/OpenCATS/Tests/IntegrationTests/DatabaseConnectionTest.php b/legacy/src/OpenCATS/Tests/IntegrationTests/DatabaseConnectionTest.php similarity index 100% rename from src/OpenCATS/Tests/IntegrationTests/DatabaseConnectionTest.php rename to legacy/src/OpenCATS/Tests/IntegrationTests/DatabaseConnectionTest.php diff --git a/src/OpenCATS/Tests/IntegrationTests/DatabaseSearchTest.php b/legacy/src/OpenCATS/Tests/IntegrationTests/DatabaseSearchTest.php similarity index 100% rename from src/OpenCATS/Tests/IntegrationTests/DatabaseSearchTest.php rename to legacy/src/OpenCATS/Tests/IntegrationTests/DatabaseSearchTest.php diff --git a/src/OpenCATS/Tests/IntegrationTests/DatabaseTestCase.php b/legacy/src/OpenCATS/Tests/IntegrationTests/DatabaseTestCase.php similarity index 100% rename from src/OpenCATS/Tests/IntegrationTests/DatabaseTestCase.php rename to legacy/src/OpenCATS/Tests/IntegrationTests/DatabaseTestCase.php diff --git a/src/OpenCATS/Tests/UnitTests/AJAXInterfaceTest.php b/legacy/src/OpenCATS/Tests/UnitTests/AJAXInterfaceTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/AJAXInterfaceTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/AJAXInterfaceTest.php diff --git a/src/OpenCATS/Tests/UnitTests/AddressParserTest.php b/legacy/src/OpenCATS/Tests/UnitTests/AddressParserTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/AddressParserTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/AddressParserTest.php diff --git a/src/OpenCATS/Tests/UnitTests/ArrayUtilityTest.php b/legacy/src/OpenCATS/Tests/UnitTests/ArrayUtilityTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/ArrayUtilityTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/ArrayUtilityTest.php diff --git a/src/OpenCATS/Tests/UnitTests/BrowserDetectionTest.php b/legacy/src/OpenCATS/Tests/UnitTests/BrowserDetectionTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/BrowserDetectionTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/BrowserDetectionTest.php diff --git a/src/OpenCATS/Tests/UnitTests/CompanyRepositoryTest.php b/legacy/src/OpenCATS/Tests/UnitTests/CompanyRepositoryTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/CompanyRepositoryTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/CompanyRepositoryTest.php diff --git a/src/OpenCATS/Tests/UnitTests/CompanyTest.php b/legacy/src/OpenCATS/Tests/UnitTests/CompanyTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/CompanyTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/CompanyTest.php diff --git a/src/OpenCATS/Tests/UnitTests/DateUtilityTest.php b/legacy/src/OpenCATS/Tests/UnitTests/DateUtilityTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/DateUtilityTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/DateUtilityTest.php diff --git a/src/OpenCATS/Tests/UnitTests/FileUtilityTest.php b/legacy/src/OpenCATS/Tests/UnitTests/FileUtilityTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/FileUtilityTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/FileUtilityTest.php diff --git a/src/OpenCATS/Tests/UnitTests/JobOrderTest.php b/legacy/src/OpenCATS/Tests/UnitTests/JobOrderTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/JobOrderTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/JobOrderTest.php diff --git a/src/OpenCATS/Tests/UnitTests/ResultSetUtilityTest.php b/legacy/src/OpenCATS/Tests/UnitTests/ResultSetUtilityTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/ResultSetUtilityTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/ResultSetUtilityTest.php diff --git a/src/OpenCATS/Tests/UnitTests/SessionCSRFTest.php b/legacy/src/OpenCATS/Tests/UnitTests/SessionCSRFTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/SessionCSRFTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/SessionCSRFTest.php diff --git a/src/OpenCATS/Tests/UnitTests/StringUtilityTest.php b/legacy/src/OpenCATS/Tests/UnitTests/StringUtilityTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/StringUtilityTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/StringUtilityTest.php diff --git a/src/OpenCATS/Tests/UnitTests/TemplateEscapeTest.php b/legacy/src/OpenCATS/Tests/UnitTests/TemplateEscapeTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/TemplateEscapeTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/TemplateEscapeTest.php diff --git a/src/OpenCATS/Tests/UnitTests/VCardTest.php b/legacy/src/OpenCATS/Tests/UnitTests/VCardTest.php similarity index 100% rename from src/OpenCATS/Tests/UnitTests/VCardTest.php rename to legacy/src/OpenCATS/Tests/UnitTests/VCardTest.php diff --git a/src/OpenCATS/Tests/bootstrap.php b/legacy/src/OpenCATS/Tests/bootstrap.php similarity index 55% rename from src/OpenCATS/Tests/bootstrap.php rename to legacy/src/OpenCATS/Tests/bootstrap.php index 5daac1f15..fafd27403 100644 --- a/src/OpenCATS/Tests/bootstrap.php +++ b/legacy/src/OpenCATS/Tests/bootstrap.php @@ -1,6 +1,6 @@ + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + + + + diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 000000000..a4dc9dfa0 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,38 @@ +# Legacy OpenCATS compatibility headers +# These mirror the legacy .htaccess behavior while requests enter through public/ + + Header always set X-Content-Type-Options "nosniff" + Header always set Referrer-Policy "strict-origin-when-cross-origin" + Header always set Permissions-Policy "camera=(), microphone=(), geolocation=(), payment=(), usb=()" + Header always set X-Frame-Options "SAMEORIGIN" + + # The Career Portal may be embedded into external websites using an iframe. + SetEnvIf Request_URI "^/careers(/|$)" OPENCATS_CAREERS_PORTAL + Header always unset X-Frame-Options env=OPENCATS_CAREERS_PORTAL + + + + + 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/images/favicon.ico b/public/favicon.ico old mode 100755 new mode 100644 similarity index 100% rename from images/favicon.ico rename to public/favicon.ico diff --git a/public/index.php b/public/index.php new file mode 100644 index 000000000..ee8f07e99 --- /dev/null +++ b/public/index.php @@ -0,0 +1,20 @@ +handleRequest(Request::capture()); diff --git a/robots.txt b/public/robots.txt similarity index 74% rename from robots.txt rename to public/robots.txt index 150329ecb..5f382d727 100644 --- a/robots.txt +++ b/public/robots.txt @@ -11,9 +11,9 @@ Allow: /careers/ # Static assets required by the public careers portal # Common static asset directories (adjust to match your installation if needed) -Allow: /js/ -Allow: /images/ -Allow: /main.css -Allow: /careersPage.css -Allow: /ie.css -Allow: /not-ie.css +Allow: /legacy/js/ +Allow: /legacy/images/ +Allow: /legacy/main.css +Allow: /legacy/careersPage.css +Allow: /legacy/ie.css +Allow: /legacy/not-ie.css diff --git a/resources/css/app.css b/resources/css/app.css new file mode 100644 index 000000000..3e6abeaba --- /dev/null +++ b/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/resources/js/app.js b/resources/js/app.js new file mode 100644 index 000000000..8337712ea --- /dev/null +++ b/resources/js/app.js @@ -0,0 +1 @@ +// diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php new file mode 100644 index 000000000..26e294ab7 --- /dev/null +++ b/resources/views/welcome.blade.php @@ -0,0 +1,223 @@ + + + + + + + {{ config('app.name', 'Laravel') }} + + @fonts + + + @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

+

With so many options available to you,
we suggest you start with the following:

+ + + +

+ v{{ app()->version() }} + + View changelog + + + + +

+
+
+ {{-- Laravel Logo --}} + + + + + + + + + + + {{-- 13 --}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + @if (Route::has('login')) + + @endif + + diff --git a/routes/console.php b/routes/console.php new file mode 100644 index 000000000..3c9adf1af --- /dev/null +++ b/routes/console.php @@ -0,0 +1,8 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); diff --git a/routes/web.php b/routes/web.php new file mode 100644 index 000000000..ebe92f750 --- /dev/null +++ b/routes/web.php @@ -0,0 +1,7 @@ +where('path', '.*'); diff --git a/storage/app/.gitignore b/storage/app/.gitignore new file mode 100644 index 000000000..fedb287fe --- /dev/null +++ b/storage/app/.gitignore @@ -0,0 +1,4 @@ +* +!private/ +!public/ +!.gitignore diff --git a/storage/app/private/.gitignore b/storage/app/private/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/storage/app/private/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/app/public/.gitignore b/storage/app/public/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/storage/app/public/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore new file mode 100644 index 000000000..05c4471f2 --- /dev/null +++ b/storage/framework/.gitignore @@ -0,0 +1,9 @@ +compiled.php +config.php +down +events.scanned.php +maintenance.php +routes.php +routes.scanned.php +schedule-* +services.json diff --git a/storage/framework/cache/.gitignore b/storage/framework/cache/.gitignore new file mode 100644 index 000000000..01e4a6cda --- /dev/null +++ b/storage/framework/cache/.gitignore @@ -0,0 +1,3 @@ +* +!data/ +!.gitignore diff --git a/storage/framework/cache/data/.gitignore b/storage/framework/cache/data/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/storage/framework/cache/data/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/sessions/.gitignore b/storage/framework/sessions/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/storage/framework/sessions/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/testing/.gitignore b/storage/framework/testing/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/storage/framework/testing/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/views/.gitignore b/storage/framework/views/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/storage/framework/views/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/logs/.gitignore b/storage/logs/.gitignore new file mode 100644 index 000000000..d6b7ef32c --- /dev/null +++ b/storage/logs/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100644 index 000000000..8364a84e2 --- /dev/null +++ b/tests/Feature/ExampleTest.php @@ -0,0 +1,19 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 000000000..fe1ffc2ff --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 000000000..1fd66d538 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,24 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; +import { bunny } from 'laravel-vite-plugin/fonts'; +import tailwindcss from '@tailwindcss/vite'; + +export default defineConfig({ + plugins: [ + laravel({ + input: ['resources/css/app.css', 'resources/js/app.js'], + refresh: true, + fonts: [ + bunny('Instrument Sans', { + weights: [400, 500, 600], + }), + ], + }), + tailwindcss(), + ], + server: { + watch: { + ignored: ['**/storage/framework/views/**'], + }, + }, +});