diff --git a/.docker/.gitignore b/.docker/.gitignore
index 4c49bd7..cdeab93 100644
--- a/.docker/.gitignore
+++ b/.docker/.gitignore
@@ -1 +1,3 @@
.env
+mysql/data
+sftp/data
\ No newline at end of file
diff --git a/.docker/apache2/Dockerfile b/.docker/apache2/Dockerfile
new file mode 100644
index 0000000..c5d02f4
--- /dev/null
+++ b/.docker/apache2/Dockerfile
@@ -0,0 +1,3 @@
+FROM ubuntu/apache2:latest
+
+RUN a2enmod proxy_fcgi
\ No newline at end of file
diff --git a/.docker/apache2/conf/apache2.conf b/.docker/apache2/conf/apache2.conf
new file mode 100644
index 0000000..fdf3ff9
--- /dev/null
+++ b/.docker/apache2/conf/apache2.conf
@@ -0,0 +1,33 @@
+# /etc/apache2/conf.d/example.com.conf
+
+ ServerName process-bundle-demo.localhost
+
+ # Uncomment the following line to force Apache to pass the Authorization
+ # header to PHP: required for "basic_auth" under PHP-FPM and FastCGI
+ #
+ # SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
+
+
+ # when using PHP-FPM as a unix socket
+ # SetHandler proxy:unix:/var/run/php/php7.4-fpm.sock|fcgi://dummy
+
+ # when PHP-FPM is configured to use TCP
+ SetHandler proxy:fcgi://php:9000
+
+
+ DocumentRoot /var/www/public
+
+ AllowOverride None
+ Require all granted
+ FallbackResource /index.php
+
+
+ # uncomment the following lines if you install assets as symlinks
+ # or run into problems when compiling LESS/Sass/CoffeeScript assets
+ #
+ # Options FollowSymlinks
+ #
+
+ ErrorLog /var/log/apache2/project_error.log
+ CustomLog /var/log/apache2/project_access.log combined
+
diff --git a/.docker/compose.yaml b/.docker/compose.yaml
new file mode 100644
index 0000000..96cc5a0
--- /dev/null
+++ b/.docker/compose.yaml
@@ -0,0 +1,91 @@
+x-base-php: &base-php
+ build:
+ context: php
+ args:
+ UID: ${UID:-1000}
+ GID: ${GID:-1000}
+ PHP_VERSION: ${PHP_VERSION:-8.2}
+ XDEBUG_VERSION: ${XDEBUG_VERSION:-3.2.0}
+ env_file: .env
+ volumes:
+ - ../:/var/www
+ extra_hosts:
+ - "host.docker.internal:host-gateway"
+ environment:
+ COMPOSER_HOME: /var/www/.composer
+ COMPOSER_MEMORY_LIMIT: -1
+ XDEBUG_MODE: ${XDEBUG_MODE:-off}
+ PHP_IDE_CONFIG: serverName=sandbox_symfony
+ XDEBUG_CONFIG: ${XDEBUG_CONFIG:-}
+
+x-base-apache2: &base-apache2
+ build:
+ context: apache2
+ args:
+ UID: ${UID:-1000}
+ GID: ${GID:-1000}
+ env_file: .env
+ volumes:
+ - ../:/var/www
+ - ./apache2/conf/apache2.conf:/etc/apache2/sites-available/000-default.conf
+ depends_on:
+ - php
+
+x-base-mysql: &base-mysql
+ build:
+ context: mysql
+ args:
+ UID: ${UID:-1000}
+ GID: ${GID:-1000}
+ MYSQL_VERSION: ${MYSQL_VERSION:-9.1.0}
+ env_file: .env
+ volumes:
+ - process_bundle_demo_data:/var/lib/mysql
+ environment:
+ MYSQL_ROOT_PASSWORD: root
+ MYSQL_DATABASE: app
+ MYSQL_USER: app
+ MYSQL_PASSWORD: app
+
+x-base-sftp: &base-sftp
+ image: atmoz/sftp
+ volumes:
+ - ./sftp/data:/home/sftp/data
+ environment:
+ SFTP_USERNAME: ${SFTP_USERNAME:-sftp}
+ SFTP_PASSWORD: ${SFTP_PASSWORD:-password}
+ command: ${SFTP_USERNAME:-sftp}:${SFTP_PASSWORD:-password}:${UID:-1000}:${GID:-1000}
+
+name: cleverage-process-bundle-demo
+
+services:
+ php:
+ <<: *base-php
+ tty: true
+ depends_on:
+ mysql:
+ condition: service_healthy
+
+ apache2:
+ <<: *base-apache2
+ tty: true
+ ports:
+ - "${HTTP_PORT:-80}:80"
+
+ mysql:
+ <<: *base-mysql
+ tty: true
+ healthcheck:
+ test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ]
+ timeout: 5s
+ retries: 100
+ ports:
+ - "${MYSQL_PORT:-3306}:3306"
+ sftp:
+ <<: *base-sftp
+ tty: true
+ ports:
+ - "${SFTP_PORT:-22}:22"
+
+volumes:
+ process_bundle_demo_data:
diff --git a/.docker/docker-compose.override.yml b/.docker/docker-compose.override.yml
deleted file mode 100644
index ccd5cd2..0000000
--- a/.docker/docker-compose.override.yml
+++ /dev/null
@@ -1 +0,0 @@
-version: "3.4"
\ No newline at end of file
diff --git a/.docker/docker-compose.override.yml.dist b/.docker/docker-compose.override.yml.dist
deleted file mode 100644
index ccd5cd2..0000000
--- a/.docker/docker-compose.override.yml.dist
+++ /dev/null
@@ -1 +0,0 @@
-version: "3.4"
\ No newline at end of file
diff --git a/.docker/docker-compose.yml b/.docker/docker-compose.yml
deleted file mode 100644
index 7d35486..0000000
--- a/.docker/docker-compose.yml
+++ /dev/null
@@ -1,58 +0,0 @@
-version: "3.4"
-
-x-base-php: &base-php
- build:
- context: ./php
- args:
- UID: ${UID:-1000}
- GID: ${GID:-1000}
- PHP_VERSION: ${PHP_VERSION:-8.2}
- XDEBUG_VERSION: ${XDEBUG_VERSION:-3.2.0}
- DOCKER_HTTP_PORT: ${DOCKER_HTTP_PORT:-8080}
- env_file: .env
- working_dir: ${VOLUME_ROOT:-/var/www/html}
- volumes:
- - ../:${VOLUME_ROOT:-/var/www/html}
- - ./php/ini/symfony.ini:/usr/local/etc/php/conf.d/99-symfony.ini
- - ./php/supervisor:/etc/supervisor/conf.d
- extra_hosts:
- - "host.docker.internal:host-gateway"
- environment:
- COMPOSER_HOME: ${VOLUME_ROOT:-/var/www/html}/.composer
- COMPOSER_MEMORY_LIMIT: -1
- HOME: ${VOLUME_ROOT:-/var/www/html}
- XDEBUG_MODE: ${XDEBUG_MODE:-off}
- PHP_IDE_CONFIG: serverName=sandbox_symfony
- XDEBUG_CONFIG: ${XDEBUG_CONFIG:-}
-
-services:
- php:
- <<: *base-php
- tty: true
- ports:
- - '${DOCKER_PORT_HTTP:-8080}:${DOCKER_PORT_HTTP:-8080}'
-
-# database:
-# image: postgres:${POSTGRES_VERSION:-15}-alpine
-# environment:
-# POSTGRES_DB: ${POSTGRES_DB:-app}
-# POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-!ChangeMe!}
-# POSTGRES_USER: ${POSTGRES_USER:-app}
-# volumes:
-# - database_data:/var/lib/postgresql/data:rw
-# ports:
-# - '5432:5432'
-# database:
-# image: mariadb:latest
-# environment:
-# MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-root}
-# MYSQL_DATABASE: ${MYSQL_DATABASE:-app}
-# MYSQL_USER: ${MYSQL_USER:-app}
-# MYSQL_PASSWORD: ${MYSQL_PASSWORD:-!ChangeMe!}
-# volumes:
-# - database_data:/var/lib/mysql:rw
-# ports:
-# - '3306:3306'
-
-volumes:
- database_data:
diff --git a/.docker/mysql/Dockerfile b/.docker/mysql/Dockerfile
new file mode 100644
index 0000000..ed0aa7c
--- /dev/null
+++ b/.docker/mysql/Dockerfile
@@ -0,0 +1,12 @@
+ARG MYSQL_VERSION=9.1.0
+FROM mysql:${MYSQL_VERSION}
+
+ARG UID
+ARG GID
+
+ENV TZ=Europe/Paris
+
+RUN usermod -u $UID mysql \
+ && groupmod -g $GID mysql
+
+USER mysql:mysql
diff --git a/.docker/php/Dockerfile b/.docker/php/Dockerfile
index e2ebced..cffb840 100644
--- a/.docker/php/Dockerfile
+++ b/.docker/php/Dockerfile
@@ -1,49 +1,47 @@
ARG PHP_VERSION=8.2
-FROM php:${PHP_VERSION}-fpm AS php
+FROM php:${PHP_VERSION}-fpm-alpine AS php
+
ARG XDEBUG_VERSION=3.1.4
-ARG DOCKER_HTTP_PORT=8000
-ENV DOCKER_HTTP_PORT=${DOCKER_HTTP_PORT}
-# Set user and group
-ARG UID=1000
-ARG GID=1000
-RUN usermod --uid ${UID} www-data && \
- groupmod --gid ${GID} www-data
+ARG UID
+ARG GID
-ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
-RUN chmod +x /usr/local/bin/install-php-extensions
-RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.deb.sh' | bash -E
+RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini"
+COPY /conf.d/ "$PHP_INI_DIR/conf.d/"
-# Install packages
-RUN apt-get update && apt-get install -y \
+RUN apk update && apk add \
+ tzdata \
+ shadow \
+ nano \
+ bash \
+ icu-dev \
+ libxml2-dev \
+ libzip-dev \
+ postgresql-dev \
+ unzip \
wget \
git \
- unzip \
- libicu-dev \
- libzip-dev \
- gosu \
- symfony-cli \
- supervisor \
- procps \
&& docker-php-ext-configure intl \
- && install-php-extensions \
- intl \
- pcntl \
- opcache \
- zip \
- gd \
- imagick \
- pdo \
- pdo_pgsql \
- pgsql \
- pdo_mysql \
- mysqli \
- sysvsem
-RUN pecl install xdebug-${XDEBUG_VERSION}
-## Install composer
-COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
+ && docker-php-ext-install intl soap opcache zip pdo pdo_pgsql pdo_mysql \
+ && docker-php-ext-enable soap opcache
+
+RUN apk --no-cache add pcre-dev ${PHPIZE_DEPS} \
+ && apk add --update linux-headers \
+ && pecl install xdebug-${XDEBUG_VERSION} \
+ && apk del pcre-dev ${PHPIZE_DEPS}
+
+RUN ln -s /usr/share/zoneinfo/Europe/Paris /etc/localtime \
+ && sed -i "s/^;date.timezone =.*/date.timezone = Europe\/Paris/" $PHP_INI_DIR/php.ini
+
+COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
+
+RUN usermod -u $UID www-data \
+ && groupmod -g $GID www-data
+
+USER www-data:www-data
+
+WORKDIR /var/www
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
-RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT ["entrypoint.sh"]
-CMD service supervisor start;symfony server:stop --all;symfony server:ca:install;symfony serve --port=${DOCKER_HTTP_PORT};
+CMD ["php-fpm"]
diff --git a/.docker/php/conf.d/dev.ini b/.docker/php/conf.d/dev.ini
new file mode 100644
index 0000000..b166020
--- /dev/null
+++ b/.docker/php/conf.d/dev.ini
@@ -0,0 +1,9 @@
+display_errors = 1
+error_reporting = E_ALL
+
+opcache.validate_timestamps = 1
+opcache.revalidate_freq = 0
+
+memory_limit=512M
+post_max_size = 6M
+upload_max_filesize = 5M
diff --git a/.docker/php/entrypoint.sh b/.docker/php/entrypoint.sh
old mode 100644
new mode 100755
index f583464..d2551fd
--- a/.docker/php/entrypoint.sh
+++ b/.docker/php/entrypoint.sh
@@ -5,7 +5,4 @@ if [[ "${XDEBUG_MODE}" != "off" ]]; then
docker-php-ext-enable xdebug
fi
-[ "$1" == 'bin/console' ] || [ "$1" == 'bash' ] || [ "$1" == 'php' ] && \
- exec gosu www-data docker-php-entrypoint "$@"
-
exec docker-php-entrypoint "$@"
diff --git a/.docker/php/ini/symfony.ini b/.docker/php/ini/symfony.ini
deleted file mode 100644
index 0a18554..0000000
--- a/.docker/php/ini/symfony.ini
+++ /dev/null
@@ -1,16 +0,0 @@
-apc.enable_cli = 1
-date.timezone = Europe/Paris
-opcache.enable_cli = 1
-session.auto_start = Off
-short_open_tag = Off
-
-# http://symfony.com/doc/current/performance.html
-opcache.interned_strings_buffer = 16
-opcache.max_accelerated_files = 20000
-opcache.memory_consumption = 256
-realpath_cache_size = 4096K
-realpath_cache_ttl = 600
-
-memory_limit=512M
-post_max_size = 6M
-upload_max_filesize = 5M
diff --git a/.docker/php/supervisor/process_ui.conf b/.docker/php/supervisor/process_ui.conf
deleted file mode 100644
index 34a4ac0..0000000
--- a/.docker/php/supervisor/process_ui.conf
+++ /dev/null
@@ -1,12 +0,0 @@
-[program:process]
-command=php /var/www/html/bin/console messenger:consume execute_process
-autostart=false
-autorestart=true
-startretries=1
-startsecs=1
-redirect_stderr=true
-stderr_logfile=/var/log/supervisor.process-err.log
-stdout_logfile=/var/log/supervisor.process-out.log
-user=www-data
-killasgroup=true
-stopasgroup=true
\ No newline at end of file
diff --git a/.docker/sftp/data/.gitkeep b/.docker/sftp/data/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/.env b/.env
index 9248227..39bd341 100644
--- a/.env
+++ b/.env
@@ -15,8 +15,8 @@
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
###> symfony/framework-bundle ###
-APP_ENV=prod
-APP_SECRET=5d06ec43bb4fba3510e81575422626eb
+APP_ENV=dev
+APP_SECRET=
###< symfony/framework-bundle ###
###> symfony/messenger ###
@@ -30,8 +30,16 @@ MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
#
-DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
-# DATABASE_URL="mysql://app:!ChangeMe!@database:3306/app?serverVersion=8.0.32&charset=utf8mb4"
-# DATABASE_URL="mysql://app:!ChangeMe!@database:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
-#DATABASE_URL="postgresql://app:!ChangeMe!@database:5432/app?serverVersion=15&charset=utf8"
+# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
+DATABASE_URL="mysql://app:app@mysql:3306/app?serverVersion=9.1.0&charset=utf8mb4"
+# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
+# DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=16&charset=utf8"
###< doctrine/doctrine-bundle ###
+
+###> docker/atmoz-sftp ###
+SFTP_HOST=sftp
+SFTP_PORT=22
+SFTP_USERNAME=sftp
+SFTP_PASSWORD=password
+SFTP_ROOT=data
+###< docker/atmoz-sftp ###
\ No newline at end of file
diff --git a/.env.dev b/.env.dev
new file mode 100644
index 0000000..b2e94fb
--- /dev/null
+++ b/.env.dev
@@ -0,0 +1,4 @@
+
+###> symfony/framework-bundle ###
+APP_SECRET=956760cc4838bd97673f94ffec6eed30
+###< symfony/framework-bundle ###
diff --git a/.env.test b/.env.test
new file mode 100644
index 0000000..9e7162f
--- /dev/null
+++ b/.env.test
@@ -0,0 +1,6 @@
+# define your env variables for the test env here
+KERNEL_CLASS='App\Kernel'
+APP_SECRET='$ecretf0rt3st'
+SYMFONY_DEPRECATIONS_HELPER=999999
+PANTHER_APP_ENV=panther
+PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000..7711713
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,14 @@
+## Description
+
+
+
+## Requirements
+
+* Documentation updates
+ - [ ] Reference
+ - [ ] Changelog
+* [ ] Unit tests
+
+## Breaking changes
+
+
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..58db37d
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,14 @@
+## Description
+
+
+
+## Requirements
+
+* Documentation updates
+ - [ ] Reference
+ - [ ] Changelog
+* [ ] Unit tests
+
+## Breaking changes
+
+
diff --git a/.github/workflows/notifications.yml b/.github/workflows/notifications.yml
new file mode 100644
index 0000000..043d093
--- /dev/null
+++ b/.github/workflows/notifications.yml
@@ -0,0 +1,23 @@
+name: Rocket chat notifications
+
+# Controls when the action will run.
+on:
+ push:
+ tags:
+ - '*'
+
+jobs:
+ notification:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Get the tag short reference
+ id: get_tag
+ run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
+
+ - name: Rocket.Chat Notification
+ uses: madalozzo/Rocket.Chat.GitHub.Action.Notification@master
+ with:
+ type: success
+ job_name: "[cleverage/process-bundle-demo](https://github.com/cleverage/process-bundle-demo) : ${{ steps.get_tag.outputs.TAG }} has been released"
+ url: ${{ secrets.CLEVER_AGE_ROCKET_CHAT_WEBOOK_URL }}
diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml
new file mode 100644
index 0000000..9f1580f
--- /dev/null
+++ b/.github/workflows/quality.yml
@@ -0,0 +1,62 @@
+name: Quality
+
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+
+permissions:
+ contents: read
+
+jobs:
+ phpstan:
+ name: PHPStan
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ - name: Install PHP with extensions
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: '8.2'
+ coverage: none
+ tools: composer:v2
+ - name: Install Composer dependencies (locked)
+ uses: ramsey/composer-install@v3
+ - name: PHPStan
+ run: vendor/bin/phpstan --no-progress --memory-limit=1G analyse --error-format=github
+
+ php-cs-fixer:
+ name: PHP-CS-Fixer
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ - name: Install PHP with extensions
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: '8.2'
+ coverage: none
+ tools: composer:v2
+ - name: Install Composer dependencies (locked)
+ uses: ramsey/composer-install@v3
+ - name: PHP-CS-Fixer
+ run: vendor/bin/php-cs-fixer fix --diff --dry-run --show-progress=none
+
+ rector:
+ name: Rector
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+ - name: Install PHP with extensions
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: '8.2'
+ coverage: none
+ tools: composer:v2
+ - name: Install Composer dependencies (locked)
+ uses: ramsey/composer-install@v3
+ - name: Rector
+ run: vendor/bin/rector --no-progress-bar --dry-run
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..2d7e7a4
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,74 @@
+name: Test
+
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+
+permissions:
+ contents: read
+
+jobs:
+ test:
+ name: PHP ${{ matrix.php-version }} + ${{ matrix.dependencies }} + ${{ matrix.variant }}
+ runs-on: ubuntu-latest
+ continue-on-error: ${{ matrix.allowed-to-fail }}
+ env:
+ SYMFONY_REQUIRE: ${{matrix.symfony-require}}
+
+ strategy:
+ matrix:
+ php-version:
+ - '8.2'
+ - '8.3'
+ dependencies: [highest]
+ allowed-to-fail: [false]
+ symfony-require: ['']
+ variant: [normal]
+ include:
+ - php-version: '8.2'
+ dependencies: highest
+ allowed-to-fail: false
+ symfony-require: 6.4.*
+ variant: symfony/symfony:"6.4.*"
+ - php-version: '8.2'
+ dependencies: highest
+ allowed-to-fail: false
+ symfony-require: 7.1.*
+ variant: symfony/symfony:"7.1.*"
+ - php-version: '8.3'
+ dependencies: highest
+ allowed-to-fail: false
+ symfony-require: 6.4.*
+ variant: symfony/symfony:"6.4.*"
+ - php-version: '8.3'
+ dependencies: highest
+ allowed-to-fail: false
+ symfony-require: 7.1.*
+ variant: symfony/symfony:"7.1.*"
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ - name: Install PHP with extensions
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: ${{ matrix.php-version }}
+ coverage: pcov
+ tools: composer:v2, flex
+ - name: Add PHPUnit matcher
+ run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
+ - name: Install variant
+ if: matrix.variant != 'normal' && !startsWith(matrix.variant, 'symfony/symfony')
+ run: composer require ${{ matrix.variant }} --no-update
+ - name: Install Composer dependencies (${{ matrix.dependencies }})
+ uses: ramsey/composer-install@v3
+ with:
+ dependency-versions: ${{ matrix.dependencies }}
+ - name: Run Tests with coverage
+ run: vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover build/logs/clover.xml
+ #- name: Send coverage to Codecov
+ # uses: codecov/codecov-action@v4
+ # with:
+ # files: build/logs/clover.xml
diff --git a/.gitignore b/.gitignore
index 04725cc..6ea01d5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,6 @@
+/composer.lock
.idea
-.symfony5
.composer
-.bash_history
###> symfony/framework-bundle ###
/.env.local
@@ -18,6 +17,12 @@
/.php-cs-fixer.cache
###< friendsofphp/php-cs-fixer ###
-###> phpstan/phpstan ###
-phpstan.neon
-###< phpstan/phpstan ###
+###> symfony/phpunit-bridge ###
+.phpunit.cache
+/phpunit.xml
+###< symfony/phpunit-bridge ###
+
+###> phpunit/phpunit ###
+/phpunit.xml
+.phpunit.result.cache
+###< phpunit/phpunit ###
diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php
index 3788194..cecb9d4 100644
--- a/.php-cs-fixer.dist.php
+++ b/.php-cs-fixer.dist.php
@@ -1,13 +1,47 @@
in(__DIR__)
- ->exclude('var')
-;
+/*
+ * This file is part of the CleverAge/ProcessBundleDemo package.
+ *
+ * Copyright (c) Clever-Age
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+if (!file_exists(__DIR__.'/src')) {
+ exit(0);
+}
+
+$fileHeaderComment = <<<'EOF'
+ This file is part of the CleverAge/ProcessBundleDemo package.
+
+ Copyright (c) Clever-Age
+
+ For the full copyright and license information, please view the LICENSE
+ file that was distributed with this source code.
+ EOF;
return (new PhpCsFixer\Config())
->setRules([
+ '@PHP71Migration' => true,
+ '@PHP82Migration' => true,
+ '@PHPUnit75Migration:risky' => true,
'@Symfony' => true,
+ '@Symfony:risky' => true,
+ '@DoctrineAnnotation' => true,
+ 'protected_to_private' => false,
+ 'native_constant_invocation' => ['strict' => false],
+ 'header_comment' => ['header' => $fileHeaderComment],
+ 'modernize_strpos' => true,
+ 'get_class_to_class_keyword' => true,
])
- ->setFinder($finder)
+ ->setRiskyAllowed(true)
+ ->setFinder(
+ (new PhpCsFixer\Finder())
+ ->in(__DIR__.'/src')
+ ->in(__DIR__.'/tests')
+ ->append([__FILE__])
+ )
+ ->setCacheFile('.php-cs-fixer.cache')
;
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..4a12f61
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,52 @@
+Contributing
+============
+
+First of all, **thank you** for contributing, **you are awesome**!
+
+Here are a few rules to follow in order to ease code reviews, and discussions before
+maintainers accept and merge your work.
+
+You MUST run the quality & test suites.
+
+You SHOULD write (or update) unit tests.
+
+You SHOULD write documentation.
+
+Please, write [commit messages that make sense](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html),
+and [rebase your branch](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) before submitting your Pull Request.
+
+One may ask you to [squash your commits](https://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html)
+too. This is used to "clean" your Pull Request before merging it (we don't want
+commits such as `fix tests`, `fix 2`, `fix 3`, etc.).
+
+Thank you!
+
+## Running the quality & test suites
+
+Tests suite uses Docker environments in order to be idempotent to OS's. More than this
+PHP version is written inside the Dockerfile; this assures to test the bundle with
+the same resources. No need to have PHP installed.
+
+You only need Docker set it up.
+
+To allow testing environments more smooth we implemented **Makefile**.
+You have two commands available:
+
+```bash
+make quality
+```
+
+```bash
+make tests
+```
+
+## Deprecations notices
+
+When a feature should be deprecated, or when you have a breaking change for a future version, please :
+* [Fill an issue](https://github.com/cleverage/process-bundle-demo/issues/new)
+* Add TODO comments with the following format: `@TODO deprecated v1.0`
+* Trigger a deprecation error: `@trigger_error('This feature will be deprecated in v1.0', E_USER_DEPRECATED);`
+
+You can check which deprecation notice is triggered in tests
+* `make bash`
+* `SYMFONY_DEPRECATIONS_HELPER=0 ./vendor/bin/phpunit`
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..d32c6b7
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2015-2023 Clever-Age
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/Makefile b/Makefile
index 30a49ac..81cb910 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,10 @@
.ONESHELL:
SHELL := /bin/bash
-DOCKER_RUN_PHP = docker compose -f .docker/docker-compose.yml -f .docker/docker-compose.override.yml run --rm php "bash" "-c"
-DOCKER_COMPOSE = docker compose -f .docker/docker-compose.yml -f .docker/docker-compose.override.yml
+DOCKER_RUN_PHP = docker compose -f .docker/compose.yaml run --rm php "bash" "-c"
+DOCKER_COMPOSE = docker compose -f .docker/compose.yaml
-
-start: upd doctrine/migrations assets/install #[Global] Start application (but not consumers, use supervisorctl/start)
+start: upd doctrine/migrations doctrine/fixtures assets/install #[Global] Start application
src/vendor: #[Composer] install dependencies
$(DOCKER_RUN_PHP) "composer install --no-interaction"
@@ -19,6 +18,7 @@ up: #[Docker] Start containers
touch .docker/.env
make src/vendor
$(DOCKER_COMPOSE) up --remove-orphans
+
stop: #[Docker] Down containers
$(DOCKER_COMPOSE) stop
@@ -34,31 +34,38 @@ ps: # [Docker] Show running containers
bash: #[Docker] Connect to php container with current host user
$(DOCKER_COMPOSE) exec -u $$(id -u $${USER}):$$(id -g $${USER}) php bash
-supervisorctl/start: #[Supervisor] Start consumers (see .docker/php/supervisor/process_ui.conf)
- $(DOCKER_COMPOSE) exec -u root:root php supervisorctl start all
-
-supervisorctl/stop: #[Supervisor] Stop consumers (see .docker/php/supervisor/process_ui.conf)
- $(DOCKER_COMPOSE) exec -u root:root php supervisorctl stop all
-
-supervisorctl/status: #[Supervisor] Show consumers status (see .docker/php/supervisor/process_ui.conf)
- $(DOCKER_COMPOSE) exec -u root:root php supervisorctl status
-
logs: #[Docker] Show logs
$(DOCKER_COMPOSE) logs -f
doctrine/migrations: #[Symfony] Run database migration
- $(DOCKER_RUN_PHP) "bin/console do:mi:mi --no-interaction"
+ $(DOCKER_RUN_PHP) "bin/console doctrine:migrations:migrate --no-interaction"
+
+doctrine/fixtures: #[Symfony] Run database fixtures load
+ $(DOCKER_RUN_PHP) "bin/console doctrine:fixtures:load --no-interaction"
assets/install: #[Symfony] Install assets
$(DOCKER_RUN_PHP) "bin/console assets:install"
-cache/clean: #[Symfony] Clean cache
- $(DOCKER_RUN_PHP) "bin/console c:c"
-
xdebug/on: #[Docker] Enable xdebug
$(DOCKER_COMPOSE) stop php
XDEBUG_MODE=debug,develop $(DOCKER_COMPOSE) up --remove-orphans --detach
xdebug/off: #[Docker] Disable xdebug
$(DOCKER_COMPOSE) stop php
- XDEBUG_MODE=off $(DOCKER_COMPOSE) up --remove-orphans --detach
\ No newline at end of file
+ XDEBUG_MODE=off $(DOCKER_COMPOSE) up --remove-orphans --detach
+
+quality: phpstan php-cs-fixer rector #[Quality] Run all quality checks
+
+phpstan: #[Quality] Run PHPStan
+ $(DOCKER_RUN_PHP) "vendor/bin/phpstan --no-progress --memory-limit=1G analyse"
+
+php-cs-fixer: #[Quality] Run PHP-CS-Fixer
+ $(DOCKER_RUN_PHP) "vendor/bin/php-cs-fixer fix --diff --verbose"
+
+rector: #[Quality] Run Rector
+ $(DOCKER_RUN_PHP) "vendor/bin/rector"
+
+tests: phpunit #[Tests] Run all tests
+
+phpunit: #[Tests] Run PHPUnit
+ $(DOCKER_RUN_PHP) "vendor/bin/phpunit"
diff --git a/README.md b/README.md
index fb4cd76..f4a9c2b 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,19 @@
-**Process UI Bundle demo**
+CleverAge/ProcessBundleDemo
+=======================
-A sample application for process-bundle & process-bundle-UI*
+A demo project using cleverage/process-bundle & cleverage/*-process-bundle bridges
-**Usage**
+## Documentation
- make start
+For usage documentation, see:
+[docs/index.md](docs/index.md)
-Then acces to UI via https://localhost:8000/process (username: admin@clever-age.com / password: admin@clever-age.com)
+## Support & Contribution
-By default this demo use sqlite as default database. Feel free to user pgsql or mysql/mariadb in you project.
+For general support and questions, please use [Github](https://github.com/cleverage/process-bundle-demo/issues).
+If you think you found a bug or you have a feature idea to propose, feel free to open an issue after looking at the [contributing](CONTRIBUTING.md) guide.
+
+## License
+
+This bundle is under the MIT license.
+For the whole copyright, see the [LICENSE](LICENSE) file distributed with this source code.
diff --git a/bin/console b/bin/console
index c933dc5..d8d530e 100755
--- a/bin/console
+++ b/bin/console
@@ -4,6 +4,10 @@
use App\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;
+if (!is_dir(dirname(__DIR__).'/vendor')) {
+ throw new LogicException('Dependencies are missing. Try running "composer install".');
+}
+
if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
}
diff --git a/composer.json b/composer.json
index 0dcda5b..0f12a1d 100644
--- a/composer.json
+++ b/composer.json
@@ -1,26 +1,37 @@
{
- "name": "cleverage/process-bundle-ui-demo",
+ "name": "cleverage/process-bundle-demo",
"type": "project",
- "description": "A minimal project using cleverage/process-bundle & cleverage/process-bundle-ui",
+ "description": "A demo project using cleverage/process-bundle & cleverage/*-process-bundle bridges",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require": {
- "cleverage/doctrine-process-bundle": "v2.0-RC1",
- "cleverage/process-bundle": "dev-v4-dev",
- "cleverage/process-ui-bundle": "dev-v2-dev",
+ "cleverage/doctrine-process-bundle": "^2.0",
+ "cleverage/flysystem-process-bundle": "^2.0",
+ "cleverage/process-bundle": "^4.0",
+ "cleverage/rest-process-bundle": "^2.0",
+ "cleverage/soap-process-bundle": "^2.0",
+ "cleverage/ui-process-bundle": "^2.0",
+ "league/flysystem-sftp-v3": "^3.0",
"symfony/flex": "^v2.3"
},
"require-dev": {
- "symfony/maker-bundle": "^1.51",
- "symfony/stopwatch": "^6.4",
- "symfony/web-profiler-bundle": "^6.4",
- "friendsofphp/php-cs-fixer": "^3.34",
- "phpstan/phpstan": "^1.10",
+ "doctrine/doctrine-fixtures-bundle": "^3.6",
+ "friendsofphp/php-cs-fixer": "*",
+ "phpstan/extension-installer": "*",
+ "phpstan/phpstan": "*",
+ "phpstan/phpstan-doctrine": "*",
+ "phpstan/phpstan-symfony": "*",
+ "phpunit/phpunit": "<10.0",
+ "rector/rector": "*",
"roave/security-advisories": "dev-latest",
- "symfony/debug-bundle": "^6.4"
+ "symfony/browser-kit": "^6.4|^7.1",
+ "symfony/css-selector": "^6.4|^7.1",
+ "symfony/debug-bundle": "^6.4|^7.1",
+ "symfony/maker-bundle": "^1.31",
+ "symfony/web-profiler-bundle": "^6.4|^7.1"
},
"scripts": {
"auto-scripts": {
@@ -30,9 +41,28 @@
},
"config": {
"allow-plugins": {
+ "phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
},
- "sort-packages": true
+ "sort-packages": true,
+ "preferred-install": {
+ "cleverage/*": "source",
+ "*": "dist"
+ }
+ },
+ "repositories": [
+ {
+ "type": "vcs",
+ "url": "https://github.com/cleverage/ui-process-bundle.git"
+ }
+ ],
+ "minimum-stability": "dev",
+ "prefer-stable": true,
+ "extra": {
+ "symfony": {
+ "allow-contrib": false,
+ "require": "7.2.*"
+ }
}
}
diff --git a/composer.lock b/composer.lock
deleted file mode 100644
index 2f454fb..0000000
--- a/composer.lock
+++ /dev/null
@@ -1,8573 +0,0 @@
-{
- "_readme": [
- "This file locks the dependencies of your project to a known state",
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
- "This file is @generated automatically"
- ],
- "content-hash": "7ef91a91571e93affba9db0f5cac892e",
- "packages": [
- {
- "name": "cleverage/doctrine-process-bundle",
- "version": "v2.0-RC1",
- "source": {
- "type": "git",
- "url": "https://github.com/cleverage/doctrine-process-bundle.git",
- "reference": "15b44465fc084633cdff8d87635cd36e1bd4b3eb"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cleverage/doctrine-process-bundle/zipball/15b44465fc084633cdff8d87635cd36e1bd4b3eb",
- "reference": "15b44465fc084633cdff8d87635cd36e1bd4b3eb",
- "shasum": ""
- },
- "require": {
- "cleverage/process-bundle": "dev-v4-dev",
- "doctrine/doctrine-bundle": "^2",
- "doctrine/orm": "^2"
- },
- "require-dev": {
- "phpstan/extension-installer": "*",
- "phpstan/phpstan": "*",
- "phpstan/phpstan-symfony": "*",
- "phpunit/phpunit": "*",
- "rector/rector": "*",
- "roave/security-advisories": "dev-latest",
- "symfony/test-pack": "^1.1",
- "symplify/easy-coding-standard": "*",
- "symplify/phpstan-rules": "*"
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "CleverAge\\DoctrineProcessBundle\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Vincent Chalnot",
- "email": "vchalnot@clever-age.com",
- "homepage": "http://chalnot.fr",
- "role": "Lead Developer"
- },
- {
- "name": "Valentin Clavreul",
- "email": "vclavreul@clever-age.com",
- "role": "Developer"
- },
- {
- "name": "Madeline Veyrenc",
- "email": "mveyrenc@clever-age.com",
- "homepage": "https://github.com/mveyrenc",
- "role": "Developer"
- },
- {
- "name": "Xavier Marchegay",
- "email": "xmarchegay@clever-age.com",
- "homepage": "https://github.com/xaviermarchegay",
- "role": "Lead Developer"
- }
- ],
- "description": "Dedicated bundle for Doctrine dependencies for the Process Bundle",
- "homepage": "https://github.com/cleverage/doctrine-process-bundle",
- "keywords": [
- "doctrine",
- "etl",
- "export",
- "import",
- "process",
- "task",
- "transformation"
- ],
- "support": {
- "issues": "https://github.com/cleverage/doctrine-process-bundle/issues",
- "source": "https://github.com/cleverage/doctrine-process-bundle/tree/v2.0-RC1"
- },
- "time": "2023-10-09T20:09:10+00:00"
- },
- {
- "name": "cleverage/process-bundle",
- "version": "dev-v4-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/cleverage/process-bundle.git",
- "reference": "73e50ccd0a559be3da5052e6d6d57b95fc120930"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cleverage/process-bundle/zipball/73e50ccd0a559be3da5052e6d6d57b95fc120930",
- "reference": "73e50ccd0a559be3da5052e6d6d57b95fc120930",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-intl": "*",
- "ext-json": "*",
- "ext-mbstring": "*",
- "league/flysystem-bundle": "^3.1",
- "php": ">=8.1",
- "psr/cache": "^1|^2|^3",
- "symfony/config": "^6.3",
- "symfony/console": "^6.3",
- "symfony/dependency-injection": "^6.3",
- "symfony/event-dispatcher-contracts": "^3",
- "symfony/expression-language": "^6.3",
- "symfony/form": "^6.3",
- "symfony/framework-bundle": "^6.3",
- "symfony/messenger": "^6.3",
- "symfony/monolog-bundle": "~3.3",
- "symfony/options-resolver": "^6.3",
- "symfony/process": "^6.3",
- "symfony/property-access": "^6.3",
- "symfony/scheduler": "^6.3",
- "symfony/serializer": "^6.3",
- "symfony/stopwatch": "^6.3",
- "symfony/validator": "^6.3",
- "symfony/yaml": "^6.3"
- },
- "replace": {
- "symfony/polyfill-ctype": "*",
- "symfony/polyfill-iconv": "*",
- "symfony/polyfill-php72": "*",
- "symfony/polyfill-php73": "*",
- "symfony/polyfill-php74": "*",
- "symfony/polyfill-php80": "*",
- "symfony/polyfill-php81": "*"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "*",
- "phpstan/extension-installer": "*",
- "phpstan/phpstan": "*",
- "phpstan/phpstan-symfony": "*",
- "phpunit/phpunit": "*",
- "rector/rector": "*",
- "roave/security-advisories": "dev-latest",
- "symfony/test-pack": "^1.1"
- },
- "suggest": {
- "cleverage/doctrine-process-bundle": "Dedicated bundle for Doctrine dependencies for the process bundle",
- "cleverage/enqueue-process-bundle": "Manage asynchronous events within the process bundle",
- "cleverage/flysystem-process-bundle": "Dedicated bundle for Flysystem dependencies for the process bundle",
- "cleverage/rest-process-bundle": "Dedicated bundle for Rest dependencies for the process bundle",
- "cleverage/soap-process-bundle": "Dedicated bundle for Soap dependencies for the process bundle"
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "CleverAge\\ProcessBundle\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Vincent Chalnot",
- "email": "vchalnot@clever-age.com",
- "homepage": "https://github.com/VincentChalnot",
- "role": "Lead Developer"
- },
- {
- "name": "Valentin Clavreul",
- "email": "vclavreul@clever-age.com",
- "role": "Developer"
- },
- {
- "name": "Madeline Veyrenc",
- "email": "mveyrenc@clever-age.com",
- "homepage": "https://github.com/mveyrenc",
- "role": "Developer"
- },
- {
- "name": "Xavier Marchegay",
- "email": "xmarchegay@clever-age.com",
- "homepage": "https://github.com/xaviermarchegay",
- "role": "Lead Developer"
- }
- ],
- "description": "Process, import/export, transform and validate data with a simple API with Symfony3",
- "homepage": "https://github.com/cleverage/process-bundle",
- "keywords": [
- "etl",
- "export",
- "import",
- "process",
- "task",
- "transformation"
- ],
- "support": {
- "issues": "https://github.com/cleverage/process-bundle/issues",
- "source": "https://github.com/cleverage/process-bundle/tree/v4-dev"
- },
- "time": "2023-12-14T10:07:38+00:00"
- },
- {
- "name": "cleverage/process-ui-bundle",
- "version": "dev-v2-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/cleverage/processuibundle.git",
- "reference": "c567e7b0041cc5248993b6c2f650ecae82f5b6b7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cleverage/processuibundle/zipball/c567e7b0041cc5248993b6c2f650ecae82f5b6b7",
- "reference": "c567e7b0041cc5248993b6c2f650ecae82f5b6b7",
- "shasum": ""
- },
- "require": {
- "cleverage/process-bundle": "dev-v4-dev",
- "easycorp/easyadmin-bundle": "^4.8",
- "ext-ctype": "*",
- "ext-iconv": "*",
- "ext-pcntl": "*",
- "php": ">=8.2",
- "symfony/doctrine-messenger": "^6.4",
- "symfony/dotenv": "^6.4",
- "symfony/flex": "^2",
- "symfony/messenger": "^6.4",
- "symfony/orm-pack": "^v2.4",
- "symfony/runtime": "^6.4",
- "symfony/string": "^6.4",
- "symfony/uid": "^6.4"
- },
- "require-dev": {
- "vincentlanglet/twig-cs-fixer": "1.4.0"
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "CleverAge\\ProcessUiBundle\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Grégory Tonon",
- "email": "gtonon@clever-age.com",
- "role": "Developer"
- },
- {
- "name": "Xavier Marchegay",
- "email": "xmarchegay@clever-age.com",
- "role": "Developer"
- }
- ],
- "description": "UI for cleverage/process-bundle",
- "support": {
- "issues": "https://github.com/cleverage/processuibundle/issues",
- "source": "https://github.com/cleverage/processuibundle/tree/v2-dev"
- },
- "time": "2024-10-09T12:28:49+00:00"
- },
- {
- "name": "doctrine/cache",
- "version": "2.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/cache.git",
- "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
- "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
- "shasum": ""
- },
- "require": {
- "php": "~7.1 || ^8.0"
- },
- "conflict": {
- "doctrine/common": ">2.2,<2.4"
- },
- "require-dev": {
- "cache/integration-tests": "dev-master",
- "doctrine/coding-standard": "^9",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
- "psr/cache": "^1.0 || ^2.0 || ^3.0",
- "symfony/cache": "^4.4 || ^5.4 || ^6",
- "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
- "homepage": "https://www.doctrine-project.org/projects/cache.html",
- "keywords": [
- "abstraction",
- "apcu",
- "cache",
- "caching",
- "couchdb",
- "memcached",
- "php",
- "redis",
- "xcache"
- ],
- "support": {
- "issues": "https://github.com/doctrine/cache/issues",
- "source": "https://github.com/doctrine/cache/tree/2.2.0"
- },
- "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%2Fcache",
- "type": "tidelift"
- }
- ],
- "time": "2022-05-20T20:07:39+00:00"
- },
- {
- "name": "doctrine/collections",
- "version": "2.1.4",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/collections.git",
- "reference": "72328a11443a0de79967104ad36ba7b30bded134"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
- "reference": "72328a11443a0de79967104ad36ba7b30bded134",
- "shasum": ""
- },
- "require": {
- "doctrine/deprecations": "^1",
- "php": "^8.1"
- },
- "require-dev": {
- "doctrine/coding-standard": "^12",
- "ext-json": "*",
- "phpstan/phpstan": "^1.8",
- "phpstan/phpstan-phpunit": "^1.0",
- "phpunit/phpunit": "^9.5",
- "vimeo/psalm": "^5.11"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\Collections\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
- "homepage": "https://www.doctrine-project.org/projects/collections.html",
- "keywords": [
- "array",
- "collections",
- "iterators",
- "php"
- ],
- "support": {
- "issues": "https://github.com/doctrine/collections/issues",
- "source": "https://github.com/doctrine/collections/tree/2.1.4"
- },
- "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%2Fcollections",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-03T09:22:33+00:00"
- },
- {
- "name": "doctrine/common",
- "version": "3.4.3",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/common.git",
- "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
- "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
- "shasum": ""
- },
- "require": {
- "doctrine/persistence": "^2.0 || ^3.0",
- "php": "^7.1 || ^8.0"
- },
- "require-dev": {
- "doctrine/coding-standard": "^9.0 || ^10.0",
- "doctrine/collections": "^1",
- "phpstan/phpstan": "^1.4.1",
- "phpstan/phpstan-phpunit": "^1",
- "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
- "squizlabs/php_codesniffer": "^3.0",
- "symfony/phpunit-bridge": "^6.1",
- "vimeo/psalm": "^4.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- },
- {
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com"
- }
- ],
- "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
- "homepage": "https://www.doctrine-project.org/projects/common.html",
- "keywords": [
- "common",
- "doctrine",
- "php"
- ],
- "support": {
- "issues": "https://github.com/doctrine/common/issues",
- "source": "https://github.com/doctrine/common/tree/3.4.3"
- },
- "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%2Fcommon",
- "type": "tidelift"
- }
- ],
- "time": "2022-10-09T11:47:59+00:00"
- },
- {
- "name": "doctrine/dbal",
- "version": "3.7.2",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/dbal.git",
- "reference": "0ac3c270590e54910715e9a1a044cc368df282b2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/0ac3c270590e54910715e9a1a044cc368df282b2",
- "reference": "0ac3c270590e54910715e9a1a044cc368df282b2",
- "shasum": ""
- },
- "require": {
- "composer-runtime-api": "^2",
- "doctrine/cache": "^1.11|^2.0",
- "doctrine/deprecations": "^0.5.3|^1",
- "doctrine/event-manager": "^1|^2",
- "php": "^7.4 || ^8.0",
- "psr/cache": "^1|^2|^3",
- "psr/log": "^1|^2|^3"
- },
- "require-dev": {
- "doctrine/coding-standard": "12.0.0",
- "fig/log-test": "^1",
- "jetbrains/phpstorm-stubs": "2023.1",
- "phpstan/phpstan": "1.10.42",
- "phpstan/phpstan-strict-rules": "^1.5",
- "phpunit/phpunit": "9.6.13",
- "psalm/plugin-phpunit": "0.18.4",
- "slevomat/coding-standard": "8.13.1",
- "squizlabs/php_codesniffer": "3.7.2",
- "symfony/cache": "^5.4|^6.0",
- "symfony/console": "^4.4|^5.4|^6.0",
- "vimeo/psalm": "4.30.0"
- },
- "suggest": {
- "symfony/console": "For helpful console commands such as SQL execution and import of files."
- },
- "bin": [
- "bin/doctrine-dbal"
- ],
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\DBAL\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- }
- ],
- "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
- "homepage": "https://www.doctrine-project.org/projects/dbal.html",
- "keywords": [
- "abstraction",
- "database",
- "db2",
- "dbal",
- "mariadb",
- "mssql",
- "mysql",
- "oci8",
- "oracle",
- "pdo",
- "pgsql",
- "postgresql",
- "queryobject",
- "sasql",
- "sql",
- "sqlite",
- "sqlserver",
- "sqlsrv"
- ],
- "support": {
- "issues": "https://github.com/doctrine/dbal/issues",
- "source": "https://github.com/doctrine/dbal/tree/3.7.2"
- },
- "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%2Fdbal",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-19T08:06:58+00:00"
- },
- {
- "name": "doctrine/deprecations",
- "version": "1.1.2",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/deprecations.git",
- "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
- "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
- "shasum": ""
- },
- "require": {
- "php": "^7.1 || ^8.0"
- },
- "require-dev": {
- "doctrine/coding-standard": "^9",
- "phpstan/phpstan": "1.4.10 || 1.10.15",
- "phpstan/phpstan-phpunit": "^1.0",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
- "psalm/plugin-phpunit": "0.18.4",
- "psr/log": "^1 || ^2 || ^3",
- "vimeo/psalm": "4.30.0 || 5.12.0"
- },
- "suggest": {
- "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
- "homepage": "https://www.doctrine-project.org/",
- "support": {
- "issues": "https://github.com/doctrine/deprecations/issues",
- "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
- },
- "time": "2023-09-27T20:04:15+00:00"
- },
- {
- "name": "doctrine/doctrine-bundle",
- "version": "2.11.1",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/DoctrineBundle.git",
- "reference": "4089f1424b724786c062aea50aae5f773449b94b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/4089f1424b724786c062aea50aae5f773449b94b",
- "reference": "4089f1424b724786c062aea50aae5f773449b94b",
- "shasum": ""
- },
- "require": {
- "doctrine/cache": "^1.11 || ^2.0",
- "doctrine/dbal": "^3.7.0 || ^4.0",
- "doctrine/persistence": "^2.2 || ^3",
- "doctrine/sql-formatter": "^1.0.1",
- "php": "^7.4 || ^8.0",
- "symfony/cache": "^5.4 || ^6.0 || ^7.0",
- "symfony/config": "^5.4 || ^6.0 || ^7.0",
- "symfony/console": "^5.4 || ^6.0 || ^7.0",
- "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
- "symfony/deprecation-contracts": "^2.1 || ^3",
- "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
- "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
- "symfony/polyfill-php80": "^1.15",
- "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
- },
- "conflict": {
- "doctrine/annotations": ">=3.0",
- "doctrine/orm": "<2.14 || >=4.0",
- "twig/twig": "<1.34 || >=2.0 <2.4"
- },
- "require-dev": {
- "doctrine/annotations": "^1 || ^2",
- "doctrine/coding-standard": "^12",
- "doctrine/deprecations": "^1.0",
- "doctrine/orm": "^2.14 || ^3.0",
- "friendsofphp/proxy-manager-lts": "^1.0",
- "phpunit/phpunit": "^9.5.26 || ^10.0",
- "psalm/plugin-phpunit": "^0.18.4",
- "psalm/plugin-symfony": "^4",
- "psr/log": "^1.1.4 || ^2.0 || ^3.0",
- "symfony/phpunit-bridge": "^6.1 || ^7.0",
- "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
- "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
- "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
- "symfony/string": "^5.4 || ^6.0 || ^7.0",
- "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
- "symfony/validator": "^5.4 || ^6.0 || ^7.0",
- "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
- "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
- "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
- "twig/twig": "^1.34 || ^2.12 || ^3.0",
- "vimeo/psalm": "^4.30"
- },
- "suggest": {
- "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
- "ext-pdo": "*",
- "symfony/web-profiler-bundle": "To use the data collector."
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "Doctrine\\Bundle\\DoctrineBundle\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- },
- {
- "name": "Doctrine Project",
- "homepage": "https://www.doctrine-project.org/"
- }
- ],
- "description": "Symfony DoctrineBundle",
- "homepage": "https://www.doctrine-project.org",
- "keywords": [
- "database",
- "dbal",
- "orm",
- "persistence"
- ],
- "support": {
- "issues": "https://github.com/doctrine/DoctrineBundle/issues",
- "source": "https://github.com/doctrine/DoctrineBundle/tree/2.11.1"
- },
- "funding": [
- {
- "url": "https://www.doctrine-project.org/sponsorship.html",
- "type": "custom"
- },
- {
- "url": "https://www.patreon.com/phpdoctrine",
- "type": "patreon"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-15T20:01:50+00:00"
- },
- {
- "name": "doctrine/doctrine-migrations-bundle",
- "version": "3.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
- "reference": "1dd42906a5fb9c5960723e2ebb45c68006493835"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/1dd42906a5fb9c5960723e2ebb45c68006493835",
- "reference": "1dd42906a5fb9c5960723e2ebb45c68006493835",
- "shasum": ""
- },
- "require": {
- "doctrine/doctrine-bundle": "^2.4",
- "doctrine/migrations": "^3.2",
- "php": "^7.2|^8.0",
- "symfony/deprecation-contracts": "^2.1 || ^3",
- "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
- },
- "require-dev": {
- "doctrine/coding-standard": "^12",
- "doctrine/orm": "^2.6 || ^3",
- "doctrine/persistence": "^2.0 || ^3 ",
- "phpstan/phpstan": "^1.4",
- "phpstan/phpstan-deprecation-rules": "^1",
- "phpstan/phpstan-phpunit": "^1",
- "phpstan/phpstan-strict-rules": "^1.1",
- "phpstan/phpstan-symfony": "^1.3",
- "phpunit/phpunit": "^8.5|^9.5",
- "psalm/plugin-phpunit": "^0.18.4",
- "psalm/plugin-symfony": "^3 || ^5",
- "symfony/phpunit-bridge": "^6.3 || ^7",
- "symfony/var-exporter": "^5.4 || ^6 || ^7",
- "vimeo/psalm": "^4.30 || ^5.15"
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "Doctrine\\Bundle\\MigrationsBundle\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Doctrine Project",
- "homepage": "https://www.doctrine-project.org"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony DoctrineMigrationsBundle",
- "homepage": "https://www.doctrine-project.org",
- "keywords": [
- "dbal",
- "migrations",
- "schema"
- ],
- "support": {
- "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
- "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.0"
- },
- "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%2Fdoctrine-migrations-bundle",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-13T19:44:41+00:00"
- },
- {
- "name": "doctrine/event-manager",
- "version": "2.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/event-manager.git",
- "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
- "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
- "shasum": ""
- },
- "require": {
- "php": "^8.1"
- },
- "conflict": {
- "doctrine/common": "<2.9"
- },
- "require-dev": {
- "doctrine/coding-standard": "^10",
- "phpstan/phpstan": "^1.8.8",
- "phpunit/phpunit": "^9.5",
- "vimeo/psalm": "^4.28"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- },
- {
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com"
- }
- ],
- "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
- "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
- "keywords": [
- "event",
- "event dispatcher",
- "event manager",
- "event system",
- "events"
- ],
- "support": {
- "issues": "https://github.com/doctrine/event-manager/issues",
- "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
- },
- "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%2Fevent-manager",
- "type": "tidelift"
- }
- ],
- "time": "2022-10-12T20:59:15+00:00"
- },
- {
- "name": "doctrine/inflector",
- "version": "2.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/inflector.git",
- "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
- "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
- "shasum": ""
- },
- "require": {
- "php": "^7.2 || ^8.0"
- },
- "require-dev": {
- "doctrine/coding-standard": "^11.0",
- "phpstan/phpstan": "^1.8",
- "phpstan/phpstan-phpunit": "^1.1",
- "phpstan/phpstan-strict-rules": "^1.3",
- "phpunit/phpunit": "^8.5 || ^9.5",
- "vimeo/psalm": "^4.25 || ^5.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
- "homepage": "https://www.doctrine-project.org/projects/inflector.html",
- "keywords": [
- "inflection",
- "inflector",
- "lowercase",
- "manipulation",
- "php",
- "plural",
- "singular",
- "strings",
- "uppercase",
- "words"
- ],
- "support": {
- "issues": "https://github.com/doctrine/inflector/issues",
- "source": "https://github.com/doctrine/inflector/tree/2.0.8"
- },
- "funding": [
- {
- "url": "https://www.doctrine-project.org/sponsorship.html",
- "type": "custom"
- },
- {
- "url": "https://www.patreon.com/phpdoctrine",
- "type": "patreon"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
- "type": "tidelift"
- }
- ],
- "time": "2023-06-16T13:40:37+00:00"
- },
- {
- "name": "doctrine/instantiator",
- "version": "2.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/instantiator.git",
- "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
- "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
- "shasum": ""
- },
- "require": {
- "php": "^8.1"
- },
- "require-dev": {
- "doctrine/coding-standard": "^11",
- "ext-pdo": "*",
- "ext-phar": "*",
- "phpbench/phpbench": "^1.2",
- "phpstan/phpstan": "^1.9.4",
- "phpstan/phpstan-phpunit": "^1.3",
- "phpunit/phpunit": "^9.5.27",
- "vimeo/psalm": "^5.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com",
- "homepage": "https://ocramius.github.io/"
- }
- ],
- "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
- "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
- "keywords": [
- "constructor",
- "instantiate"
- ],
- "support": {
- "issues": "https://github.com/doctrine/instantiator/issues",
- "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
- },
- "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%2Finstantiator",
- "type": "tidelift"
- }
- ],
- "time": "2022-12-30T00:23:10+00:00"
- },
- {
- "name": "doctrine/lexer",
- "version": "2.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/lexer.git",
- "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
- "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
- "shasum": ""
- },
- "require": {
- "doctrine/deprecations": "^1.0",
- "php": "^7.1 || ^8.0"
- },
- "require-dev": {
- "doctrine/coding-standard": "^9 || ^10",
- "phpstan/phpstan": "^1.3",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
- "psalm/plugin-phpunit": "^0.18.3",
- "vimeo/psalm": "^4.11 || ^5.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\Lexer\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
- "homepage": "https://www.doctrine-project.org/projects/lexer.html",
- "keywords": [
- "annotations",
- "docblock",
- "lexer",
- "parser",
- "php"
- ],
- "support": {
- "issues": "https://github.com/doctrine/lexer/issues",
- "source": "https://github.com/doctrine/lexer/tree/2.1.0"
- },
- "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": "2022-12-14T08:49:07+00:00"
- },
- {
- "name": "doctrine/migrations",
- "version": "3.7.2",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/migrations.git",
- "reference": "47af29eef49f29ebee545947e8b2a4b3be318c8a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/migrations/zipball/47af29eef49f29ebee545947e8b2a4b3be318c8a",
- "reference": "47af29eef49f29ebee545947e8b2a4b3be318c8a",
- "shasum": ""
- },
- "require": {
- "composer-runtime-api": "^2",
- "doctrine/dbal": "^3.5.1 || ^4",
- "doctrine/deprecations": "^0.5.3 || ^1",
- "doctrine/event-manager": "^1.2 || ^2.0",
- "php": "^8.1",
- "psr/log": "^1.1.3 || ^2 || ^3",
- "symfony/console": "^5.4 || ^6.0 || ^7.0",
- "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
- "symfony/var-exporter": "^6.2 || ^7.0"
- },
- "conflict": {
- "doctrine/orm": "<2.12 || >=4"
- },
- "require-dev": {
- "doctrine/coding-standard": "^12",
- "doctrine/orm": "^2.13 || ^3",
- "doctrine/persistence": "^2 || ^3",
- "doctrine/sql-formatter": "^1.0",
- "ext-pdo_sqlite": "*",
- "phpstan/phpstan": "^1.10",
- "phpstan/phpstan-deprecation-rules": "^1.1",
- "phpstan/phpstan-phpunit": "^1.3",
- "phpstan/phpstan-strict-rules": "^1.4",
- "phpstan/phpstan-symfony": "^1.3",
- "phpunit/phpunit": "^10.3",
- "symfony/cache": "^5.4 || ^6.0 || ^7.0",
- "symfony/process": "^5.4 || ^6.0 || ^7.0",
- "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
- },
- "suggest": {
- "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
- "symfony/yaml": "Allows the use of yaml for migration configuration files."
- },
- "bin": [
- "bin/doctrine-migrations"
- ],
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Michael Simonson",
- "email": "contact@mikesimonson.com"
- }
- ],
- "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
- "homepage": "https://www.doctrine-project.org/projects/migrations.html",
- "keywords": [
- "database",
- "dbal",
- "migrations"
- ],
- "support": {
- "issues": "https://github.com/doctrine/migrations/issues",
- "source": "https://github.com/doctrine/migrations/tree/3.7.2"
- },
- "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%2Fmigrations",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-05T11:35:05+00:00"
- },
- {
- "name": "doctrine/orm",
- "version": "2.17.2",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/orm.git",
- "reference": "393679a4795e49b0b3ac317dce84d0f8888f2b77"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/orm/zipball/393679a4795e49b0b3ac317dce84d0f8888f2b77",
- "reference": "393679a4795e49b0b3ac317dce84d0f8888f2b77",
- "shasum": ""
- },
- "require": {
- "composer-runtime-api": "^2",
- "doctrine/cache": "^1.12.1 || ^2.1.1",
- "doctrine/collections": "^1.5 || ^2.1",
- "doctrine/common": "^3.0.3",
- "doctrine/dbal": "^2.13.1 || ^3.2",
- "doctrine/deprecations": "^0.5.3 || ^1",
- "doctrine/event-manager": "^1.2 || ^2",
- "doctrine/inflector": "^1.4 || ^2.0",
- "doctrine/instantiator": "^1.3 || ^2",
- "doctrine/lexer": "^2",
- "doctrine/persistence": "^2.4 || ^3",
- "ext-ctype": "*",
- "php": "^7.1 || ^8.0",
- "psr/cache": "^1 || ^2 || ^3",
- "symfony/console": "^4.2 || ^5.0 || ^6.0 || ^7.0",
- "symfony/polyfill-php72": "^1.23",
- "symfony/polyfill-php80": "^1.16"
- },
- "conflict": {
- "doctrine/annotations": "<1.13 || >= 3.0"
- },
- "require-dev": {
- "doctrine/annotations": "^1.13 || ^2",
- "doctrine/coding-standard": "^9.0.2 || ^12.0",
- "phpbench/phpbench": "^0.16.10 || ^1.0",
- "phpstan/phpstan": "~1.4.10 || 1.10.35",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
- "psr/log": "^1 || ^2 || ^3",
- "squizlabs/php_codesniffer": "3.7.2",
- "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7.0",
- "symfony/var-exporter": "^4.4 || ^5.4 || ^6.2 || ^7.0",
- "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
- "vimeo/psalm": "4.30.0 || 5.16.0"
- },
- "suggest": {
- "ext-dom": "Provides support for XSD validation for XML mapping files",
- "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
- "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
- },
- "bin": [
- "bin/doctrine"
- ],
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\ORM\\": "lib/Doctrine/ORM"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com"
- }
- ],
- "description": "Object-Relational-Mapper for PHP",
- "homepage": "https://www.doctrine-project.org/projects/orm.html",
- "keywords": [
- "database",
- "orm"
- ],
- "support": {
- "issues": "https://github.com/doctrine/orm/issues",
- "source": "https://github.com/doctrine/orm/tree/2.17.2"
- },
- "time": "2023-12-20T21:47:52+00:00"
- },
- {
- "name": "doctrine/persistence",
- "version": "3.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/persistence.git",
- "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
- "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
- "shasum": ""
- },
- "require": {
- "doctrine/event-manager": "^1 || ^2",
- "php": "^7.2 || ^8.0",
- "psr/cache": "^1.0 || ^2.0 || ^3.0"
- },
- "conflict": {
- "doctrine/common": "<2.10"
- },
- "require-dev": {
- "composer/package-versions-deprecated": "^1.11",
- "doctrine/coding-standard": "^11",
- "doctrine/common": "^3.0",
- "phpstan/phpstan": "1.9.4",
- "phpstan/phpstan-phpunit": "^1",
- "phpstan/phpstan-strict-rules": "^1.1",
- "phpunit/phpunit": "^8.5 || ^9.5",
- "symfony/cache": "^4.4 || ^5.4 || ^6.0",
- "vimeo/psalm": "4.30.0 || 5.3.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Persistence\\": "src/Persistence"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- },
- {
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com"
- }
- ],
- "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
- "homepage": "https://www.doctrine-project.org/projects/persistence.html",
- "keywords": [
- "mapper",
- "object",
- "odm",
- "orm",
- "persistence"
- ],
- "support": {
- "issues": "https://github.com/doctrine/persistence/issues",
- "source": "https://github.com/doctrine/persistence/tree/3.2.0"
- },
- "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%2Fpersistence",
- "type": "tidelift"
- }
- ],
- "time": "2023-05-17T18:32:04+00:00"
- },
- {
- "name": "doctrine/sql-formatter",
- "version": "1.1.3",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/sql-formatter.git",
- "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/25a06c7bf4c6b8218f47928654252863ffc890a5",
- "reference": "25a06c7bf4c6b8218f47928654252863ffc890a5",
- "shasum": ""
- },
- "require": {
- "php": "^7.1 || ^8.0"
- },
- "require-dev": {
- "bamarni/composer-bin-plugin": "^1.4"
- },
- "bin": [
- "bin/sql-formatter"
- ],
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\SqlFormatter\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Jeremy Dorn",
- "email": "jeremy@jeremydorn.com",
- "homepage": "https://jeremydorn.com/"
- }
- ],
- "description": "a PHP SQL highlighting library",
- "homepage": "https://github.com/doctrine/sql-formatter/",
- "keywords": [
- "highlight",
- "sql"
- ],
- "support": {
- "issues": "https://github.com/doctrine/sql-formatter/issues",
- "source": "https://github.com/doctrine/sql-formatter/tree/1.1.3"
- },
- "time": "2022-05-23T21:33:49+00:00"
- },
- {
- "name": "easycorp/easyadmin-bundle",
- "version": "v4.8.6",
- "source": {
- "type": "git",
- "url": "https://github.com/EasyCorp/EasyAdminBundle.git",
- "reference": "084ee7f6785d67160b7485440fcabae6fb255935"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/084ee7f6785d67160b7485440fcabae6fb255935",
- "reference": "084ee7f6785d67160b7485440fcabae6fb255935",
- "shasum": ""
- },
- "require": {
- "doctrine/doctrine-bundle": "^2.5",
- "doctrine/orm": "^2.10",
- "ext-json": "*",
- "php": ">=8.0.2",
- "symfony/asset": "^5.4|^6.0|^7.0",
- "symfony/cache": "^5.4|^6.0|^7.0",
- "symfony/config": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/deprecation-contracts": "^3.0",
- "symfony/doctrine-bridge": "^5.4|^6.0|^7.0",
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/filesystem": "^5.4|^6.0|^7.0",
- "symfony/form": "^5.4|^6.0|^7.0",
- "symfony/framework-bundle": "^5.4|^6.0|^7.0",
- "symfony/http-foundation": "^5.4|^6.0|^7.0",
- "symfony/http-kernel": "^5.4|^6.0|^7.0",
- "symfony/intl": "^5.4|^6.0|^7.0",
- "symfony/property-access": "^5.4|^6.0|^7.0",
- "symfony/security-bundle": "^5.4|^6.0|^7.0",
- "symfony/string": "^5.4|^6.0|^7.0",
- "symfony/translation": "^5.4|^6.0|^7.0",
- "symfony/twig-bundle": "^5.4|^6.0|^7.0",
- "symfony/uid": "^5.4|^6.0|^7.0",
- "symfony/validator": "^5.4|^6.0|^7.0"
- },
- "require-dev": {
- "doctrine/doctrine-fixtures-bundle": "^3.4|3.5.x-dev",
- "phpstan/extension-installer": "^1.2",
- "phpstan/phpstan": "^1.9",
- "phpstan/phpstan-phpunit": "^1.2",
- "phpstan/phpstan-strict-rules": "^1.4",
- "phpstan/phpstan-symfony": "^1.2",
- "psr/log": "^1.0",
- "symfony/browser-kit": "^5.4|^6.0|^7.0",
- "symfony/css-selector": "^5.4|^6.0|^7.0",
- "symfony/debug-bundle": "^5.4|^6.0|^7.0",
- "symfony/dom-crawler": "^5.4|^6.0|^7.0",
- "symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
- },
- "type": "symfony-bundle",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "EasyCorp\\Bundle\\EasyAdminBundle\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Project Contributors",
- "homepage": "https://github.com/EasyCorp/EasyAdminBundle/graphs/contributors"
- }
- ],
- "description": "Admin generator for Symfony applications",
- "homepage": "https://github.com/EasyCorp/EasyAdminBundle",
- "keywords": [
- "admin",
- "backend",
- "generator"
- ],
- "support": {
- "issues": "https://github.com/EasyCorp/EasyAdminBundle/issues",
- "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.8.6"
- },
- "funding": [
- {
- "url": "https://github.com/javiereguiluz",
- "type": "github"
- }
- ],
- "time": "2023-11-25T12:01:31+00:00"
- },
- {
- "name": "league/flysystem",
- "version": "3.23.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thephpleague/flysystem.git",
- "reference": "d4ad81e2b67396e33dc9d7e54ec74ccf73151dcc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/d4ad81e2b67396e33dc9d7e54ec74ccf73151dcc",
- "reference": "d4ad81e2b67396e33dc9d7e54ec74ccf73151dcc",
- "shasum": ""
- },
- "require": {
- "league/flysystem-local": "^3.0.0",
- "league/mime-type-detection": "^1.0.0",
- "php": "^8.0.2"
- },
- "conflict": {
- "async-aws/core": "<1.19.0",
- "async-aws/s3": "<1.14.0",
- "aws/aws-sdk-php": "3.209.31 || 3.210.0",
- "guzzlehttp/guzzle": "<7.0",
- "guzzlehttp/ringphp": "<1.1.1",
- "phpseclib/phpseclib": "3.0.15",
- "symfony/http-client": "<5.2"
- },
- "require-dev": {
- "async-aws/s3": "^1.5 || ^2.0",
- "async-aws/simple-s3": "^1.1 || ^2.0",
- "aws/aws-sdk-php": "^3.220.0",
- "composer/semver": "^3.0",
- "ext-fileinfo": "*",
- "ext-ftp": "*",
- "ext-zip": "*",
- "friendsofphp/php-cs-fixer": "^3.5",
- "google/cloud-storage": "^1.23",
- "microsoft/azure-storage-blob": "^1.1",
- "phpseclib/phpseclib": "^3.0.34",
- "phpstan/phpstan": "^1.10",
- "phpunit/phpunit": "^9.5.11|^10.0",
- "sabre/dav": "^4.3.1"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "League\\Flysystem\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Frank de Jonge",
- "email": "info@frankdejonge.nl"
- }
- ],
- "description": "File storage abstraction for PHP",
- "keywords": [
- "WebDAV",
- "aws",
- "cloud",
- "file",
- "files",
- "filesystem",
- "filesystems",
- "ftp",
- "s3",
- "sftp",
- "storage"
- ],
- "support": {
- "issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.23.0"
- },
- "funding": [
- {
- "url": "https://ecologi.com/frankdejonge",
- "type": "custom"
- },
- {
- "url": "https://github.com/frankdejonge",
- "type": "github"
- }
- ],
- "time": "2023-12-04T10:16:17+00:00"
- },
- {
- "name": "league/flysystem-bundle",
- "version": "3.3.2",
- "source": {
- "type": "git",
- "url": "https://github.com/thephpleague/flysystem-bundle.git",
- "reference": "ad6ef9c0a8d918269ae5cf47da2f0a4a995bfbd8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-bundle/zipball/ad6ef9c0a8d918269ae5cf47da2f0a4a995bfbd8",
- "reference": "ad6ef9c0a8d918269ae5cf47da2f0a4a995bfbd8",
- "shasum": ""
- },
- "require": {
- "league/flysystem": "^3.0",
- "php": ">=8.0",
- "symfony/config": "^5.4 || ^6.0 || ^7.0",
- "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
- "symfony/deprecation-contracts": "^2.1 || ^3",
- "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
- "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0"
- },
- "require-dev": {
- "league/flysystem-async-aws-s3": "^3.1",
- "league/flysystem-aws-s3-v3": "^3.1",
- "league/flysystem-azure-blob-storage": "^3.1",
- "league/flysystem-ftp": "^3.1",
- "league/flysystem-google-cloud-storage": "^3.1",
- "league/flysystem-memory": "^3.1",
- "league/flysystem-read-only": "^3.15",
- "league/flysystem-sftp-v3": "^3.1",
- "symfony/dotenv": "^5.4 || ^6.0 || ^7.0",
- "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
- "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
- "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
- "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "League\\FlysystemBundle\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Titouan Galopin",
- "email": "galopintitouan@gmail.com"
- }
- ],
- "description": "Symfony bundle integrating Flysystem into Symfony 5.4+ applications",
- "support": {
- "issues": "https://github.com/thephpleague/flysystem-bundle/issues",
- "source": "https://github.com/thephpleague/flysystem-bundle/tree/3.3.2"
- },
- "time": "2023-12-02T17:27:51+00:00"
- },
- {
- "name": "league/flysystem-local",
- "version": "3.23.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thephpleague/flysystem-local.git",
- "reference": "5cf046ba5f059460e86a997c504dd781a39a109b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/5cf046ba5f059460e86a997c504dd781a39a109b",
- "reference": "5cf046ba5f059460e86a997c504dd781a39a109b",
- "shasum": ""
- },
- "require": {
- "ext-fileinfo": "*",
- "league/flysystem": "^3.0.0",
- "league/mime-type-detection": "^1.0.0",
- "php": "^8.0.2"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "League\\Flysystem\\Local\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Frank de Jonge",
- "email": "info@frankdejonge.nl"
- }
- ],
- "description": "Local filesystem adapter for Flysystem.",
- "keywords": [
- "Flysystem",
- "file",
- "files",
- "filesystem",
- "local"
- ],
- "support": {
- "issues": "https://github.com/thephpleague/flysystem-local/issues",
- "source": "https://github.com/thephpleague/flysystem-local/tree/3.23.0"
- },
- "funding": [
- {
- "url": "https://ecologi.com/frankdejonge",
- "type": "custom"
- },
- {
- "url": "https://github.com/frankdejonge",
- "type": "github"
- }
- ],
- "time": "2023-12-04T10:14:46+00:00"
- },
- {
- "name": "league/mime-type-detection",
- "version": "1.14.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thephpleague/mime-type-detection.git",
- "reference": "b6a5854368533df0295c5761a0253656a2e52d9e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e",
- "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
- "shasum": ""
- },
- "require": {
- "ext-fileinfo": "*",
- "php": "^7.4 || ^8.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^3.2",
- "phpstan/phpstan": "^0.12.68",
- "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "League\\MimeTypeDetection\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Frank de Jonge",
- "email": "info@frankdejonge.nl"
- }
- ],
- "description": "Mime-type detection for Flysystem",
- "support": {
- "issues": "https://github.com/thephpleague/mime-type-detection/issues",
- "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0"
- },
- "funding": [
- {
- "url": "https://github.com/frankdejonge",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-17T14:13:20+00:00"
- },
- {
- "name": "monolog/monolog",
- "version": "3.5.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Seldaek/monolog.git",
- "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448",
- "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/log": "^2.0 || ^3.0"
- },
- "provide": {
- "psr/log-implementation": "3.0.0"
- },
- "require-dev": {
- "aws/aws-sdk-php": "^3.0",
- "doctrine/couchdb": "~1.0@dev",
- "elasticsearch/elasticsearch": "^7 || ^8",
- "ext-json": "*",
- "graylog2/gelf-php": "^1.4.2 || ^2.0",
- "guzzlehttp/guzzle": "^7.4.5",
- "guzzlehttp/psr7": "^2.2",
- "mongodb/mongodb": "^1.8",
- "php-amqplib/php-amqplib": "~2.4 || ^3",
- "phpstan/phpstan": "^1.9",
- "phpstan/phpstan-deprecation-rules": "^1.0",
- "phpstan/phpstan-strict-rules": "^1.4",
- "phpunit/phpunit": "^10.1",
- "predis/predis": "^1.1 || ^2",
- "ruflin/elastica": "^7",
- "symfony/mailer": "^5.4 || ^6",
- "symfony/mime": "^5.4 || ^6"
- },
- "suggest": {
- "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
- "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
- "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
- "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
- "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
- "ext-mbstring": "Allow to work properly with unicode symbols",
- "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
- "ext-openssl": "Required to send log messages using SSL",
- "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
- "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
- "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
- "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
- "rollbar/rollbar": "Allow sending log messages to Rollbar",
- "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Monolog\\": "src/Monolog"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "https://seld.be"
- }
- ],
- "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
- "homepage": "https://github.com/Seldaek/monolog",
- "keywords": [
- "log",
- "logging",
- "psr-3"
- ],
- "support": {
- "issues": "https://github.com/Seldaek/monolog/issues",
- "source": "https://github.com/Seldaek/monolog/tree/3.5.0"
- },
- "funding": [
- {
- "url": "https://github.com/Seldaek",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-27T15:32:31+00:00"
- },
- {
- "name": "psr/cache",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/cache.git",
- "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
- "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
- "shasum": ""
- },
- "require": {
- "php": ">=8.0.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Cache\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common interface for caching libraries",
- "keywords": [
- "cache",
- "psr",
- "psr-6"
- ],
- "support": {
- "source": "https://github.com/php-fig/cache/tree/3.0.0"
- },
- "time": "2021-02-03T23:26:27+00:00"
- },
- {
- "name": "psr/clock",
- "version": "1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/clock.git",
- "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
- "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
- "shasum": ""
- },
- "require": {
- "php": "^7.0 || ^8.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Psr\\Clock\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common interface for reading the clock.",
- "homepage": "https://github.com/php-fig/clock",
- "keywords": [
- "clock",
- "now",
- "psr",
- "psr-20",
- "time"
- ],
- "support": {
- "issues": "https://github.com/php-fig/clock/issues",
- "source": "https://github.com/php-fig/clock/tree/1.0.0"
- },
- "time": "2022-11-25T14:36:26+00:00"
- },
- {
- "name": "psr/container",
- "version": "2.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/container.git",
- "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
- "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
- "shasum": ""
- },
- "require": {
- "php": ">=7.4.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Container\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common Container Interface (PHP FIG PSR-11)",
- "homepage": "https://github.com/php-fig/container",
- "keywords": [
- "PSR-11",
- "container",
- "container-interface",
- "container-interop",
- "psr"
- ],
- "support": {
- "issues": "https://github.com/php-fig/container/issues",
- "source": "https://github.com/php-fig/container/tree/2.0.2"
- },
- "time": "2021-11-05T16:47:00+00:00"
- },
- {
- "name": "psr/event-dispatcher",
- "version": "1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/event-dispatcher.git",
- "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
- "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
- "shasum": ""
- },
- "require": {
- "php": ">=7.2.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\EventDispatcher\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Standard interfaces for event handling.",
- "keywords": [
- "events",
- "psr",
- "psr-14"
- ],
- "support": {
- "issues": "https://github.com/php-fig/event-dispatcher/issues",
- "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
- },
- "time": "2019-01-08T18:20:26+00:00"
- },
- {
- "name": "psr/log",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/log.git",
- "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
- "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
- "shasum": ""
- },
- "require": {
- "php": ">=8.0.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Log\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common interface for logging libraries",
- "homepage": "https://github.com/php-fig/log",
- "keywords": [
- "log",
- "psr",
- "psr-3"
- ],
- "support": {
- "source": "https://github.com/php-fig/log/tree/3.0.0"
- },
- "time": "2021-07-14T16:46:02+00:00"
- },
- {
- "name": "symfony/asset",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/asset.git",
- "reference": "82cd3961bc7fc1b3c3f85e8f2b9a287a1dfd6f2f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/asset/zipball/82cd3961bc7fc1b3c3f85e8f2b9a287a1dfd6f2f",
- "reference": "82cd3961bc7fc1b3c3f85e8f2b9a287a1dfd6f2f",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2"
- },
- "conflict": {
- "symfony/http-foundation": "<6.4"
- },
- "require-dev": {
- "symfony/http-client": "^6.4|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Asset\\": ""
- },
- "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": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/asset/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-31T17:59:56+00:00"
- },
- {
- "name": "symfony/cache",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/cache.git",
- "reference": "5e2376f726d61541b9617512e374808d12c1dc22"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/cache/zipball/5e2376f726d61541b9617512e374808d12c1dc22",
- "reference": "5e2376f726d61541b9617512e374808d12c1dc22",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "psr/cache": "^2.0|^3.0",
- "psr/log": "^1.1|^2|^3",
- "symfony/cache-contracts": "^2.5|^3",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/var-exporter": "^6.4|^7.0"
- },
- "conflict": {
- "doctrine/dbal": "<3.6",
- "symfony/dependency-injection": "<6.4",
- "symfony/http-kernel": "<6.4",
- "symfony/var-dumper": "<6.4"
- },
- "provide": {
- "psr/cache-implementation": "2.0|3.0",
- "psr/simple-cache-implementation": "1.0|2.0|3.0",
- "symfony/cache-implementation": "1.1|2.0|3.0"
- },
- "require-dev": {
- "cache/integration-tests": "dev-master",
- "doctrine/dbal": "^3.6|^4",
- "predis/predis": "^1.1|^2.0",
- "psr/simple-cache": "^1.0|^2.0|^3.0",
- "symfony/config": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/filesystem": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/messenger": "^6.4|^7.0",
- "symfony/var-dumper": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Cache\\": ""
- },
- "classmap": [
- "Traits/ValueWrapper.php"
- ],
- "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 extended PSR-6, PSR-16 (and tags) implementations",
- "homepage": "https://symfony.com",
- "keywords": [
- "caching",
- "psr6"
- ],
- "support": {
- "source": "https://github.com/symfony/cache/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-25T15:40:35+00:00"
- },
- {
- "name": "symfony/cache-contracts",
- "version": "v3.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/cache-contracts.git",
- "reference": "1d74b127da04ffa87aa940abe15446fa89653778"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778",
- "reference": "1d74b127da04ffa87aa940abe15446fa89653778",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/cache": "^3.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Contracts\\Cache\\": ""
- }
- },
- "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 caching",
- "homepage": "https://symfony.com",
- "keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
- ],
- "support": {
- "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-09-25T12:52:38+00:00"
- },
- {
- "name": "symfony/clock",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/clock.git",
- "reference": "c696b075befdd4bcffe5ef2eab9a32a1a9c0d29d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/clock/zipball/c696b075befdd4bcffe5ef2eab9a32a1a9c0d29d",
- "reference": "c696b075befdd4bcffe5ef2eab9a32a1a9c0d29d",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "psr/clock": "^1.0",
- "symfony/polyfill-php83": "^1.28"
- },
- "provide": {
- "psr/clock-implementation": "1.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "Resources/now.php"
- ],
- "psr-4": {
- "Symfony\\Component\\Clock\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Decouples applications from the system clock",
- "homepage": "https://symfony.com",
- "keywords": [
- "clock",
- "psr20",
- "time"
- ],
- "support": {
- "source": "https://github.com/symfony/clock/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-25T20:15:12+00:00"
- },
- {
- "name": "symfony/config",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/config.git",
- "reference": "5d33e0fb707d603330e0edfd4691803a1253572e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/config/zipball/5d33e0fb707d603330e0edfd4691803a1253572e",
- "reference": "5d33e0fb707d603330e0edfd4691803a1253572e",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/filesystem": "^5.4|^6.0|^7.0",
- "symfony/polyfill-ctype": "~1.8"
- },
- "conflict": {
- "symfony/finder": "<5.4",
- "symfony/service-contracts": "<2.5"
- },
- "require-dev": {
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/finder": "^5.4|^6.0|^7.0",
- "symfony/messenger": "^5.4|^6.0|^7.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/yaml": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Config\\": ""
- },
- "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 you find, load, combine, autofill and validate configuration values of any kind",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/config/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-09T08:28:32+00:00"
- },
- {
- "name": "symfony/console",
- "version": "v6.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/console.git",
- "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/a550a7c99daeedef3f9d23fb82e3531525ff11fd",
- "reference": "a550a7c99daeedef3f9d23fb82e3531525ff11fd",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/string": "^5.4|^6.0|^7.0"
- },
- "conflict": {
- "symfony/dependency-injection": "<5.4",
- "symfony/dotenv": "<5.4",
- "symfony/event-dispatcher": "<5.4",
- "symfony/lock": "<5.4",
- "symfony/process": "<5.4"
- },
- "provide": {
- "psr/log-implementation": "1.0|2.0|3.0"
- },
- "require-dev": {
- "psr/log": "^1|^2|^3",
- "symfony/config": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/lock": "^5.4|^6.0|^7.0",
- "symfony/messenger": "^5.4|^6.0|^7.0",
- "symfony/process": "^5.4|^6.0|^7.0",
- "symfony/stopwatch": "^5.4|^6.0|^7.0",
- "symfony/var-dumper": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Console\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Eases the creation of beautiful and testable command line interfaces",
- "homepage": "https://symfony.com",
- "keywords": [
- "cli",
- "command-line",
- "console",
- "terminal"
- ],
- "support": {
- "source": "https://github.com/symfony/console/tree/v6.4.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-30T10:54:28+00:00"
- },
- {
- "name": "symfony/dependency-injection",
- "version": "v6.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/dependency-injection.git",
- "reference": "f88ff6428afbeb17cc648c8003bd608534750baf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f88ff6428afbeb17cc648c8003bd608534750baf",
- "reference": "f88ff6428afbeb17cc648c8003bd608534750baf",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/container": "^1.1|^2.0",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/service-contracts": "^2.5|^3.0",
- "symfony/var-exporter": "^6.2.10|^7.0"
- },
- "conflict": {
- "ext-psr": "<1.1|>=2",
- "symfony/config": "<6.1",
- "symfony/finder": "<5.4",
- "symfony/proxy-manager-bridge": "<6.3",
- "symfony/yaml": "<5.4"
- },
- "provide": {
- "psr/container-implementation": "1.1|2.0",
- "symfony/service-implementation": "1.1|2.0|3.0"
- },
- "require-dev": {
- "symfony/config": "^6.1|^7.0",
- "symfony/expression-language": "^5.4|^6.0|^7.0",
- "symfony/yaml": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\DependencyInjection\\": ""
- },
- "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 you to standardize and centralize the way objects are constructed in your application",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/dependency-injection/tree/v6.4.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-01T14:56:37+00:00"
- },
- {
- "name": "symfony/deprecation-contracts",
- "version": "v3.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
- "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
- },
- "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.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-05-23T14:45:45+00:00"
- },
- {
- "name": "symfony/doctrine-bridge",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/doctrine-bridge.git",
- "reference": "5e8e95e8389d03f2f3ae16a6c7c804849ed483b5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/5e8e95e8389d03f2f3ae16a6c7c804849ed483b5",
- "reference": "5e8e95e8389d03f2f3ae16a6c7c804849ed483b5",
- "shasum": ""
- },
- "require": {
- "doctrine/event-manager": "^2",
- "doctrine/persistence": "^3.1",
- "php": ">=8.2",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/service-contracts": "^2.5|^3"
- },
- "conflict": {
- "doctrine/dbal": "<3.6",
- "doctrine/lexer": "<1.1",
- "doctrine/orm": "<2.15",
- "symfony/cache": "<6.4",
- "symfony/dependency-injection": "<6.4",
- "symfony/form": "<6.4",
- "symfony/http-foundation": "<6.4",
- "symfony/http-kernel": "<6.4",
- "symfony/lock": "<6.4",
- "symfony/messenger": "<6.4",
- "symfony/property-info": "<6.4",
- "symfony/security-bundle": "<6.4",
- "symfony/security-core": "<6.4",
- "symfony/validator": "<6.4"
- },
- "require-dev": {
- "doctrine/collections": "^1.0|^2.0",
- "doctrine/data-fixtures": "^1.1",
- "doctrine/dbal": "^3.6|^4",
- "doctrine/orm": "^2.15|^3",
- "psr/log": "^1|^2|^3",
- "symfony/cache": "^6.4|^7.0",
- "symfony/config": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/doctrine-messenger": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/form": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/lock": "^6.4|^7.0",
- "symfony/messenger": "^6.4|^7.0",
- "symfony/property-access": "^6.4|^7.0",
- "symfony/property-info": "^6.4|^7.0",
- "symfony/security-core": "^6.4|^7.0",
- "symfony/stopwatch": "^6.4|^7.0",
- "symfony/translation": "^6.4|^7.0",
- "symfony/uid": "^6.4|^7.0",
- "symfony/validator": "^6.4|^7.0",
- "symfony/var-dumper": "^6.4|^7.0"
- },
- "type": "symfony-bridge",
- "autoload": {
- "psr-4": {
- "Symfony\\Bridge\\Doctrine\\": ""
- },
- "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 integration for Doctrine with various Symfony components",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/doctrine-bridge/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-17T16:04:05+00:00"
- },
- {
- "name": "symfony/doctrine-messenger",
- "version": "v6.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/doctrine-messenger.git",
- "reference": "7131e998fea2140a8f4203230d025696d2a07d3e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/7131e998fea2140a8f4203230d025696d2a07d3e",
- "reference": "7131e998fea2140a8f4203230d025696d2a07d3e",
- "shasum": ""
- },
- "require": {
- "doctrine/dbal": "^2.13|^3|^4",
- "php": ">=8.1",
- "symfony/messenger": "^5.4|^6.0|^7.0",
- "symfony/service-contracts": "^2.5|^3"
- },
- "conflict": {
- "doctrine/persistence": "<1.3"
- },
- "require-dev": {
- "doctrine/persistence": "^1.3|^2|^3",
- "symfony/property-access": "^5.4|^6.0|^7.0",
- "symfony/serializer": "^5.4|^6.0|^7.0"
- },
- "type": "symfony-messenger-bridge",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
- },
- "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": "Symfony Doctrine Messenger Bridge",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/doctrine-messenger/tree/v6.4.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-01T09:25:07+00:00"
- },
- {
- "name": "symfony/dotenv",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/dotenv.git",
- "reference": "d0d584a91422ddaa2c94317200d4c4e5b935555f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/dotenv/zipball/d0d584a91422ddaa2c94317200d4c4e5b935555f",
- "reference": "d0d584a91422ddaa2c94317200d4c4e5b935555f",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "conflict": {
- "symfony/console": "<5.4",
- "symfony/process": "<5.4"
- },
- "require-dev": {
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/process": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Dotenv\\": ""
- },
- "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": "Registers environment variables from a .env file",
- "homepage": "https://symfony.com",
- "keywords": [
- "dotenv",
- "env",
- "environment"
- ],
- "support": {
- "source": "https://github.com/symfony/dotenv/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-26T18:19:48+00:00"
- },
- {
- "name": "symfony/error-handler",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/error-handler.git",
- "reference": "80b1258be1b84c12a345d0ec3881bbf2e5270cc2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/80b1258be1b84c12a345d0ec3881bbf2e5270cc2",
- "reference": "80b1258be1b84c12a345d0ec3881bbf2e5270cc2",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "psr/log": "^1|^2|^3",
- "symfony/var-dumper": "^6.4|^7.0"
- },
- "conflict": {
- "symfony/deprecation-contracts": "<2.5",
- "symfony/http-kernel": "<6.4"
- },
- "require-dev": {
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/serializer": "^6.4|^7.0"
- },
- "bin": [
- "Resources/bin/patch-type-declarations"
- ],
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\ErrorHandler\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides tools to manage errors and ease debugging PHP code",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/error-handler/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-20T16:35:23+00:00"
- },
- {
- "name": "symfony/event-dispatcher",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "c459b40ffe67c49af6fd392aac374c9edf8a027e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c459b40ffe67c49af6fd392aac374c9edf8a027e",
- "reference": "c459b40ffe67c49af6fd392aac374c9edf8a027e",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/event-dispatcher-contracts": "^2.5|^3"
- },
- "conflict": {
- "symfony/dependency-injection": "<6.4",
- "symfony/service-contracts": "<2.5"
- },
- "provide": {
- "psr/event-dispatcher-implementation": "1.0",
- "symfony/event-dispatcher-implementation": "2.0|3.0"
- },
- "require-dev": {
- "psr/log": "^1|^2|^3",
- "symfony/config": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/error-handler": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/stopwatch": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\EventDispatcher\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-07-27T16:29:09+00:00"
- },
- {
- "name": "symfony/event-dispatcher-contracts",
- "version": "v3.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/event-dispatcher-contracts.git",
- "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
- "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/event-dispatcher": "^1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
- },
- "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.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-05-23T14:45:45+00:00"
- },
- {
- "name": "symfony/expression-language",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/expression-language.git",
- "reference": "6c8b12f1e5ee5d91b812fb8628fca86e2fe5d152"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/expression-language/zipball/6c8b12f1e5ee5d91b812fb8628fca86e2fe5d152",
- "reference": "6c8b12f1e5ee5d91b812fb8628fca86e2fe5d152",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/cache": "^5.4|^6.0|^7.0",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/service-contracts": "^2.5|^3"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\ExpressionLanguage\\": ""
- },
- "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 an engine that can compile and evaluate expressions",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/expression-language/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-07-27T06:52:43+00:00"
- },
- {
- "name": "symfony/filesystem",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/filesystem.git",
- "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/7da8ea2362a283771478c5f7729cfcb43a76b8b7",
- "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.8"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Filesystem\\": ""
- },
- "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 basic utilities for the filesystem",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/filesystem/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-07-27T06:33:22+00:00"
- },
- {
- "name": "symfony/finder",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/finder.git",
- "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
- "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2"
- },
- "require-dev": {
- "symfony/filesystem": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Finder\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Finds files and directories via an intuitive fluent interface",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/finder/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-31T17:59:56+00:00"
- },
- {
- "name": "symfony/flex",
- "version": "v2.4.2",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/flex.git",
- "reference": "67ee785f1aedada76461de7a7ec10cd7f8ff8d36"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/flex/zipball/67ee785f1aedada76461de7a7ec10cd7f8ff8d36",
- "reference": "67ee785f1aedada76461de7a7ec10cd7f8ff8d36",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^2.1",
- "php": ">=8.0"
- },
- "require-dev": {
- "composer/composer": "^2.1",
- "symfony/dotenv": "^5.4|^6.0",
- "symfony/filesystem": "^5.4|^6.0",
- "symfony/phpunit-bridge": "^5.4|^6.0",
- "symfony/process": "^5.4|^6.0"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "Symfony\\Flex\\Flex"
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Flex\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien.potencier@gmail.com"
- }
- ],
- "description": "Composer plugin for Symfony",
- "support": {
- "issues": "https://github.com/symfony/flex/issues",
- "source": "https://github.com/symfony/flex/tree/v2.4.2"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-05T14:09:35+00:00"
- },
- {
- "name": "symfony/form",
- "version": "v6.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/form.git",
- "reference": "10649ab710b58a04bcf1886f005ccab58d9cf0a4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/form/zipball/10649ab710b58a04bcf1886f005ccab58d9cf0a4",
- "reference": "10649ab710b58a04bcf1886f005ccab58d9cf0a4",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/options-resolver": "^5.4|^6.0|^7.0",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-intl-icu": "^1.21",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/property-access": "^5.4|^6.0|^7.0",
- "symfony/service-contracts": "^2.5|^3"
- },
- "conflict": {
- "symfony/console": "<5.4",
- "symfony/dependency-injection": "<5.4",
- "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
- "symfony/error-handler": "<5.4",
- "symfony/framework-bundle": "<5.4",
- "symfony/http-kernel": "<5.4",
- "symfony/translation": "<5.4",
- "symfony/translation-contracts": "<2.5",
- "symfony/twig-bridge": "<6.3"
- },
- "require-dev": {
- "doctrine/collections": "^1.0|^2.0",
- "symfony/config": "^5.4|^6.0|^7.0",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/expression-language": "^5.4|^6.0|^7.0",
- "symfony/html-sanitizer": "^6.1|^7.0",
- "symfony/http-foundation": "^5.4|^6.0|^7.0",
- "symfony/http-kernel": "^5.4|^6.0|^7.0",
- "symfony/intl": "^5.4|^6.0|^7.0",
- "symfony/security-core": "^6.2|^7.0",
- "symfony/security-csrf": "^5.4|^6.0|^7.0",
- "symfony/translation": "^5.4|^6.0|^7.0",
- "symfony/uid": "^5.4|^6.0|^7.0",
- "symfony/validator": "^5.4|^6.0|^7.0",
- "symfony/var-dumper": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Form\\": ""
- },
- "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 to easily create, process and reuse HTML forms",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/form/tree/v6.4.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-30T11:08:34+00:00"
- },
- {
- "name": "symfony/framework-bundle",
- "version": "v6.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/framework-bundle.git",
- "reference": "ac22d760bf9ff4440a1b6c7caef34d38b44290aa"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/ac22d760bf9ff4440a1b6c7caef34d38b44290aa",
- "reference": "ac22d760bf9ff4440a1b6c7caef34d38b44290aa",
- "shasum": ""
- },
- "require": {
- "composer-runtime-api": ">=2.1",
- "ext-xml": "*",
- "php": ">=8.1",
- "symfony/cache": "^5.4|^6.0|^7.0",
- "symfony/config": "^6.1|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/error-handler": "^6.1|^7.0",
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/filesystem": "^5.4|^6.0|^7.0",
- "symfony/finder": "^5.4|^6.0|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/routing": "^6.4|^7.0"
- },
- "conflict": {
- "doctrine/annotations": "<1.13.1",
- "doctrine/persistence": "<1.3",
- "phpdocumentor/reflection-docblock": "<3.2.2",
- "phpdocumentor/type-resolver": "<1.4.0",
- "symfony/asset": "<5.4",
- "symfony/asset-mapper": "<6.4",
- "symfony/clock": "<6.3",
- "symfony/console": "<5.4",
- "symfony/dom-crawler": "<6.4",
- "symfony/dotenv": "<5.4",
- "symfony/form": "<5.4",
- "symfony/http-client": "<6.3",
- "symfony/lock": "<5.4",
- "symfony/mailer": "<5.4",
- "symfony/messenger": "<6.3",
- "symfony/mime": "<6.4",
- "symfony/property-access": "<5.4",
- "symfony/property-info": "<5.4",
- "symfony/scheduler": "<6.4",
- "symfony/security-core": "<5.4",
- "symfony/security-csrf": "<5.4",
- "symfony/serializer": "<6.4",
- "symfony/stopwatch": "<5.4",
- "symfony/translation": "<6.4",
- "symfony/twig-bridge": "<5.4",
- "symfony/twig-bundle": "<5.4",
- "symfony/validator": "<6.4",
- "symfony/web-profiler-bundle": "<6.4",
- "symfony/workflow": "<6.4"
- },
- "require-dev": {
- "doctrine/annotations": "^1.13.1|^2",
- "doctrine/persistence": "^1.3|^2|^3",
- "dragonmantank/cron-expression": "^3.1",
- "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
- "seld/jsonlint": "^1.10",
- "symfony/asset": "^5.4|^6.0|^7.0",
- "symfony/asset-mapper": "^6.4|^7.0",
- "symfony/browser-kit": "^5.4|^6.0|^7.0",
- "symfony/clock": "^6.2|^7.0",
- "symfony/console": "^5.4.9|^6.0.9|^7.0",
- "symfony/css-selector": "^5.4|^6.0|^7.0",
- "symfony/dom-crawler": "^6.4|^7.0",
- "symfony/dotenv": "^5.4|^6.0|^7.0",
- "symfony/expression-language": "^5.4|^6.0|^7.0",
- "symfony/form": "^5.4|^6.0|^7.0",
- "symfony/html-sanitizer": "^6.1|^7.0",
- "symfony/http-client": "^6.3|^7.0",
- "symfony/lock": "^5.4|^6.0|^7.0",
- "symfony/mailer": "^5.4|^6.0|^7.0",
- "symfony/messenger": "^6.3|^7.0",
- "symfony/mime": "^6.4|^7.0",
- "symfony/notifier": "^5.4|^6.0|^7.0",
- "symfony/polyfill-intl-icu": "~1.0",
- "symfony/process": "^5.4|^6.0|^7.0",
- "symfony/property-info": "^5.4|^6.0|^7.0",
- "symfony/rate-limiter": "^5.4|^6.0|^7.0",
- "symfony/scheduler": "^6.4|^7.0",
- "symfony/security-bundle": "^5.4|^6.0|^7.0",
- "symfony/semaphore": "^5.4|^6.0|^7.0",
- "symfony/serializer": "^6.4|^7.0",
- "symfony/stopwatch": "^5.4|^6.0|^7.0",
- "symfony/string": "^5.4|^6.0|^7.0",
- "symfony/translation": "^6.4|^7.0",
- "symfony/twig-bundle": "^5.4|^6.0|^7.0",
- "symfony/uid": "^5.4|^6.0|^7.0",
- "symfony/validator": "^6.4|^7.0",
- "symfony/web-link": "^5.4|^6.0|^7.0",
- "symfony/workflow": "^6.4|^7.0",
- "symfony/yaml": "^5.4|^6.0|^7.0",
- "twig/twig": "^2.10|^3.0"
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "Symfony\\Bundle\\FrameworkBundle\\": ""
- },
- "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 tight integration between Symfony components and the Symfony full-stack framework",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/framework-bundle/tree/v6.4.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-01T16:35:22+00:00"
- },
- {
- "name": "symfony/http-foundation",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/http-foundation.git",
- "reference": "47d72323200934694def5d57083899d774a2b110"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/47d72323200934694def5d57083899d774a2b110",
- "reference": "47d72323200934694def5d57083899d774a2b110",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/polyfill-mbstring": "~1.1",
- "symfony/polyfill-php83": "^1.27"
- },
- "conflict": {
- "doctrine/dbal": "<3.6",
- "symfony/cache": "<6.4"
- },
- "require-dev": {
- "doctrine/dbal": "^3.6|^4",
- "predis/predis": "^1.1|^2.0",
- "symfony/cache": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/mime": "^6.4|^7.0",
- "symfony/rate-limiter": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\HttpFoundation\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Defines an object-oriented layer for the HTTP specification",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/http-foundation/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-07T15:10:37+00:00"
- },
- {
- "name": "symfony/http-kernel",
- "version": "v6.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/http-kernel.git",
- "reference": "2953274c16a229b3933ef73a6898e18388e12e1b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2953274c16a229b3933ef73a6898e18388e12e1b",
- "reference": "2953274c16a229b3933ef73a6898e18388e12e1b",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/log": "^1|^2|^3",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/error-handler": "^6.4|^7.0",
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/polyfill-ctype": "^1.8"
- },
- "conflict": {
- "symfony/browser-kit": "<5.4",
- "symfony/cache": "<5.4",
- "symfony/config": "<6.1",
- "symfony/console": "<5.4",
- "symfony/dependency-injection": "<6.4",
- "symfony/doctrine-bridge": "<5.4",
- "symfony/form": "<5.4",
- "symfony/http-client": "<5.4",
- "symfony/http-client-contracts": "<2.5",
- "symfony/mailer": "<5.4",
- "symfony/messenger": "<5.4",
- "symfony/translation": "<5.4",
- "symfony/translation-contracts": "<2.5",
- "symfony/twig-bridge": "<5.4",
- "symfony/validator": "<6.4",
- "symfony/var-dumper": "<6.3",
- "twig/twig": "<2.13"
- },
- "provide": {
- "psr/log-implementation": "1.0|2.0|3.0"
- },
- "require-dev": {
- "psr/cache": "^1.0|^2.0|^3.0",
- "symfony/browser-kit": "^5.4|^6.0|^7.0",
- "symfony/clock": "^6.2|^7.0",
- "symfony/config": "^6.1|^7.0",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/css-selector": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/dom-crawler": "^5.4|^6.0|^7.0",
- "symfony/expression-language": "^5.4|^6.0|^7.0",
- "symfony/finder": "^5.4|^6.0|^7.0",
- "symfony/http-client-contracts": "^2.5|^3",
- "symfony/process": "^5.4|^6.0|^7.0",
- "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
- "symfony/routing": "^5.4|^6.0|^7.0",
- "symfony/serializer": "^6.3|^7.0",
- "symfony/stopwatch": "^5.4|^6.0|^7.0",
- "symfony/translation": "^5.4|^6.0|^7.0",
- "symfony/translation-contracts": "^2.5|^3",
- "symfony/uid": "^5.4|^6.0|^7.0",
- "symfony/validator": "^6.4|^7.0",
- "symfony/var-exporter": "^6.2|^7.0",
- "twig/twig": "^2.13|^3.0.4"
- },
- "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/v6.4.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-01T17:02:02+00:00"
- },
- {
- "name": "symfony/intl",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/intl.git",
- "reference": "a2bf3df1fe6ca7ed9aaf2d3f7d7a33b5529b021d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/intl/zipball/a2bf3df1fe6ca7ed9aaf2d3f7d7a33b5529b021d",
- "reference": "a2bf3df1fe6ca7ed9aaf2d3f7d7a33b5529b021d",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2"
- },
- "require-dev": {
- "symfony/filesystem": "^6.4|^7.0",
- "symfony/finder": "^6.4|^7.0",
- "symfony/var-exporter": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Intl\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
- },
- {
- "name": "Eriksen Costa",
- "email": "eriksen.costa@infranology.com.br"
- },
- {
- "name": "Igor Wiedler",
- "email": "igor@wiedler.ch"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides access to the localization data of the ICU library",
- "homepage": "https://symfony.com",
- "keywords": [
- "i18n",
- "icu",
- "internationalization",
- "intl",
- "l10n",
- "localization"
- ],
- "support": {
- "source": "https://github.com/symfony/intl/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-28T23:12:22+00:00"
- },
- {
- "name": "symfony/messenger",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/messenger.git",
- "reference": "a6f32d0e9b9c7d2d47c7bea3cd1e8a9c0f781fb4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/messenger/zipball/a6f32d0e9b9c7d2d47c7bea3cd1e8a9c0f781fb4",
- "reference": "a6f32d0e9b9c7d2d47c7bea3cd1e8a9c0f781fb4",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/log": "^1|^2|^3",
- "symfony/clock": "^6.3|^7.0",
- "symfony/deprecation-contracts": "^2.5|^3"
- },
- "conflict": {
- "symfony/console": "<6.3",
- "symfony/event-dispatcher": "<5.4",
- "symfony/event-dispatcher-contracts": "<2.5",
- "symfony/framework-bundle": "<5.4",
- "symfony/http-kernel": "<5.4",
- "symfony/serializer": "<5.4"
- },
- "require-dev": {
- "psr/cache": "^1.0|^2.0|^3.0",
- "symfony/console": "^6.3|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/http-kernel": "^5.4|^6.0|^7.0",
- "symfony/process": "^5.4|^6.0|^7.0",
- "symfony/property-access": "^5.4|^6.0|^7.0",
- "symfony/rate-limiter": "^5.4|^6.0|^7.0",
- "symfony/routing": "^5.4|^6.0|^7.0",
- "symfony/serializer": "^5.4|^6.0|^7.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/stopwatch": "^5.4|^6.0|^7.0",
- "symfony/validator": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Messenger\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Samuel Roze",
- "email": "samuel.roze@gmail.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Helps applications send and receive messages to/from other applications or via message queues",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/messenger/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-24T19:28:07+00:00"
- },
- {
- "name": "symfony/monolog-bridge",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/monolog-bridge.git",
- "reference": "4ee9e0b3a4736d5598888444e2f1cd3bf206067c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/4ee9e0b3a4736d5598888444e2f1cd3bf206067c",
- "reference": "4ee9e0b3a4736d5598888444e2f1cd3bf206067c",
- "shasum": ""
- },
- "require": {
- "monolog/monolog": "^3",
- "php": ">=8.2",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/service-contracts": "^2.5|^3"
- },
- "conflict": {
- "symfony/console": "<6.4",
- "symfony/http-foundation": "<6.4",
- "symfony/security-core": "<6.4"
- },
- "require-dev": {
- "symfony/console": "^6.4|^7.0",
- "symfony/http-client": "^6.4|^7.0",
- "symfony/mailer": "^6.4|^7.0",
- "symfony/messenger": "^6.4|^7.0",
- "symfony/mime": "^6.4|^7.0",
- "symfony/security-core": "^6.4|^7.0",
- "symfony/var-dumper": "^6.4|^7.0"
- },
- "type": "symfony-bridge",
- "autoload": {
- "psr-4": {
- "Symfony\\Bridge\\Monolog\\": ""
- },
- "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 integration for Monolog with various Symfony components",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/monolog-bridge/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-21T15:09:11+00:00"
- },
- {
- "name": "symfony/monolog-bundle",
- "version": "v3.10.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/monolog-bundle.git",
- "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
- "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
- "shasum": ""
- },
- "require": {
- "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
- "php": ">=7.2.5",
- "symfony/config": "^5.4 || ^6.0 || ^7.0",
- "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
- "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
- "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
- },
- "require-dev": {
- "symfony/console": "^5.4 || ^6.0 || ^7.0",
- "symfony/phpunit-bridge": "^6.3 || ^7.0",
- "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
- },
- "type": "symfony-bundle",
- "extra": {
- "branch-alias": {
- "dev-master": "3.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Bundle\\MonologBundle\\": ""
- },
- "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": "Symfony MonologBundle",
- "homepage": "https://symfony.com",
- "keywords": [
- "log",
- "logging"
- ],
- "support": {
- "issues": "https://github.com/symfony/monolog-bundle/issues",
- "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-06T17:08:13+00:00"
- },
- {
- "name": "symfony/options-resolver",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/options-resolver.git",
- "reference": "22301f0e7fdeaacc14318928612dee79be99860e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22301f0e7fdeaacc14318928612dee79be99860e",
- "reference": "22301f0e7fdeaacc14318928612dee79be99860e",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\OptionsResolver\\": ""
- },
- "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 an improved replacement for the array_replace PHP function",
- "homepage": "https://symfony.com",
- "keywords": [
- "config",
- "configuration",
- "options"
- ],
- "support": {
- "source": "https://github.com/symfony/options-resolver/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-08-08T10:16:24+00:00"
- },
- {
- "name": "symfony/orm-pack",
- "version": "v2.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/orm-pack.git",
- "reference": "554688738193b2f3b13d4b2b02ca9fdf3c6713b4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/orm-pack/zipball/554688738193b2f3b13d4b2b02ca9fdf3c6713b4",
- "reference": "554688738193b2f3b13d4b2b02ca9fdf3c6713b4",
- "shasum": ""
- },
- "require": {
- "doctrine/doctrine-bundle": "*",
- "doctrine/doctrine-migrations-bundle": "*",
- "doctrine/orm": "*"
- },
- "conflict": {
- "php": "<8.1"
- },
- "type": "symfony-pack",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "A pack for the Doctrine ORM",
- "support": {
- "issues": "https://github.com/symfony/orm-pack/issues",
- "source": "https://github.com/symfony/orm-pack/tree/v2.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-08-21T09:15:31+00:00"
- },
- {
- "name": "symfony/password-hasher",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/password-hasher.git",
- "reference": "d2da68c2f7a240bd6edf7e96fdc7aca5e7beea66"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/password-hasher/zipball/d2da68c2f7a240bd6edf7e96fdc7aca5e7beea66",
- "reference": "d2da68c2f7a240bd6edf7e96fdc7aca5e7beea66",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2"
- },
- "conflict": {
- "symfony/security-core": "<6.4"
- },
- "require-dev": {
- "symfony/console": "^6.4|^7.0",
- "symfony/security-core": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\PasswordHasher\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Robin Chalas",
- "email": "robin.chalas@gmail.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides password hashing utilities",
- "homepage": "https://symfony.com",
- "keywords": [
- "hashing",
- "password"
- ],
- "support": {
- "source": "https://github.com/symfony/password-hasher/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-07T10:26:03+00:00"
- },
- {
- "name": "symfony/polyfill-intl-grapheme",
- "version": "v1.28.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "875e90aeea2777b6f135677f618529449334a612"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
- "reference": "875e90aeea2777b6f135677f618529449334a612",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "suggest": {
- "ext-intl": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.28-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/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.28.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-01-26T09:26:14+00:00"
- },
- {
- "name": "symfony/polyfill-intl-icu",
- "version": "v1.28.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-intl-icu.git",
- "reference": "e46b4da57951a16053cd751f63f4a24292788157"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e46b4da57951a16053cd751f63f4a24292788157",
- "reference": "e46b4da57951a16053cd751f63f4a24292788157",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "suggest": {
- "ext-intl": "For best performance and support of other locales than \"en\""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.28-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
- "autoload": {
- "files": [
- "bootstrap.php"
- ],
- "psr-4": {
- "Symfony\\Polyfill\\Intl\\Icu\\": ""
- },
- "classmap": [
- "Resources/stubs"
- ],
- "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": "Symfony polyfill for intl's ICU-related data and classes",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "icu",
- "intl",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.28.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-03-21T17:27:24+00:00"
- },
- {
- "name": "symfony/polyfill-intl-normalizer",
- "version": "v1.28.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
- "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "suggest": {
- "ext-intl": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.28-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/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.28.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-01-26T09:26:14+00:00"
- },
- {
- "name": "symfony/polyfill-mbstring",
- "version": "v1.28.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "42292d99c55abe617799667f454222c54c60e229"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
- "reference": "42292d99c55abe617799667f454222c54c60e229",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "provide": {
- "ext-mbstring": "*"
- },
- "suggest": {
- "ext-mbstring": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.28-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/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.28.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-07-28T09:04:16+00:00"
- },
- {
- "name": "symfony/polyfill-php83",
- "version": "v1.28.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php83.git",
- "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
- "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1",
- "symfony/polyfill-php80": "^1.14"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.28-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
- "autoload": {
- "files": [
- "bootstrap.php"
- ],
- "psr-4": {
- "Symfony\\Polyfill\\Php83\\": ""
- },
- "classmap": [
- "Resources/stubs"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-08-16T06:22:46+00:00"
- },
- {
- "name": "symfony/polyfill-uuid",
- "version": "v1.28.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-uuid.git",
- "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e",
- "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "provide": {
- "ext-uuid": "*"
- },
- "suggest": {
- "ext-uuid": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.28-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/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.28.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-01-26T09:26:14+00:00"
- },
- {
- "name": "symfony/process",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "191703b1566d97a5425dc969e4350d32b8ef17aa"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/191703b1566d97a5425dc969e4350d32b8ef17aa",
- "reference": "191703b1566d97a5425dc969e4350d32b8ef17aa",
- "shasum": ""
- },
- "require": {
- "php": ">=8.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/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-17T21:06:49+00:00"
- },
- {
- "name": "symfony/property-access",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/property-access.git",
- "reference": "75f6990ae8e8040dd587162f3f1863f755957129"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/property-access/zipball/75f6990ae8e8040dd587162f3f1863f755957129",
- "reference": "75f6990ae8e8040dd587162f3f1863f755957129",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/property-info": "^5.4|^6.0|^7.0"
- },
- "require-dev": {
- "symfony/cache": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\PropertyAccess\\": ""
- },
- "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 functions to read and write from/to an object or array using a simple string notation",
- "homepage": "https://symfony.com",
- "keywords": [
- "access",
- "array",
- "extraction",
- "index",
- "injection",
- "object",
- "property",
- "property-path",
- "reflection"
- ],
- "support": {
- "source": "https://github.com/symfony/property-access/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-09-25T12:52:38+00:00"
- },
- {
- "name": "symfony/property-info",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/property-info.git",
- "reference": "ce627df05f5629ce4feec536ee827ad0a12689b6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/property-info/zipball/ce627df05f5629ce4feec536ee827ad0a12689b6",
- "reference": "ce627df05f5629ce4feec536ee827ad0a12689b6",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/string": "^6.4|^7.0"
- },
- "conflict": {
- "phpdocumentor/reflection-docblock": "<5.2",
- "phpdocumentor/type-resolver": "<1.5.1",
- "symfony/dependency-injection": "<6.4",
- "symfony/serializer": "<6.4"
- },
- "require-dev": {
- "phpdocumentor/reflection-docblock": "^5.2",
- "phpstan/phpdoc-parser": "^1.0",
- "symfony/cache": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/serializer": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\PropertyInfo\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Kévin Dunglas",
- "email": "dunglas@gmail.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Extracts information about PHP class' properties using metadata of popular sources",
- "homepage": "https://symfony.com",
- "keywords": [
- "doctrine",
- "phpdoc",
- "property",
- "symfony",
- "type",
- "validator"
- ],
- "support": {
- "source": "https://github.com/symfony/property-info/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-25T08:38:27+00:00"
- },
- {
- "name": "symfony/routing",
- "version": "v7.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/routing.git",
- "reference": "fc55062907669835af6408558ae4d1dafef74b1e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/fc55062907669835af6408558ae4d1dafef74b1e",
- "reference": "fc55062907669835af6408558ae4d1dafef74b1e",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/deprecation-contracts": "^2.5|^3"
- },
- "conflict": {
- "symfony/config": "<6.4",
- "symfony/dependency-injection": "<6.4",
- "symfony/yaml": "<6.4"
- },
- "require-dev": {
- "psr/log": "^1|^2|^3",
- "symfony/config": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/yaml": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Routing\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Maps an HTTP request to a set of configuration variables",
- "homepage": "https://symfony.com",
- "keywords": [
- "router",
- "routing",
- "uri",
- "url"
- ],
- "support": {
- "source": "https://github.com/symfony/routing/tree/v7.0.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-01T15:10:06+00:00"
- },
- {
- "name": "symfony/runtime",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/runtime.git",
- "reference": "86539231fadfdc7f7e9911d6fa7ed84a606e7d34"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/runtime/zipball/86539231fadfdc7f7e9911d6fa7ed84a606e7d34",
- "reference": "86539231fadfdc7f7e9911d6fa7ed84a606e7d34",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^1.0|^2.0",
- "php": ">=8.1"
- },
- "conflict": {
- "symfony/dotenv": "<5.4"
- },
- "require-dev": {
- "composer/composer": "^1.0.2|^2.0",
- "symfony/console": "^5.4.9|^6.0.9|^7.0",
- "symfony/dotenv": "^5.4|^6.0|^7.0",
- "symfony/http-foundation": "^5.4|^6.0|^7.0",
- "symfony/http-kernel": "^5.4|^6.0|^7.0"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Runtime\\": "",
- "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
- },
- "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": "Enables decoupling PHP applications from global state",
- "homepage": "https://symfony.com",
- "keywords": [
- "runtime"
- ],
- "support": {
- "source": "https://github.com/symfony/runtime/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-18T09:43:34+00:00"
- },
- {
- "name": "symfony/scheduler",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/scheduler.git",
- "reference": "a2641b1ce643b7c638ee86eed594b08a46dbbe0a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/scheduler/zipball/a2641b1ce643b7c638ee86eed594b08a46dbbe0a",
- "reference": "a2641b1ce643b7c638ee86eed594b08a46dbbe0a",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/clock": "^6.3|^7.0"
- },
- "require-dev": {
- "dragonmantank/cron-expression": "^3.1",
- "symfony/cache": "^5.4|^6.0|^7.0",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/lock": "^5.4|^6.0|^7.0",
- "symfony/messenger": "^6.3|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Scheduler\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Sergey Rabochiy",
- "email": "upyx.00@gmail.com"
- },
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides scheduling through Symfony Messenger",
- "homepage": "https://symfony.com",
- "keywords": [
- "cron",
- "schedule",
- "scheduler"
- ],
- "support": {
- "source": "https://github.com/symfony/scheduler/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-17T21:09:08+00:00"
- },
- {
- "name": "symfony/security-bundle",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/security-bundle.git",
- "reference": "4138552567cdc211ec2e13f2642339b64219e343"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/security-bundle/zipball/4138552567cdc211ec2e13f2642339b64219e343",
- "reference": "4138552567cdc211ec2e13f2642339b64219e343",
- "shasum": ""
- },
- "require": {
- "composer-runtime-api": ">=2.1",
- "ext-xml": "*",
- "php": ">=8.2",
- "symfony/clock": "^6.4|^7.0",
- "symfony/config": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/event-dispatcher": "^6.4|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/password-hasher": "^6.4|^7.0",
- "symfony/security-core": "^6.4|^7.0",
- "symfony/security-csrf": "^6.4|^7.0",
- "symfony/security-http": "^6.4|^7.0",
- "symfony/service-contracts": "^2.5|^3"
- },
- "conflict": {
- "symfony/browser-kit": "<6.4",
- "symfony/console": "<6.4",
- "symfony/framework-bundle": "<6.4",
- "symfony/http-client": "<6.4",
- "symfony/ldap": "<6.4",
- "symfony/serializer": "<6.4",
- "symfony/twig-bundle": "<6.4",
- "symfony/validator": "<6.4"
- },
- "require-dev": {
- "symfony/asset": "^6.4|^7.0",
- "symfony/browser-kit": "^6.4|^7.0",
- "symfony/console": "^6.4|^7.0",
- "symfony/css-selector": "^6.4|^7.0",
- "symfony/dom-crawler": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/form": "^6.4|^7.0",
- "symfony/framework-bundle": "^6.4|^7.0",
- "symfony/http-client": "^6.4|^7.0",
- "symfony/ldap": "^6.4|^7.0",
- "symfony/process": "^6.4|^7.0",
- "symfony/rate-limiter": "^6.4|^7.0",
- "symfony/serializer": "^6.4|^7.0",
- "symfony/translation": "^6.4|^7.0",
- "symfony/twig-bridge": "^6.4|^7.0",
- "symfony/twig-bundle": "^6.4|^7.0",
- "symfony/validator": "^6.4|^7.0",
- "symfony/yaml": "^6.4|^7.0",
- "twig/twig": "^3.0.4",
- "web-token/jwt-checker": "^3.1",
- "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
- "web-token/jwt-signature-algorithm-eddsa": "^3.1",
- "web-token/jwt-signature-algorithm-hmac": "^3.1",
- "web-token/jwt-signature-algorithm-none": "^3.1",
- "web-token/jwt-signature-algorithm-rsa": "^3.1"
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "Symfony\\Bundle\\SecurityBundle\\": ""
- },
- "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 tight integration of the Security component into the Symfony full-stack framework",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/security-bundle/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-31T17:59:56+00:00"
- },
- {
- "name": "symfony/security-core",
- "version": "v7.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/security-core.git",
- "reference": "2ba040de8e6d93e07edc7307dc75b42e06137405"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/security-core/zipball/2ba040de8e6d93e07edc7307dc75b42e06137405",
- "reference": "2ba040de8e6d93e07edc7307dc75b42e06137405",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/event-dispatcher-contracts": "^2.5|^3",
- "symfony/password-hasher": "^6.4|^7.0",
- "symfony/service-contracts": "^2.5|^3"
- },
- "conflict": {
- "symfony/event-dispatcher": "<6.4",
- "symfony/http-foundation": "<6.4",
- "symfony/ldap": "<6.4",
- "symfony/validator": "<6.4"
- },
- "require-dev": {
- "psr/cache": "^1.0|^2.0|^3.0",
- "psr/container": "^1.1|^2.0",
- "psr/log": "^1|^2|^3",
- "symfony/cache": "^6.4|^7.0",
- "symfony/event-dispatcher": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/ldap": "^6.4|^7.0",
- "symfony/string": "^6.4|^7.0",
- "symfony/translation": "^6.4|^7.0",
- "symfony/validator": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Security\\Core\\": ""
- },
- "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": "Symfony Security Component - Core Library",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/security-core/tree/v7.0.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-30T11:04:23+00:00"
- },
- {
- "name": "symfony/security-csrf",
- "version": "v7.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/security-csrf.git",
- "reference": "e261f2cc8d170ec2f310d037893b213850867b6b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/security-csrf/zipball/e261f2cc8d170ec2f310d037893b213850867b6b",
- "reference": "e261f2cc8d170ec2f310d037893b213850867b6b",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/security-core": "^6.4|^7.0"
- },
- "conflict": {
- "symfony/http-foundation": "<6.4"
- },
- "require-dev": {
- "symfony/http-foundation": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Security\\Csrf\\": ""
- },
- "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": "Symfony Security Component - CSRF Library",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/security-csrf/tree/v7.0.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-30T11:04:23+00:00"
- },
- {
- "name": "symfony/security-http",
- "version": "v7.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/security-http.git",
- "reference": "acc9931d75cd16de08b1663223cb8ab36f61cc0c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/security-http/zipball/acc9931d75cd16de08b1663223cb8ab36f61cc0c",
- "reference": "acc9931d75cd16de08b1663223cb8ab36f61cc0c",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/property-access": "^6.4|^7.0",
- "symfony/security-core": "^6.4|^7.0",
- "symfony/service-contracts": "^2.5|^3"
- },
- "conflict": {
- "symfony/clock": "<6.4",
- "symfony/event-dispatcher": "<6.4",
- "symfony/http-client-contracts": "<3.0",
- "symfony/security-bundle": "<6.4",
- "symfony/security-csrf": "<6.4"
- },
- "require-dev": {
- "psr/log": "^1|^2|^3",
- "symfony/cache": "^6.4|^7.0",
- "symfony/clock": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/http-client-contracts": "^3.0",
- "symfony/rate-limiter": "^6.4|^7.0",
- "symfony/routing": "^6.4|^7.0",
- "symfony/security-csrf": "^6.4|^7.0",
- "symfony/translation": "^6.4|^7.0",
- "web-token/jwt-checker": "^3.1",
- "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Security\\Http\\": ""
- },
- "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": "Symfony Security Component - HTTP Integration",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/security-http/tree/v7.0.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-30T11:04:23+00:00"
- },
- {
- "name": "symfony/serializer",
- "version": "v6.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/serializer.git",
- "reference": "7ead272e62c9567df619ef3c49809bf934ddbc1f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/serializer/zipball/7ead272e62c9567df619ef3c49809bf934ddbc1f",
- "reference": "7ead272e62c9567df619ef3c49809bf934ddbc1f",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/polyfill-ctype": "~1.8"
- },
- "conflict": {
- "doctrine/annotations": "<1.12",
- "phpdocumentor/reflection-docblock": "<3.2.2",
- "phpdocumentor/type-resolver": "<1.4.0",
- "symfony/dependency-injection": "<5.4",
- "symfony/property-access": "<5.4",
- "symfony/property-info": "<5.4.24|>=6,<6.2.11",
- "symfony/uid": "<5.4",
- "symfony/validator": "<6.4",
- "symfony/yaml": "<5.4"
- },
- "require-dev": {
- "doctrine/annotations": "^1.12|^2",
- "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
- "seld/jsonlint": "^1.10",
- "symfony/cache": "^5.4|^6.0|^7.0",
- "symfony/config": "^5.4|^6.0|^7.0",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/error-handler": "^5.4|^6.0|^7.0",
- "symfony/filesystem": "^5.4|^6.0|^7.0",
- "symfony/form": "^5.4|^6.0|^7.0",
- "symfony/http-foundation": "^5.4|^6.0|^7.0",
- "symfony/http-kernel": "^5.4|^6.0|^7.0",
- "symfony/messenger": "^5.4|^6.0|^7.0",
- "symfony/mime": "^5.4|^6.0|^7.0",
- "symfony/property-access": "^5.4|^6.0|^7.0",
- "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
- "symfony/translation-contracts": "^2.5|^3",
- "symfony/uid": "^5.4|^6.0|^7.0",
- "symfony/validator": "^6.4|^7.0",
- "symfony/var-dumper": "^5.4|^6.0|^7.0",
- "symfony/var-exporter": "^5.4|^6.0|^7.0",
- "symfony/yaml": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Serializer\\": ""
- },
- "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": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/serializer/tree/v6.4.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-01T14:54:37+00:00"
- },
- {
- "name": "symfony/service-contracts",
- "version": "v3.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/service-contracts.git",
- "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
- "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/container": "^2.0"
- },
- "conflict": {
- "ext-psr": "<1.1|>=2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
- },
- "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.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-07-30T20:28:31+00:00"
- },
- {
- "name": "symfony/stopwatch",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/stopwatch.git",
- "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
- "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/service-contracts": "^2.5|^3"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Stopwatch\\": ""
- },
- "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 way to profile code",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/stopwatch/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-02-16T10:14:28+00:00"
- },
- {
- "name": "symfony/string",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/string.git",
- "reference": "b45fcf399ea9c3af543a92edf7172ba21174d809"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/b45fcf399ea9c3af543a92edf7172ba21174d809",
- "reference": "b45fcf399ea9c3af543a92edf7172ba21174d809",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-intl-grapheme": "~1.0",
- "symfony/polyfill-intl-normalizer": "~1.0",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "symfony/translation-contracts": "<2.5"
- },
- "require-dev": {
- "symfony/error-handler": "^5.4|^6.0|^7.0",
- "symfony/http-client": "^5.4|^6.0|^7.0",
- "symfony/intl": "^6.2|^7.0",
- "symfony/translation-contracts": "^2.5|^3.0",
- "symfony/var-exporter": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "Resources/functions.php"
- ],
- "psr-4": {
- "Symfony\\Component\\String\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
- "homepage": "https://symfony.com",
- "keywords": [
- "grapheme",
- "i18n",
- "string",
- "unicode",
- "utf-8",
- "utf8"
- ],
- "support": {
- "source": "https://github.com/symfony/string/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-28T20:41:49+00:00"
- },
- {
- "name": "symfony/translation",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/translation.git",
- "reference": "ab5a14723f23159854bf91b41255cad23b929fab"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/ab5a14723f23159854bf91b41255cad23b929fab",
- "reference": "ab5a14723f23159854bf91b41255cad23b929fab",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/translation-contracts": "^2.5|^3.0"
- },
- "conflict": {
- "symfony/config": "<6.4",
- "symfony/console": "<6.4",
- "symfony/dependency-injection": "<6.4",
- "symfony/http-client-contracts": "<2.5",
- "symfony/http-kernel": "<6.4",
- "symfony/service-contracts": "<2.5",
- "symfony/twig-bundle": "<6.4",
- "symfony/yaml": "<6.4"
- },
- "provide": {
- "symfony/translation-implementation": "2.3|3.0"
- },
- "require-dev": {
- "nikic/php-parser": "^4.13",
- "psr/log": "^1|^2|^3",
- "symfony/config": "^6.4|^7.0",
- "symfony/console": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/finder": "^6.4|^7.0",
- "symfony/http-client-contracts": "^2.5|^3.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/intl": "^6.4|^7.0",
- "symfony/polyfill-intl-icu": "^1.21",
- "symfony/routing": "^6.4|^7.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/yaml": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "Resources/functions.php"
- ],
- "psr-4": {
- "Symfony\\Component\\Translation\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides tools to internationalize your application",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/translation/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-29T08:40:23+00:00"
- },
- {
- "name": "symfony/translation-contracts",
- "version": "v3.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/translation-contracts.git",
- "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dee0c6e5b4c07ce851b462530088e64b255ac9c5",
- "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
- },
- "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.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-07-25T15:08:44+00:00"
- },
- {
- "name": "symfony/twig-bridge",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/twig-bridge.git",
- "reference": "142bc3ad4a61d7eedf7cc21d8ef2bd8a8e7417bf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/142bc3ad4a61d7eedf7cc21d8ef2bd8a8e7417bf",
- "reference": "142bc3ad4a61d7eedf7cc21d8ef2bd8a8e7417bf",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/translation-contracts": "^2.5|^3",
- "twig/twig": "^2.13|^3.0.4"
- },
- "conflict": {
- "phpdocumentor/reflection-docblock": "<3.2.2",
- "phpdocumentor/type-resolver": "<1.4.0",
- "symfony/console": "<5.4",
- "symfony/form": "<6.3",
- "symfony/http-foundation": "<5.4",
- "symfony/http-kernel": "<6.4",
- "symfony/mime": "<6.2",
- "symfony/serializer": "<6.4",
- "symfony/translation": "<5.4",
- "symfony/workflow": "<5.4"
- },
- "require-dev": {
- "egulias/email-validator": "^2.1.10|^3|^4",
- "league/html-to-markdown": "^5.0",
- "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
- "symfony/asset": "^5.4|^6.0|^7.0",
- "symfony/asset-mapper": "^6.3|^7.0",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/expression-language": "^5.4|^6.0|^7.0",
- "symfony/finder": "^5.4|^6.0|^7.0",
- "symfony/form": "^6.4|^7.0",
- "symfony/html-sanitizer": "^6.1|^7.0",
- "symfony/http-foundation": "^5.4|^6.0|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/intl": "^5.4|^6.0|^7.0",
- "symfony/mime": "^6.2|^7.0",
- "symfony/polyfill-intl-icu": "~1.0",
- "symfony/property-info": "^5.4|^6.0|^7.0",
- "symfony/routing": "^5.4|^6.0|^7.0",
- "symfony/security-acl": "^2.8|^3.0",
- "symfony/security-core": "^5.4|^6.0|^7.0",
- "symfony/security-csrf": "^5.4|^6.0|^7.0",
- "symfony/security-http": "^5.4|^6.0|^7.0",
- "symfony/serializer": "^6.4|^7.0",
- "symfony/stopwatch": "^5.4|^6.0|^7.0",
- "symfony/translation": "^6.1|^7.0",
- "symfony/web-link": "^5.4|^6.0|^7.0",
- "symfony/workflow": "^5.4|^6.0|^7.0",
- "symfony/yaml": "^5.4|^6.0|^7.0",
- "twig/cssinliner-extra": "^2.12|^3",
- "twig/inky-extra": "^2.12|^3",
- "twig/markdown-extra": "^2.12|^3"
- },
- "type": "symfony-bridge",
- "autoload": {
- "psr-4": {
- "Symfony\\Bridge\\Twig\\": ""
- },
- "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 integration for Twig with various Symfony components",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/twig-bridge/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-25T08:25:13+00:00"
- },
- {
- "name": "symfony/twig-bundle",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/twig-bundle.git",
- "reference": "35d84393e598dfb774e6a2bf49e5229a8a6dbe4c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/35d84393e598dfb774e6a2bf49e5229a8a6dbe4c",
- "reference": "35d84393e598dfb774e6a2bf49e5229a8a6dbe4c",
- "shasum": ""
- },
- "require": {
- "composer-runtime-api": ">=2.1",
- "php": ">=8.1",
- "symfony/config": "^6.1|^7.0",
- "symfony/dependency-injection": "^6.1|^7.0",
- "symfony/http-foundation": "^5.4|^6.0|^7.0",
- "symfony/http-kernel": "^6.2",
- "symfony/twig-bridge": "^6.4",
- "twig/twig": "^2.13|^3.0.4"
- },
- "conflict": {
- "symfony/framework-bundle": "<5.4",
- "symfony/translation": "<5.4"
- },
- "require-dev": {
- "symfony/asset": "^5.4|^6.0|^7.0",
- "symfony/expression-language": "^5.4|^6.0|^7.0",
- "symfony/finder": "^5.4|^6.0|^7.0",
- "symfony/form": "^5.4|^6.0|^7.0",
- "symfony/framework-bundle": "^5.4|^6.0|^7.0",
- "symfony/routing": "^5.4|^6.0|^7.0",
- "symfony/stopwatch": "^5.4|^6.0|^7.0",
- "symfony/translation": "^5.4|^6.0|^7.0",
- "symfony/web-link": "^5.4|^6.0|^7.0",
- "symfony/yaml": "^5.4|^6.0|^7.0"
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "Symfony\\Bundle\\TwigBundle\\": ""
- },
- "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 tight integration of Twig into the Symfony full-stack framework",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/twig-bundle/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-07T14:57:07+00:00"
- },
- {
- "name": "symfony/uid",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/uid.git",
- "reference": "8092dd1b1a41372110d06374f99ee62f7f0b9a92"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/uid/zipball/8092dd1b1a41372110d06374f99ee62f7f0b9a92",
- "reference": "8092dd1b1a41372110d06374f99ee62f7f0b9a92",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/polyfill-uuid": "^1.15"
- },
- "require-dev": {
- "symfony/console": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Uid\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Grégoire Pineau",
- "email": "lyrixx@lyrixx.info"
- },
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides an object-oriented API to generate and represent UIDs",
- "homepage": "https://symfony.com",
- "keywords": [
- "UID",
- "ulid",
- "uuid"
- ],
- "support": {
- "source": "https://github.com/symfony/uid/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-31T08:18:17+00:00"
- },
- {
- "name": "symfony/validator",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/validator.git",
- "reference": "33e1f3bb76ef70e3170e12f878aefb9c69b0fc4c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/validator/zipball/33e1f3bb76ef70e3170e12f878aefb9c69b0fc4c",
- "reference": "33e1f3bb76ef70e3170e12f878aefb9c69b0fc4c",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php83": "^1.27",
- "symfony/translation-contracts": "^2.5|^3"
- },
- "conflict": {
- "doctrine/annotations": "<1.13",
- "doctrine/lexer": "<1.1",
- "symfony/dependency-injection": "<5.4",
- "symfony/expression-language": "<5.4",
- "symfony/http-kernel": "<5.4",
- "symfony/intl": "<5.4",
- "symfony/property-info": "<5.4",
- "symfony/translation": "<5.4",
- "symfony/yaml": "<5.4"
- },
- "require-dev": {
- "doctrine/annotations": "^1.13|^2",
- "egulias/email-validator": "^2.1.10|^3|^4",
- "symfony/cache": "^5.4|^6.0|^7.0",
- "symfony/config": "^5.4|^6.0|^7.0",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/expression-language": "^5.4|^6.0|^7.0",
- "symfony/finder": "^5.4|^6.0|^7.0",
- "symfony/http-client": "^5.4|^6.0|^7.0",
- "symfony/http-foundation": "^5.4|^6.0|^7.0",
- "symfony/http-kernel": "^5.4|^6.0|^7.0",
- "symfony/intl": "^5.4|^6.0|^7.0",
- "symfony/mime": "^5.4|^6.0|^7.0",
- "symfony/property-access": "^5.4|^6.0|^7.0",
- "symfony/property-info": "^5.4|^6.0|^7.0",
- "symfony/translation": "^5.4|^6.0|^7.0",
- "symfony/yaml": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Validator\\": ""
- },
- "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 validate values",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/validator/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-29T07:47:42+00:00"
- },
- {
- "name": "symfony/var-dumper",
- "version": "v7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/var-dumper.git",
- "reference": "cf0220fc7607476fd0d001ab3ed9e830d1fdda56"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cf0220fc7607476fd0d001ab3ed9e830d1fdda56",
- "reference": "cf0220fc7607476fd0d001ab3ed9e830d1fdda56",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "symfony/console": "<6.4"
- },
- "require-dev": {
- "ext-iconv": "*",
- "symfony/console": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/process": "^6.4|^7.0",
- "symfony/uid": "^6.4|^7.0",
- "twig/twig": "^3.0.4"
- },
- "bin": [
- "Resources/bin/var-dump-server"
- ],
- "type": "library",
- "autoload": {
- "files": [
- "Resources/functions/dump.php"
- ],
- "psr-4": {
- "Symfony\\Component\\VarDumper\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides mechanisms for walking through any arbitrary PHP variable",
- "homepage": "https://symfony.com",
- "keywords": [
- "debug",
- "dump"
- ],
- "support": {
- "source": "https://github.com/symfony/var-dumper/tree/v7.0.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-27T12:39:18+00:00"
- },
- {
- "name": "symfony/var-exporter",
- "version": "v7.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/var-exporter.git",
- "reference": "a3d7c877414fcd59ab7075ecdc3b8f9c00f7bcc3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a3d7c877414fcd59ab7075ecdc3b8f9c00f7bcc3",
- "reference": "a3d7c877414fcd59ab7075ecdc3b8f9c00f7bcc3",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2"
- },
- "require-dev": {
- "symfony/var-dumper": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\VarExporter\\": ""
- },
- "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": "Allows exporting any serializable PHP data structure to plain PHP code",
- "homepage": "https://symfony.com",
- "keywords": [
- "clone",
- "construct",
- "export",
- "hydrate",
- "instantiate",
- "lazy-loading",
- "proxy",
- "serialize"
- ],
- "support": {
- "source": "https://github.com/symfony/var-exporter/tree/v7.0.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-30T11:38:21+00:00"
- },
- {
- "name": "symfony/yaml",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/yaml.git",
- "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/4f9237a1bb42455d609e6687d2613dde5b41a587",
- "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/polyfill-ctype": "^1.8"
- },
- "conflict": {
- "symfony/console": "<5.4"
- },
- "require-dev": {
- "symfony/console": "^5.4|^6.0|^7.0"
- },
- "bin": [
- "Resources/bin/yaml-lint"
- ],
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Yaml\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Loads and dumps YAML files",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/yaml/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-06T11:00:25+00:00"
- },
- {
- "name": "twig/twig",
- "version": "v3.8.0",
- "source": {
- "type": "git",
- "url": "https://github.com/twigphp/Twig.git",
- "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
- "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
- "shasum": ""
- },
- "require": {
- "php": ">=7.2.5",
- "symfony/polyfill-ctype": "^1.8",
- "symfony/polyfill-mbstring": "^1.3",
- "symfony/polyfill-php80": "^1.22"
- },
- "require-dev": {
- "psr/container": "^1.0|^2.0",
- "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Twig\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com",
- "homepage": "http://fabien.potencier.org",
- "role": "Lead Developer"
- },
- {
- "name": "Twig Team",
- "role": "Contributors"
- },
- {
- "name": "Armin Ronacher",
- "email": "armin.ronacher@active-4.com",
- "role": "Project Founder"
- }
- ],
- "description": "Twig, the flexible, fast, and secure template language for PHP",
- "homepage": "https://twig.symfony.com",
- "keywords": [
- "templating"
- ],
- "support": {
- "issues": "https://github.com/twigphp/Twig/issues",
- "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
- },
- "funding": [
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/twig/twig",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-21T18:54:41+00:00"
- }
- ],
- "packages-dev": [
- {
- "name": "composer/pcre",
- "version": "3.1.1",
- "source": {
- "type": "git",
- "url": "https://github.com/composer/pcre.git",
- "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/composer/pcre/zipball/00104306927c7a0919b4ced2aaa6782c1e61a3c9",
- "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9",
- "shasum": ""
- },
- "require": {
- "php": "^7.4 || ^8.0"
- },
- "require-dev": {
- "phpstan/phpstan": "^1.3",
- "phpstan/phpstan-strict-rules": "^1.1",
- "symfony/phpunit-bridge": "^5"
- },
- "type": "library",
- "extra": {
- "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.1.1"
- },
- "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": "2023-10-11T07:11:09+00:00"
- },
- {
- "name": "composer/semver",
- "version": "3.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/composer/semver.git",
- "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
- "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
- "shasum": ""
- },
- "require": {
- "php": "^5.3.2 || ^7.0 || ^8.0"
- },
- "require-dev": {
- "phpstan/phpstan": "^1.4",
- "symfony/phpunit-bridge": "^4.2 || ^5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Composer\\Semver\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nils Adermann",
- "email": "naderman@naderman.de",
- "homepage": "http://www.naderman.de"
- },
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
- },
- {
- "name": "Rob Bast",
- "email": "rob.bast@gmail.com",
- "homepage": "http://robbast.nl"
- }
- ],
- "description": "Semver library that offers utilities, version constraint parsing and validation.",
- "keywords": [
- "semantic",
- "semver",
- "validation",
- "versioning"
- ],
- "support": {
- "irc": "ircs://irc.libera.chat:6697/composer",
- "issues": "https://github.com/composer/semver/issues",
- "source": "https://github.com/composer/semver/tree/3.4.0"
- },
- "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": "2023-08-31T09:50:34+00:00"
- },
- {
- "name": "composer/xdebug-handler",
- "version": "3.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/composer/xdebug-handler.git",
- "reference": "ced299686f41dce890debac69273b47ffe98a40c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
- "reference": "ced299686f41dce890debac69273b47ffe98a40c",
- "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",
- "symfony/phpunit-bridge": "^6.0"
- },
- "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": "irc://irc.freenode.org/composer",
- "issues": "https://github.com/composer/xdebug-handler/issues",
- "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
- },
- "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": "2022-02-25T21:32:43+00:00"
- },
- {
- "name": "friendsofphp/php-cs-fixer",
- "version": "v3.41.1",
- "source": {
- "type": "git",
- "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
- "reference": "8b6ae8dcbaf23f09680643ab832a4a3a260265f6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/8b6ae8dcbaf23f09680643ab832a4a3a260265f6",
- "reference": "8b6ae8dcbaf23f09680643ab832a4a3a260265f6",
- "shasum": ""
- },
- "require": {
- "composer/semver": "^3.4",
- "composer/xdebug-handler": "^3.0.3",
- "ext-json": "*",
- "ext-tokenizer": "*",
- "php": "^7.4 || ^8.0",
- "sebastian/diff": "^4.0 || ^5.0",
- "symfony/console": "^5.4 || ^6.0 || ^7.0",
- "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
- "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
- "symfony/finder": "^5.4 || ^6.0 || ^7.0",
- "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
- "symfony/polyfill-mbstring": "^1.28",
- "symfony/polyfill-php80": "^1.28",
- "symfony/polyfill-php81": "^1.28",
- "symfony/process": "^5.4 || ^6.0 || ^7.0",
- "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
- },
- "require-dev": {
- "facile-it/paraunit": "^1.3 || ^2.0",
- "justinrainbow/json-schema": "^5.2",
- "keradus/cli-executor": "^2.1",
- "mikey179/vfsstream": "^1.6.11",
- "php-coveralls/php-coveralls": "^2.7",
- "php-cs-fixer/accessible-object": "^1.1",
- "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
- "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
- "phpunit/phpunit": "^9.6",
- "symfony/phpunit-bridge": "^6.3.8 || ^7.0",
- "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
- },
- "suggest": {
- "ext-dom": "For handling output formats in XML",
- "ext-mbstring": "For handling non-UTF8 characters."
- },
- "bin": [
- "php-cs-fixer"
- ],
- "type": "application",
- "autoload": {
- "psr-4": {
- "PhpCsFixer\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Dariusz Rumiński",
- "email": "dariusz.ruminski@gmail.com"
- }
- ],
- "description": "A tool to automatically fix PHP code style",
- "keywords": [
- "Static code analysis",
- "fixer",
- "standards",
- "static analysis"
- ],
- "support": {
- "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
- "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.41.1"
- },
- "funding": [
- {
- "url": "https://github.com/keradus",
- "type": "github"
- }
- ],
- "time": "2023-12-10T19:59:27+00:00"
- },
- {
- "name": "nikic/php-parser",
- "version": "v4.18.0",
- "source": {
- "type": "git",
- "url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
- "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
- "shasum": ""
- },
- "require": {
- "ext-tokenizer": "*",
- "php": ">=7.0"
- },
- "require-dev": {
- "ircmaxell/php-yacc": "^0.0.7",
- "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
- },
- "bin": [
- "bin/php-parse"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.9-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "PhpParser\\": "lib/PhpParser"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Nikita Popov"
- }
- ],
- "description": "A PHP parser written in PHP",
- "keywords": [
- "parser",
- "php"
- ],
- "support": {
- "issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
- },
- "time": "2023-12-10T21:03:43+00:00"
- },
- {
- "name": "phpstan/phpstan",
- "version": "1.10.50",
- "source": {
- "type": "git",
- "url": "https://github.com/phpstan/phpstan.git",
- "reference": "06a98513ac72c03e8366b5a0cb00750b487032e4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/06a98513ac72c03e8366b5a0cb00750b487032e4",
- "reference": "06a98513ac72c03e8366b5a0cb00750b487032e4",
- "shasum": ""
- },
- "require": {
- "php": "^7.2|^8.0"
- },
- "conflict": {
- "phpstan/phpstan-shim": "*"
- },
- "bin": [
- "phpstan",
- "phpstan.phar"
- ],
- "type": "library",
- "autoload": {
- "files": [
- "bootstrap.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "PHPStan - PHP Static Analysis Tool",
- "keywords": [
- "dev",
- "static analysis"
- ],
- "support": {
- "docs": "https://phpstan.org/user-guide/getting-started",
- "forum": "https://github.com/phpstan/phpstan/discussions",
- "issues": "https://github.com/phpstan/phpstan/issues",
- "security": "https://github.com/phpstan/phpstan/security/policy",
- "source": "https://github.com/phpstan/phpstan-src"
- },
- "funding": [
- {
- "url": "https://github.com/ondrejmirtes",
- "type": "github"
- },
- {
- "url": "https://github.com/phpstan",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-13T10:59:42+00:00"
- },
- {
- "name": "roave/security-advisories",
- "version": "dev-latest",
- "source": {
- "type": "git",
- "url": "https://github.com/Roave/SecurityAdvisories.git",
- "reference": "bdde663d321b2d2130c2f88e2607c2edf4071f2c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/bdde663d321b2d2130c2f88e2607c2edf4071f2c",
- "reference": "bdde663d321b2d2130c2f88e2607c2edf4071f2c",
- "shasum": ""
- },
- "conflict": {
- "3f/pygmentize": "<1.2",
- "admidio/admidio": "<4.2.13",
- "adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3",
- "aheinze/cockpit": "<2.2",
- "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5",
- "airesvsg/acf-to-rest-api": "<=3.1",
- "akaunting/akaunting": "<2.1.13",
- "akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53",
- "alextselegidis/easyappointments": "<1.5",
- "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
- "amazing/media2click": ">=1,<1.3.3",
- "amphp/artax": "<1.0.6|>=2,<2.0.6",
- "amphp/http": "<1.0.1",
- "amphp/http-client": ">=4,<4.4",
- "anchorcms/anchor-cms": "<=0.12.7",
- "andreapollastri/cipi": "<=3.1.15",
- "andrewhaine/silverstripe-form-capture": ">=0.2,<=0.2.3|>=1,<1.0.2|>=2,<2.2.5",
- "apache-solr-for-typo3/solr": "<2.8.3",
- "apereo/phpcas": "<1.6",
- "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6|>=2.6,<2.7.10|>=3,<3.0.12|>=3.1,<3.1.3",
- "appwrite/server-ce": "<=1.2.1",
- "arc/web": "<3",
- "area17/twill": "<1.2.5|>=2,<2.5.3",
- "artesaos/seotools": "<0.17.2",
- "asymmetricrypt/asymmetricrypt": "<9.9.99",
- "athlon1600/php-proxy": "<=5.1",
- "athlon1600/php-proxy-app": "<=3",
- "austintoddj/canvas": "<=3.4.2",
- "automad/automad": "<1.8",
- "awesome-support/awesome-support": "<=6.0.7",
- "aws/aws-sdk-php": ">=3,<3.2.1",
- "azuracast/azuracast": "<0.18.3",
- "backdrop/backdrop": "<1.24.2",
- "backpack/crud": "<3.4.9",
- "bacula-web/bacula-web": "<8.0.0.0-RC2-dev",
- "badaso/core": "<2.7",
- "bagisto/bagisto": "<0.1.5",
- "barrelstrength/sprout-base-email": "<1.2.7",
- "barrelstrength/sprout-forms": "<3.9",
- "barryvdh/laravel-translation-manager": "<0.6.2",
- "barzahlen/barzahlen-php": "<2.0.1",
- "baserproject/basercms": "<4.8",
- "bassjobsen/bootstrap-3-typeahead": ">4.0.2",
- "bigfork/silverstripe-form-capture": ">=3,<3.1.1",
- "billz/raspap-webgui": "<2.9.5",
- "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
- "bmarshall511/wordpress_zero_spam": "<5.2.13",
- "bolt/bolt": "<3.7.2",
- "bolt/core": "<=4.2",
- "bottelet/flarepoint": "<2.2.1",
- "brightlocal/phpwhois": "<=4.2.5",
- "brotkrueml/codehighlight": "<2.7",
- "brotkrueml/schema": "<1.13.1|>=2,<2.5.1",
- "brotkrueml/typo3-matomo-integration": "<1.3.2",
- "buddypress/buddypress": "<7.2.1",
- "bugsnag/bugsnag-laravel": "<2.0.2",
- "bytefury/crater": "<6.0.2",
- "cachethq/cachet": "<2.5.1",
- "cakephp/cakephp": "<3.10.3|>=4,<4.0.10|>=4.1,<4.1.4|>=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
- "cakephp/database": ">=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
- "cardgate/magento2": "<2.0.33",
- "cardgate/woocommerce": "<=3.1.15",
- "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
- "cartalyst/sentry": "<=2.1.6",
- "catfan/medoo": "<1.7.5",
- "cecil/cecil": "<7.47.1",
- "centreon/centreon": "<22.10.0.0-beta1",
- "cesnet/simplesamlphp-module-proxystatistics": "<3.1",
- "chriskacerguis/codeigniter-restserver": "<=2.7.1",
- "civicrm/civicrm-core": ">=4.2,<4.2.9|>=4.3,<4.3.3",
- "cockpit-hq/cockpit": "<=2.6.3",
- "codeception/codeception": "<3.1.3|>=4,<4.1.22",
- "codeigniter/framework": "<3.1.9",
- "codeigniter4/framework": "<=4.4.2",
- "codeigniter4/shield": "<1.0.0.0-beta8",
- "codiad/codiad": "<=2.8.4",
- "composer/composer": "<1.10.27|>=2,<2.2.22|>=2.3,<2.6.4",
- "concrete5/concrete5": "<9.2.2",
- "concrete5/core": "<8.5.8|>=9,<9.1",
- "contao-components/mediaelement": ">=2.14.2,<2.21.1",
- "contao/contao": ">=4,<4.4.56|>=4.5,<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4",
- "contao/core": ">=2,<3.5.39",
- "contao/core-bundle": "<4.9.42|>=4.10,<4.13.28|>=5,<5.1.10",
- "contao/listing-bundle": ">=4,<4.4.8",
- "contao/managed-edition": "<=1.5",
- "cosenary/instagram": "<=2.3",
- "craftcms/cms": "<=4.4.14",
- "croogo/croogo": "<4",
- "cuyz/valinor": "<0.12",
- "czproject/git-php": "<4.0.3",
- "darylldoyle/safe-svg": "<1.9.10",
- "datadog/dd-trace": ">=0.30,<0.30.2",
- "datatables/datatables": "<1.10.10",
- "david-garcia/phpwhois": "<=4.3.1",
- "dbrisinajumi/d2files": "<1",
- "dcat/laravel-admin": "<=2.1.3.0-beta",
- "derhansen/fe_change_pwd": "<2.0.5|>=3,<3.0.3",
- "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1",
- "desperado/xml-bundle": "<=0.1.7",
- "directmailteam/direct-mail": "<6.0.3|>=7,<7.0.3|>=8,<9.5.2",
- "doctrine/annotations": "<1.2.7",
- "doctrine/cache": "<1.3.2|>=1.4,<1.4.2",
- "doctrine/common": "<2.4.3|>=2.5,<2.5.1",
- "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4",
- "doctrine/doctrine-bundle": "<1.5.2",
- "doctrine/doctrine-module": "<=0.7.1",
- "doctrine/mongodb-odm": "<1.0.2",
- "doctrine/mongodb-odm-bundle": "<3.0.1",
- "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4",
- "dolibarr/dolibarr": "<18.0.2",
- "dompdf/dompdf": "<2.0.4",
- "doublethreedigital/guest-entries": "<3.1.2",
- "drupal/core": "<9.5.11|>=10,<10.0.11|>=10.1,<10.1.4",
- "drupal/drupal": ">=6,<6.38|>=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4",
- "duncanmcclean/guest-entries": "<3.1.2",
- "dweeves/magmi": "<=0.7.24",
- "ecodev/newsletter": "<=4",
- "ectouch/ectouch": "<=2.7.2",
- "elefant/cms": "<2.0.7",
- "elgg/elgg": "<3.3.24|>=4,<4.0.5",
- "elijaa/phpmemcacheadmin": "<=1.3",
- "encore/laravel-admin": "<=1.8.19",
- "endroid/qr-code-bundle": "<3.4.2",
- "enshrined/svg-sanitize": "<0.15",
- "erusev/parsedown": "<1.7.2",
- "ether/logs": "<3.0.4",
- "evolutioncms/evolution": "<=3.2.3",
- "exceedone/exment": "<4.4.3|>=5,<5.0.3",
- "exceedone/laravel-admin": "<2.2.3|==3",
- "ezsystems/demobundle": ">=5.4,<5.4.6.1-dev",
- "ezsystems/ez-support-tools": ">=2.2,<2.2.3",
- "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1-dev",
- "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1-dev|>=5.4,<5.4.11.1-dev|>=2017.12,<2017.12.0.1-dev",
- "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24",
- "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26",
- "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1",
- "ezsystems/ezplatform-graphql": ">=1.0.0.0-RC1-dev,<1.0.13|>=2.0.0.0-beta1,<2.3.12",
- "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.34",
- "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8",
- "ezsystems/ezplatform-richtext": ">=2.3,<2.3.7.1-dev",
- "ezsystems/ezplatform-solr-search-engine": ">=1.7,<1.7.12|>=2,<2.0.2|>=3.3,<3.3.15",
- "ezsystems/ezplatform-user": ">=1,<1.0.1",
- "ezsystems/ezpublish-kernel": "<6.13.8.2-dev|>=7,<7.5.31",
- "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.06,<=2019.03.5.1",
- "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
- "ezsystems/repository-forms": ">=2.3,<2.3.2.1-dev|>=2.5,<2.5.15",
- "ezyang/htmlpurifier": "<4.1.1",
- "facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",
- "facturascripts/facturascripts": "<=2022.08",
- "feehi/cms": "<=2.1.1",
- "feehi/feehicms": "<=2.1.1",
- "fenom/fenom": "<=2.12.1",
- "filegator/filegator": "<7.8",
- "firebase/php-jwt": "<6",
- "fixpunkt/fp-masterquiz": "<2.2.1|>=3,<3.5.2",
- "fixpunkt/fp-newsletter": "<1.1.1|>=2,<2.1.2|>=2.2,<3.2.6",
- "flarum/core": "<1.8",
- "flarum/framework": "<1.8",
- "flarum/mentions": "<1.6.3",
- "flarum/sticky": ">=0.1.0.0-beta14,<=0.1.0.0-beta15",
- "flarum/tags": "<=0.1.0.0-beta13",
- "floriangaerber/magnesium": "<0.3.1",
- "fluidtypo3/vhs": "<5.1.1",
- "fof/byobu": ">=0.3.0.0-beta2,<1.1.7",
- "fof/upload": "<1.2.3",
- "foodcoopshop/foodcoopshop": ">=3.2,<3.6.1",
- "fooman/tcpdf": "<6.2.22",
- "forkcms/forkcms": "<5.11.1",
- "fossar/tcpdf-parser": "<6.2.22",
- "francoisjacquet/rosariosis": "<11",
- "frappant/frp-form-answers": "<3.1.2|>=4,<4.0.2",
- "friendsofsymfony/oauth2-php": "<1.3",
- "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",
- "friendsofsymfony/user-bundle": ">=1.2,<1.3.5",
- "friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
- "friendsoftypo3/openid": ">=4.5,<4.5.31|>=4.7,<4.7.16|>=6,<6.0.11|>=6.1,<6.1.6",
- "froala/wysiwyg-editor": "<3.2.7|>=4.0.1,<=4.1.1",
- "froxlor/froxlor": "<2.1.0.0-beta1",
- "fuel/core": "<1.8.1",
- "funadmin/funadmin": "<=3.2|>=3.3.2,<=3.3.3",
- "gaoming13/wechat-php-sdk": "<=1.10.2",
- "genix/cms": "<=1.1.11",
- "getgrav/grav": "<=1.7.42.1",
- "getkirby/cms": "<3.5.8.3-dev|>=3.6,<3.6.6.3-dev|>=3.7,<3.7.5.2-dev|>=3.8,<3.8.4.1-dev|>=3.9,<3.9.6",
- "getkirby/kirby": "<=2.5.12",
- "getkirby/panel": "<2.5.14",
- "getkirby/starterkit": "<=3.7.0.2",
- "gilacms/gila": "<=1.11.4",
- "gleez/cms": "<=1.2|==2",
- "globalpayments/php-sdk": "<2",
- "gogentooss/samlbase": "<1.2.7",
- "google/protobuf": "<3.15",
- "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",
- "gree/jose": "<2.2.1",
- "gregwar/rst": "<1.0.3",
- "grumpydictator/firefly-iii": "<6",
- "gugoan/economizzer": "<=0.9.0.0-beta1",
- "guzzlehttp/guzzle": "<6.5.8|>=7,<7.4.5",
- "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5",
- "haffner/jh_captcha": "<=2.1.3|>=3,<=3.0.2",
- "harvesthq/chosen": "<1.8.7",
- "helloxz/imgurl": "<=2.31",
- "hhxsv5/laravel-s": "<3.7.36",
- "hillelcoren/invoice-ninja": "<5.3.35",
- "himiklab/yii2-jqgrid-widget": "<1.0.8",
- "hjue/justwriting": "<=1",
- "hov/jobfair": "<1.0.13|>=2,<2.0.2",
- "httpsoft/http-message": "<1.0.12",
- "hyn/multi-tenant": ">=5.6,<5.7.2",
- "ibexa/admin-ui": ">=4.2,<4.2.3",
- "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.4",
- "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3",
- "ibexa/post-install": "<=1.0.4",
- "ibexa/solr": ">=4.5,<4.5.4",
- "ibexa/user": ">=4,<4.4.3",
- "icecoder/icecoder": "<=8.1",
- "idno/known": "<=1.3.1",
- "illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10",
- "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4",
- "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40",
- "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
- "illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75",
- "impresscms/impresscms": "<=1.4.5",
- "in2code/femanager": "<5.5.3|>=6,<6.3.4|>=7,<7.2.3",
- "in2code/ipandlanguageredirect": "<5.1.2",
- "in2code/lux": "<17.6.1|>=18,<24.0.2",
- "innologi/typo3-appointments": "<2.0.6",
- "intelliants/subrion": "<4.2.2",
- "islandora/islandora": ">=2,<2.4.1",
- "ivankristianto/phpwhois": "<=4.3",
- "jackalope/jackalope-doctrine-dbal": "<1.7.4",
- "james-heinrich/getid3": "<1.9.21",
- "james-heinrich/phpthumb": "<1.7.12",
- "jasig/phpcas": "<1.3.3",
- "jcbrand/converse.js": "<3.3.3",
- "joomla/application": "<1.0.13",
- "joomla/archive": "<1.1.12|>=2,<2.0.1",
- "joomla/filesystem": "<1.6.2|>=2,<2.0.1",
- "joomla/filter": "<1.4.4|>=2,<2.0.1",
- "joomla/framework": ">=2.5.4,<=3.8.12",
- "joomla/input": ">=2,<2.0.2",
- "joomla/joomla-cms": ">=2.5,<3.9.12",
- "joomla/session": "<1.3.1",
- "joyqi/hyper-down": "<=2.4.27",
- "jsdecena/laracom": "<2.0.9",
- "jsmitty12/phpwhois": "<5.1",
- "kazist/phpwhois": "<=4.2.6",
- "kelvinmo/simplexrd": "<3.1.1",
- "kevinpapst/kimai2": "<1.16.7",
- "khodakhah/nodcms": "<=3",
- "kimai/kimai": "<=2.1",
- "kitodo/presentation": "<3.2.3|>=3.3,<3.3.4",
- "klaviyo/magento2-extension": ">=1,<3",
- "knplabs/knp-snappy": "<=1.4.2",
- "kohana/core": "<3.3.3",
- "krayin/laravel-crm": "<1.2.2",
- "kreait/firebase-php": ">=3.2,<3.8.1",
- "la-haute-societe/tcpdf": "<6.2.22",
- "laminas/laminas-diactoros": "<2.18.1|==2.19|==2.20|==2.21|==2.22|==2.23|>=2.24,<2.24.2|>=2.25,<2.25.2",
- "laminas/laminas-form": "<2.17.1|>=3,<3.0.2|>=3.1,<3.1.1",
- "laminas/laminas-http": "<2.14.2",
- "laravel/fortify": "<1.11.1",
- "laravel/framework": "<6.20.44|>=7,<7.30.6|>=8,<8.75",
- "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10",
- "latte/latte": "<2.10.8",
- "lavalite/cms": "<=9",
- "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5",
- "league/commonmark": "<0.18.3",
- "league/flysystem": "<1.1.4|>=2,<2.1.1",
- "league/oauth2-server": ">=8.3.2,<8.4.2|>=8.5,<8.5.3",
- "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",
- "librenms/librenms": "<2017.08.18",
- "liftkit/database": "<2.13.2",
- "limesurvey/limesurvey": "<3.27.19",
- "livehelperchat/livehelperchat": "<=3.91",
- "livewire/livewire": ">2.2.4,<2.2.6",
- "lms/routes": "<2.1.1",
- "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2",
- "luyadev/yii-helpers": "<1.2.1",
- "magento/community-edition": "<=2.4",
- "magento/magento1ce": "<1.9.4.3-dev",
- "magento/magento1ee": ">=1,<1.14.4.3-dev",
- "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2.0-patch2",
- "maikuolan/phpmussel": ">=1,<1.6",
- "mantisbt/mantisbt": "<=2.25.7",
- "marcwillmann/turn": "<0.3.3",
- "matyhtf/framework": "<3.0.6",
- "mautic/core": "<4.3",
- "mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35",
- "mediawiki/matomo": "<2.4.3",
- "mediawiki/semantic-media-wiki": "<4.0.2",
- "melisplatform/melis-asset-manager": "<5.0.1",
- "melisplatform/melis-cms": "<5.0.1",
- "melisplatform/melis-front": "<5.0.1",
- "mezzio/mezzio-swoole": "<3.7|>=4,<4.3",
- "mgallegos/laravel-jqgrid": "<=1.3",
- "microsoft/microsoft-graph": ">=1.16,<1.109.1|>=2.0.0.0-RC1-dev,<2.0.1",
- "microsoft/microsoft-graph-beta": "<2.0.1",
- "microsoft/microsoft-graph-core": "<2.0.2",
- "microweber/microweber": "<=2.0.4",
- "miniorange/miniorange-saml": "<1.4.3",
- "mittwald/typo3_forum": "<1.2.1",
- "mobiledetect/mobiledetectlib": "<2.8.32",
- "modx/revolution": "<=2.8.3.0-patch",
- "mojo42/jirafeau": "<4.4",
- "mongodb/mongodb": ">=1,<1.9.2",
- "monolog/monolog": ">=1.8,<1.12",
- "moodle/moodle": "<4.3.0.0-RC2-dev",
- "mos/cimage": "<0.7.19",
- "movim/moxl": ">=0.8,<=0.10",
- "mpdf/mpdf": "<=7.1.7",
- "munkireport/comment": "<4.1",
- "munkireport/managedinstalls": "<2.6",
- "munkireport/munkireport": ">=2.5.3,<5.6.3",
- "mustache/mustache": ">=2,<2.14.1",
- "namshi/jose": "<2.2",
- "neoan3-apps/template": "<1.1.1",
- "neorazorx/facturascripts": "<2022.04",
- "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
- "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3",
- "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.9.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<5.3.10|>=7,<7.0.9|>=7.1,<7.1.7|>=7.2,<7.2.6|>=7.3,<7.3.4|>=8,<8.0.2",
- "neos/neos-ui": "<=8.3.3",
- "neos/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
- "netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15",
- "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",
- "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
- "nilsteampassnet/teampass": "<3.0.10",
- "nonfiction/nterchange": "<4.1.1",
- "notrinos/notrinos-erp": "<=0.7",
- "noumo/easyii": "<=0.9",
- "nukeviet/nukeviet": "<4.5.02",
- "nyholm/psr7": "<1.6.1",
- "nystudio107/craft-seomatic": "<3.4.12",
- "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
- "october/backend": "<1.1.2",
- "october/cms": "<1.0.469|==1.0.469|==1.0.471|==1.1.1",
- "october/october": "<=3.4.4",
- "october/rain": "<1.0.472|>=1.1,<1.1.2",
- "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.5.2",
- "omeka/omeka-s": "<4.0.3",
- "onelogin/php-saml": "<2.10.4",
- "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5",
- "open-web-analytics/open-web-analytics": "<1.7.4",
- "opencart/opencart": "<=3.0.3.7|>=4,<4.0.2.3-dev",
- "openid/php-openid": "<2.3",
- "openmage/magento-lts": "<20.2",
- "opensource-workshop/connect-cms": "<1.7.2|>=2,<2.3.2",
- "orchid/platform": ">=9,<9.4.4|>=14.0.0.0-alpha4,<14.5",
- "oro/calendar-bundle": ">=4.2,<=4.2.6|>=5,<=5.0.6|>=5.1,<5.1.1",
- "oro/commerce": ">=4.1,<5.0.11|>=5.1,<5.1.1",
- "oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7",
- "oro/crm-call-bundle": ">=4.2,<=4.2.5|>=5,<5.0.4|>=5.1,<5.1.1",
- "oro/customer-portal": ">=4.2,<=4.2.8|>=5,<5.0.11|>=5.1,<5.1.1",
- "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<=4.2.10|>=5,<5.0.8",
- "oxid-esales/oxideshop-ce": "<4.5",
- "packbackbooks/lti-1-3-php-library": "<5",
- "padraic/humbug_get_contents": "<1.1.2",
- "pagarme/pagarme-php": "<3",
- "pagekit/pagekit": "<=1.0.18",
- "paragonie/random_compat": "<2",
- "passbolt/passbolt_api": "<2.11",
- "paypal/merchant-sdk-php": "<3.12",
- "pear/archive_tar": "<1.4.14",
- "pear/crypt_gpg": "<1.6.7",
- "pear/pear": "<=1.10.1",
- "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1",
- "personnummer/personnummer": "<3.0.2",
- "phanan/koel": "<5.1.4",
- "phenx/php-svg-lib": "<0.5.1",
- "php-mod/curl": "<2.3.2",
- "phpbb/phpbb": "<3.2.10|>=3.3,<3.3.1",
- "phpfastcache/phpfastcache": "<6.1.5|>=7,<7.1.2|>=8,<8.0.7",
- "phpmailer/phpmailer": "<6.5",
- "phpmussel/phpmussel": ">=1,<1.6",
- "phpmyadmin/phpmyadmin": "<5.2.1",
- "phpmyfaq/phpmyfaq": "<=3.1.7",
- "phpoffice/phpexcel": "<1.8",
- "phpoffice/phpspreadsheet": "<1.16",
- "phpseclib/phpseclib": "<2.0.31|>=3,<3.0.34",
- "phpservermon/phpservermon": "<3.6",
- "phpsysinfo/phpsysinfo": "<3.4.3",
- "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5,<5.6.3",
- "phpwhois/phpwhois": "<=4.2.5",
- "phpxmlrpc/extras": "<0.6.1",
- "phpxmlrpc/phpxmlrpc": "<4.9.2",
- "pi/pi": "<=2.5",
- "pimcore/admin-ui-classic-bundle": "<1.2.2",
- "pimcore/customer-management-framework-bundle": "<3.4.2",
- "pimcore/data-hub": "<1.2.4",
- "pimcore/demo": "<10.3",
- "pimcore/perspective-editor": "<1.5.1",
- "pimcore/pimcore": "<11.1.1",
- "pixelfed/pixelfed": "<=0.11.4",
- "pocketmine/bedrock-protocol": "<8.0.2",
- "pocketmine/pocketmine-mp": "<=4.23|>=5,<5.3.1",
- "pocketmine/raklib": ">=0.14,<0.14.6|>=0.15,<0.15.1",
- "pressbooks/pressbooks": "<5.18",
- "prestashop/autoupgrade": ">=4,<4.10.1",
- "prestashop/blockreassurance": "<=5.1.3",
- "prestashop/blockwishlist": ">=2,<2.1.1",
- "prestashop/contactform": ">=1.0.1,<4.3",
- "prestashop/gamification": "<2.3.2",
- "prestashop/prestashop": "<8.1.2",
- "prestashop/productcomments": "<5.0.2",
- "prestashop/ps_emailsubscription": "<2.6.1",
- "prestashop/ps_facetedsearch": "<3.4.1",
- "prestashop/ps_linklist": "<3.1",
- "privatebin/privatebin": "<1.4",
- "processwire/processwire": "<=3.0.200",
- "propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7",
- "propel/propel1": ">=1,<=1.7.1",
- "pterodactyl/panel": "<1.7",
- "ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2",
- "ptrofimov/beanstalk_console": "<1.7.14",
- "pubnub/pubnub": "<6.1",
- "pusher/pusher-php-server": "<2.2.1",
- "pwweb/laravel-core": "<=0.3.6.0-beta",
- "pyrocms/pyrocms": "<=3.9.1",
- "rainlab/blog-plugin": "<1.4.1",
- "rainlab/debugbar-plugin": "<3.1",
- "rainlab/user-plugin": "<=1.4.5",
- "rankmath/seo-by-rank-math": "<=1.0.95",
- "rap2hpoutre/laravel-log-viewer": "<0.13",
- "react/http": ">=0.7,<1.9",
- "really-simple-plugins/complianz-gdpr": "<6.4.2",
- "remdex/livehelperchat": "<3.99",
- "reportico-web/reportico": "<=7.1.21",
- "rhukster/dom-sanitizer": "<1.0.7",
- "rmccue/requests": ">=1.6,<1.8",
- "robrichards/xmlseclibs": "<3.0.4",
- "roots/soil": "<4.1",
- "rudloff/alltube": "<3.0.3",
- "s-cart/core": "<6.9",
- "s-cart/s-cart": "<6.9",
- "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1",
- "sabre/dav": "<1.7.11|>=1.8,<1.8.9",
- "scheb/two-factor-bundle": "<3.26|>=4,<4.11",
- "sensiolabs/connect": "<4.2.3",
- "serluck/phpwhois": "<=4.2.6",
- "sfroemken/url_redirect": "<=1.2.1",
- "sheng/yiicms": "<=1.2",
- "shopware/core": "<=6.4.20",
- "shopware/platform": "<=6.4.20",
- "shopware/production": "<=6.3.5.2",
- "shopware/shopware": "<=5.7.17",
- "shopware/storefront": "<=6.4.8.1",
- "shopxo/shopxo": "<2.2.6",
- "showdoc/showdoc": "<2.10.4",
- "silverstripe-australia/advancedreports": ">=1,<=2",
- "silverstripe/admin": "<1.13.6",
- "silverstripe/assets": ">=1,<1.11.1",
- "silverstripe/cms": "<4.11.3",
- "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1",
- "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
- "silverstripe/framework": "<4.13.14|>=5,<5.0.13",
- "silverstripe/graphql": "<3.8.2|>=4,<4.1.3|>=4.2,<4.2.5|>=4.3,<4.3.4|>=5,<5.0.3",
- "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1",
- "silverstripe/recipe-cms": ">=4.5,<4.5.3",
- "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
- "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4",
- "silverstripe/silverstripe-omnipay": "<2.5.2|>=3,<3.0.2|>=3.1,<3.1.4|>=3.2,<3.2.1",
- "silverstripe/subsites": ">=2,<2.6.1",
- "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
- "silverstripe/userforms": "<3",
- "silverstripe/versioned-admin": ">=1,<1.11.1",
- "simple-updates/phpwhois": "<=1",
- "simplesamlphp/saml2": "<1.15.4|>=2,<2.3.8|>=3,<3.1.4|==5.0.0.0-alpha12",
- "simplesamlphp/simplesamlphp": "<1.18.6",
- "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",
- "simplesamlphp/simplesamlphp-module-openid": "<1",
- "simplesamlphp/simplesamlphp-module-openidprovider": "<0.9",
- "simplesamlphp/xml-security": "==1.6.11",
- "simplito/elliptic-php": "<1.0.6",
- "sitegeist/fluid-components": "<3.5",
- "sjbr/sr-freecap": "<2.4.6|>=2.5,<2.5.3",
- "slim/psr7": "<1.4.1|>=1.5,<1.5.1|>=1.6,<1.6.1",
- "slim/slim": "<2.6",
- "slub/slub-events": "<3.0.3",
- "smarty/smarty": "<3.1.48|>=4,<4.3.1",
- "snipe/snipe-it": "<=6.2.2",
- "socalnick/scn-social-auth": "<1.15.2",
- "socialiteproviders/steam": "<1.1",
- "spatie/browsershot": "<3.57.4",
- "spipu/html2pdf": "<5.2.8",
- "spoon/library": "<1.4.1",
- "spoonity/tcpdf": "<6.2.22",
- "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
- "ssddanbrown/bookstack": "<22.02.3",
- "statamic/cms": "<4.36",
- "stormpath/sdk": "<9.9.99",
- "studio-42/elfinder": "<2.1.62",
- "subhh/libconnect": "<7.0.8|>=8,<8.1",
- "sukohi/surpass": "<1",
- "sulu/sulu": "<1.6.44|>=2,<2.2.18|>=2.3,<2.3.8|==2.4.0.0-RC1|>=2.5,<2.5.10",
- "sumocoders/framework-user-bundle": "<1.4",
- "swag/paypal": "<5.4.4",
- "swiftmailer/swiftmailer": ">=4,<5.4.5",
- "swiftyedit/swiftyedit": "<1.2",
- "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
- "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
- "sylius/grid-bundle": "<1.10.1",
- "sylius/paypal-plugin": ">=1,<1.2.4|>=1.3,<1.3.1",
- "sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
- "sylius/sylius": "<1.9.10|>=1.10,<1.10.11|>=1.11,<1.11.2",
- "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99",
- "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4",
- "symbiote/silverstripe-seed": "<6.0.3",
- "symbiote/silverstripe-versionedfiles": "<=2.0.3",
- "symfont/process": ">=0",
- "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",
- "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
- "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",
- "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1",
- "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<=5.3.14|>=5.4.3,<=5.4.3|>=6.0.3,<=6.0.3",
- "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7",
- "symfony/http-kernel": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6",
- "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
- "symfony/maker-bundle": ">=1.27,<1.29.2|>=1.30,<1.31.1",
- "symfony/mime": ">=4.3,<4.3.8",
- "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
- "symfony/polyfill": ">=1,<1.10",
- "symfony/polyfill-php55": ">=1,<1.10",
- "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
- "symfony/routing": ">=2,<2.0.19",
- "symfony/security": ">=2,<2.7.51|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.8",
- "symfony/security-bundle": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6",
- "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.9",
- "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
- "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8",
- "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.3.2|>=5.4,<5.4.31|>=6,<6.3.8",
- "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12",
- "symfony/symfony": "<4.4.51|>=5,<5.4.31|>=6,<6.3.8",
- "symfony/translation": ">=2,<2.0.17",
- "symfony/twig-bridge": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8",
- "symfony/ux-autocomplete": "<2.11.2",
- "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3",
- "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",
- "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
- "symfony/webhook": ">=6.3,<6.3.8",
- "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7",
- "symphonycms/symphony-2": "<2.6.4",
- "t3/dce": "<0.11.5|>=2.2,<2.6.2",
- "t3g/svg-sanitizer": "<1.0.3",
- "t3s/content-consent": "<1.0.3|>=2,<2.0.2",
- "tastyigniter/tastyigniter": "<3.3",
- "tcg/voyager": "<=1.4",
- "tecnickcom/tcpdf": "<6.2.22",
- "terminal42/contao-tablelookupwizard": "<3.3.5",
- "thelia/backoffice-default-template": ">=2.1,<2.1.2",
- "thelia/thelia": ">=2.1,<2.1.3",
- "theonedemon/phpwhois": "<=4.2.5",
- "thinkcmf/thinkcmf": "<=5.1.7",
- "thorsten/phpmyfaq": "<3.2.2",
- "tikiwiki/tiki-manager": "<=17.1",
- "tinymce/tinymce": "<5.10.9|>=6,<6.7.3",
- "tinymighty/wiki-seo": "<1.2.2",
- "titon/framework": "<9.9.99",
- "tobiasbg/tablepress": "<=2.0.0.0-RC1",
- "topthink/framework": "<6.0.14",
- "topthink/think": "<=6.1.1",
- "topthink/thinkphp": "<=3.2.3",
- "tpwd/ke_search": "<4.0.3|>=4.1,<4.6.6|>=5,<5.0.2",
- "tribalsystems/zenario": "<=9.4.59197",
- "truckersmp/phpwhois": "<=4.3.1",
- "ttskch/pagination-service-provider": "<1",
- "twig/twig": "<1.44.7|>=2,<2.15.3|>=3,<3.4.3",
- "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2",
- "typo3/cms-backend": ">=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",
- "typo3/cms-core": "<8.7.55|>=9,<9.5.44|>=10,<10.4.41|>=11,<11.5.33|>=12,<12.4.8",
- "typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1",
- "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",
- "typo3/cms-install": ">=12.2,<12.4.8",
- "typo3/cms-rte-ckeditor": ">=9.5,<9.5.42|>=10,<10.4.39|>=11,<11.5.30",
- "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
- "typo3/html-sanitizer": ">=1,<=1.5.2|>=2,<=2.1.3",
- "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3",
- "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
- "typo3/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
- "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10",
- "ua-parser/uap-php": "<3.8",
- "uasoft-indonesia/badaso": "<=2.9.7",
- "unisharp/laravel-filemanager": "<2.6.4",
- "userfrosting/userfrosting": ">=0.3.1,<4.6.3",
- "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",
- "uvdesk/community-skeleton": "<=1.1.1",
- "vanilla/safecurl": "<0.9.2",
- "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4",
- "vova07/yii2-fileapi-widget": "<0.1.9",
- "vrana/adminer": "<4.8.1",
- "waldhacker/hcaptcha": "<2.1.2",
- "wallabag/tcpdf": "<6.2.22",
- "wallabag/wallabag": "<2.6.7",
- "wanglelecc/laracms": "<=1.0.3",
- "web-auth/webauthn-framework": ">=3.3,<3.3.4",
- "webbuilders-group/silverstripe-kapost-bridge": "<0.4",
- "webcoast/deferred-image-processing": "<1.0.2",
- "webklex/laravel-imap": "<5.3",
- "webklex/php-imap": "<5.3",
- "webpa/webpa": "<3.1.2",
- "wikibase/wikibase": "<=1.39.3",
- "wikimedia/parsoid": "<0.12.2",
- "willdurand/js-translation-bundle": "<2.1.1",
- "wintercms/winter": "<1.2.3",
- "woocommerce/woocommerce": "<6.6",
- "wp-cli/wp-cli": "<2.5",
- "wp-graphql/wp-graphql": "<=1.14.5",
- "wpanel/wpanel4-cms": "<=4.3.1",
- "wpcloud/wp-stateless": "<3.2",
- "wwbn/avideo": "<=12.4",
- "xataface/xataface": "<3",
- "xpressengine/xpressengine": "<3.0.15",
- "yeswiki/yeswiki": "<4.1",
- "yetiforce/yetiforce-crm": "<=6.4",
- "yidashi/yii2cmf": "<=2",
- "yii2mod/yii2-cms": "<1.9.2",
- "yiisoft/yii": "<1.1.29",
- "yiisoft/yii2": "<2.0.38",
- "yiisoft/yii2-authclient": "<2.2.15",
- "yiisoft/yii2-bootstrap": "<2.0.4",
- "yiisoft/yii2-dev": "<2.0.43",
- "yiisoft/yii2-elasticsearch": "<2.0.5",
- "yiisoft/yii2-gii": "<=2.2.4",
- "yiisoft/yii2-jui": "<2.0.4",
- "yiisoft/yii2-redis": "<2.0.8",
- "yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6",
- "yoast-seo-for-typo3/yoast_seo": "<7.2.3",
- "yourls/yourls": "<=1.8.2",
- "zencart/zencart": "<=1.5.7.0-beta",
- "zendesk/zendesk_api_client_php": "<2.2.11",
- "zendframework/zend-cache": "<2.4.8|>=2.5,<2.5.3",
- "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",
- "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",
- "zendframework/zend-db": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.10|>=2.3,<2.3.5",
- "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",
- "zendframework/zend-diactoros": "<1.8.4",
- "zendframework/zend-feed": "<2.10.3",
- "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",
- "zendframework/zend-http": "<2.8.1",
- "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",
- "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",
- "zendframework/zend-mail": ">=2,<2.4.11|>=2.5,<2.7.2",
- "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",
- "zendframework/zend-session": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.9|>=2.3,<2.3.4",
- "zendframework/zend-validator": ">=2.3,<2.3.6",
- "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",
- "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",
- "zendframework/zendframework": "<=3",
- "zendframework/zendframework1": "<1.12.20",
- "zendframework/zendopenid": "<2.0.2",
- "zendframework/zendrest": "<2.0.2",
- "zendframework/zendservice-amazon": "<2.0.3",
- "zendframework/zendservice-api": "<1",
- "zendframework/zendservice-audioscrobbler": "<2.0.2",
- "zendframework/zendservice-nirvanix": "<2.0.2",
- "zendframework/zendservice-slideshare": "<2.0.2",
- "zendframework/zendservice-technorati": "<2.0.2",
- "zendframework/zendservice-windowsazure": "<2.0.2",
- "zendframework/zendxml": "<1.0.1",
- "zenstruck/collection": "<0.2.1",
- "zetacomponents/mail": "<1.8.2",
- "zf-commons/zfc-user": "<1.2.2",
- "zfcampus/zf-apigility-doctrine": "<1.0.3",
- "zfr/zfr-oauth2-server-module": "<0.1.2",
- "zoujingli/thinkadmin": "<=6.1.53"
- },
- "default-branch": true,
- "type": "metapackage",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com",
- "role": "maintainer"
- },
- {
- "name": "Ilya Tribusean",
- "email": "slash3b@gmail.com",
- "role": "maintainer"
- }
- ],
- "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
- "keywords": [
- "dev"
- ],
- "support": {
- "issues": "https://github.com/Roave/SecurityAdvisories/issues",
- "source": "https://github.com/Roave/SecurityAdvisories/tree/latest"
- },
- "funding": [
- {
- "url": "https://github.com/Ocramius",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-20T21:04:04+00:00"
- },
- {
- "name": "sebastian/diff",
- "version": "5.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
- "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^10.0",
- "symfony/process": "^4.2 || ^5"
- },
- "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"
- },
- {
- "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/5.0.3"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-05-01T07:48:21+00:00"
- },
- {
- "name": "symfony/debug-bundle",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/debug-bundle.git",
- "reference": "1e07027423d1d37125b60a50997ada26a9d9d202"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/1e07027423d1d37125b60a50997ada26a9d9d202",
- "reference": "1e07027423d1d37125b60a50997ada26a9d9d202",
- "shasum": ""
- },
- "require": {
- "ext-xml": "*",
- "php": ">=8.1",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/http-kernel": "^5.4|^6.0|^7.0",
- "symfony/twig-bridge": "^5.4|^6.0|^7.0",
- "symfony/var-dumper": "^5.4|^6.0|^7.0"
- },
- "conflict": {
- "symfony/config": "<5.4",
- "symfony/dependency-injection": "<5.4"
- },
- "require-dev": {
- "symfony/config": "^5.4|^6.0|^7.0",
- "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "Symfony\\Bundle\\DebugBundle\\": ""
- },
- "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 tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/debug-bundle/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-01T12:07:38+00:00"
- },
- {
- "name": "symfony/maker-bundle",
- "version": "v1.52.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/maker-bundle.git",
- "reference": "112f9466c94a46ca33dc441eee59a12cd1790757"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/112f9466c94a46ca33dc441eee59a12cd1790757",
- "reference": "112f9466c94a46ca33dc441eee59a12cd1790757",
- "shasum": ""
- },
- "require": {
- "doctrine/inflector": "^2.0",
- "nikic/php-parser": "^4.11",
- "php": ">=8.1",
- "symfony/config": "^6.3|^7.0",
- "symfony/console": "^6.3|^7.0",
- "symfony/dependency-injection": "^6.3|^7.0",
- "symfony/deprecation-contracts": "^2.2|^3",
- "symfony/filesystem": "^6.3|^7.0",
- "symfony/finder": "^6.3|^7.0",
- "symfony/framework-bundle": "^6.3|^7.0",
- "symfony/http-kernel": "^6.3|^7.0",
- "symfony/process": "^6.3|^7.0"
- },
- "conflict": {
- "doctrine/doctrine-bundle": "<2.4",
- "doctrine/orm": "<2.10"
- },
- "require-dev": {
- "composer/semver": "^3.0",
- "doctrine/doctrine-bundle": "^2.5.0",
- "doctrine/orm": "^2.10.0",
- "symfony/http-client": "^6.3|^7.0",
- "symfony/phpunit-bridge": "^6.3|^7.0",
- "symfony/security-core": "^6.3|^7.0",
- "symfony/yaml": "^6.3|^7.0",
- "twig/twig": "^2.0|^3.0"
- },
- "type": "symfony-bundle",
- "extra": {
- "branch-alias": {
- "dev-main": "1.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Bundle\\MakerBundle\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
- "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
- "keywords": [
- "code generator",
- "dev",
- "generator",
- "scaffold",
- "scaffolding"
- ],
- "support": {
- "issues": "https://github.com/symfony/maker-bundle/issues",
- "source": "https://github.com/symfony/maker-bundle/tree/v1.52.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-10-31T18:23:49+00:00"
- },
- {
- "name": "symfony/web-profiler-bundle",
- "version": "v6.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/web-profiler-bundle.git",
- "reference": "14752d3fb77c3c69b6cee7c03c06e2d6494a196b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/14752d3fb77c3c69b6cee7c03c06e2d6494a196b",
- "reference": "14752d3fb77c3c69b6cee7c03c06e2d6494a196b",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/config": "^5.4|^6.0|^7.0",
- "symfony/framework-bundle": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/routing": "^5.4|^6.0|^7.0",
- "symfony/twig-bundle": "^5.4|^6.0",
- "twig/twig": "^2.13|^3.0.4"
- },
- "conflict": {
- "symfony/form": "<5.4",
- "symfony/mailer": "<5.4",
- "symfony/messenger": "<5.4",
- "symfony/twig-bundle": ">=7.0"
- },
- "require-dev": {
- "symfony/browser-kit": "^5.4|^6.0|^7.0",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/css-selector": "^5.4|^6.0|^7.0",
- "symfony/stopwatch": "^5.4|^6.0|^7.0"
- },
- "type": "symfony-bundle",
- "autoload": {
- "psr-4": {
- "Symfony\\Bundle\\WebProfilerBundle\\": ""
- },
- "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 development tool that gives detailed information about the execution of any request",
- "homepage": "https://symfony.com",
- "keywords": [
- "dev"
- ],
- "support": {
- "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.4.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2023-11-07T14:57:07+00:00"
- }
- ],
- "aliases": [],
- "minimum-stability": "stable",
- "stability-flags": {
- "cleverage/doctrine-process-bundle": 5,
- "cleverage/process-bundle": 20,
- "cleverage/process-ui-bundle": 20,
- "roave/security-advisories": 20
- },
- "prefer-stable": false,
- "prefer-lowest": false,
- "platform": [],
- "platform-dev": [],
- "plugin-api-version": "2.6.0"
-}
diff --git a/config/bundles.php b/config/bundles.php
index 90c7a37..3f5d622 100644
--- a/config/bundles.php
+++ b/config/bundles.php
@@ -4,15 +4,20 @@
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
CleverAge\ProcessBundle\CleverAgeProcessBundle::class => ['all' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
- League\FlysystemBundle\FlysystemBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
EasyCorp\Bundle\EasyAdminBundle\EasyAdminBundle::class => ['all' => true],
- CleverAge\ProcessUiBundle\CleverAgeProcessUiBundle::class => ['all' => true],
+ CleverAge\UiProcessBundle\CleverAgeUiProcessBundle::class => ['all' => true],
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
CleverAge\DoctrineProcessBundle\CleverAgeDoctrineProcessBundle::class => ['all' => true],
+ Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
+ CleverAge\SoapProcessBundle\CleverAgeSoapProcessBundle::class => ['all' => true],
+ CleverAge\RestProcessBundle\CleverAgeRestProcessBundle::class => ['all' => true],
+ CleverAge\FlysystemProcessBundle\CleverAgeFlysystemProcessBundle::class => ['all' => true],
+ League\FlysystemBundle\FlysystemBundle::class => ['all' => true],
+ Symfony\UX\TwigComponent\TwigComponentBundle::class => ['all' => true],
];
diff --git a/config/packages/cleverage_process.yaml b/config/packages/cleverage_process.yaml
index 6ea6c70..41a06c1 100644
--- a/config/packages/cleverage_process.yaml
+++ b/config/packages/cleverage_process.yaml
@@ -1,7 +1,7 @@
imports:
- { resource: process/ }
-clever_age_process_ui:
+clever_age_ui_process:
logs:
report_increment_level: Info # all logs higher are equal than Info were added to ProcessExecution report
@@ -16,3 +16,8 @@ clever_age_process:
transformers:
callback:
callback: strtolower
+ json_decode:
+ transformers:
+ callback:
+ callback: json_decode
+ right_parameters: [ true ] # $associative: When true, JSON objects will be returned as associative arrays
diff --git a/config/packages/csrf.yaml b/config/packages/csrf.yaml
new file mode 100644
index 0000000..89402ba
--- /dev/null
+++ b/config/packages/csrf.yaml
@@ -0,0 +1,12 @@
+# Enable stateless CSRF protection for forms and logins/logouts
+# Uncomment following if you are using Symfony 7.2 or higher
+#framework:
+# form:
+# csrf_protection:
+# token_id: submit
+#
+# csrf_protection:
+# stateless_token_ids:
+# - submit
+# - authenticate
+# - logout
diff --git a/config/packages/doctrine.yaml b/config/packages/doctrine.yaml
index ec0f77e..25138b9 100644
--- a/config/packages/doctrine.yaml
+++ b/config/packages/doctrine.yaml
@@ -4,22 +4,28 @@ doctrine:
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)
- #server_version: '15'
+ #server_version: '16'
profiling_collect_backtrace: '%kernel.debug%'
+ use_savepoints: true
orm:
auto_generate_proxy_classes: true
enable_lazy_ghost_objects: true
report_fields_where_declared: true
validate_xml_mapping: true
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
+ identity_generation_preferences:
+ Doctrine\DBAL\Platforms\PostgreSQLPlatform: identity
auto_mapping: true
mappings:
App:
+ type: attribute
is_bundle: false
dir: '%kernel.project_dir%/src/Entity'
prefix: 'App\Entity'
alias: App
+ controller_resolver:
+ auto_mapping: false
when@test:
doctrine:
diff --git a/config/packages/flysystem.yaml b/config/packages/flysystem.yaml
index d104e2e..f70675c 100644
--- a/config/packages/flysystem.yaml
+++ b/config/packages/flysystem.yaml
@@ -1,7 +1,17 @@
-# Read the documentation at https://github.com/thephpleague/flysystem-bundle/blob/master/docs/1-getting-started.md
+parameters:
+ local.storage.dir: '%kernel.project_dir%/var/storage/local'
flysystem:
- storages:
- default.storage:
- adapter: 'local'
- options:
- directory: '%kernel.project_dir%/var/storage/default'
+ storages:
+ local.storage:
+ adapter: 'local'
+ options:
+ directory: '%local.storage.dir%'
+
+ remote.storage:
+ adapter: 'sftp'
+ options:
+ host: '%env(string:SFTP_HOST)%'
+ port: '%env(int:SFTP_PORT)%'
+ username: '%env(string:SFTP_USERNAME)%'
+ password: '%env(string:SFTP_PASSWORD)%'
+ root: '%env(string:SFTP_ROOT)%'
\ No newline at end of file
diff --git a/config/packages/framework.yaml b/config/packages/framework.yaml
index 6d85c29..7e1ee1f 100644
--- a/config/packages/framework.yaml
+++ b/config/packages/framework.yaml
@@ -1,22 +1,12 @@
# see https://symfony.com/doc/current/reference/configuration/framework.html
framework:
secret: '%env(APP_SECRET)%'
- #csrf_protection: true
- http_method_override: false
- handle_all_throwables: true
- # Enables session support. Note that the session will ONLY be started if you read or write from it.
- # Remove or comment this section to explicitly disable session support.
- session:
- handler_id: null
- cookie_secure: auto
- cookie_samesite: lax
- storage_factory_id: session.storage.factory.native
+ # Note that the session will be started ONLY if you read or write from it.
+ session: true
#esi: true
#fragments: true
- php_errors:
- log: true
when@test:
framework:
diff --git a/config/packages/monolog.yaml b/config/packages/monolog.yaml
index 8c9efa9..9db7d8a 100644
--- a/config/packages/monolog.yaml
+++ b/config/packages/monolog.yaml
@@ -59,3 +59,4 @@ when@prod:
type: stream
channels: [deprecation]
path: php://stderr
+ formatter: monolog.formatter.json
diff --git a/config/packages/process/demo.constant_iterable_output.yaml b/config/packages/process/demo.constant_iterable_output.yaml
new file mode 100644
index 0000000..66f1b6c
--- /dev/null
+++ b/config/packages/process/demo.constant_iterable_output.yaml
@@ -0,0 +1,22 @@
+clever_age_process:
+ configurations:
+ demo.constant_iterable_output:
+ description: >
+ A simple process which iterate a constant output data
+ help: >
+ Ex: bin/console cleverage:process:execute demo.constant_iterable_output
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\ConstantIterableOutputTask'
+ options:
+ output:
+ id: 123
+ firstname: Test1
+ lastname: Test2
+ outputs: [ debug ]
+ debug:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.constant_output.yaml b/config/packages/process/demo.constant_output.yaml
new file mode 100644
index 0000000..ede058e
--- /dev/null
+++ b/config/packages/process/demo.constant_output.yaml
@@ -0,0 +1,22 @@
+clever_age_process:
+ configurations:
+ demo.constant_output:
+ description: >
+ A simple process which output a constant data
+ help: >
+ Ex: bin/console cleverage:process:execute demo.constant_output
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\ConstantOutputTask'
+ options:
+ output:
+ id: 123
+ firstname: Test1
+ lastname: Test2
+ outputs: [ debug ]
+ debug:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.counter.yaml b/config/packages/process/demo.counter.yaml
new file mode 100644
index 0000000..d5d142c
--- /dev/null
+++ b/config/packages/process/demo.counter.yaml
@@ -0,0 +1,33 @@
+clever_age_process:
+ configurations:
+ demo.counter:
+ description: >
+ A simple process which count the number of times the task is processed and continue every 3 iterations
+ help: >
+ Ex: bin/console cleverage:process:execute demo.counter
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\ConstantIterableOutputTask'
+ options:
+ output:
+ test1: test1
+ test2: test2
+ test3: test3
+ test4: test4
+ test5: test5
+ test6: test6
+ test7: test7
+ test8: test8
+ test9: test9
+ outputs: [ counter ]
+ counter:
+ service: '@CleverAge\ProcessBundle\Task\CounterTask'
+ options:
+ flush_every: 3
+ outputs: [ debug ]
+ debug:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.csv_reader.yaml b/config/packages/process/demo.csv_reader.yaml
new file mode 100644
index 0000000..e45baa1
--- /dev/null
+++ b/config/packages/process/demo.csv_reader.yaml
@@ -0,0 +1,24 @@
+clever_age_process:
+ configurations:
+ demo.csv_reader:
+ description: >
+ A simple process which read a specific csv to log/debug each line
+ help: >
+ Ex: bin/console cleverage:process:execute demo.csv_reader
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\File\Csv\CsvReaderTask'
+ outputs: [ log_line, dump ]
+ options:
+ file_path: '%kernel.project_dir%/var/data/sample.csv'
+ log_line:
+ service: '@CleverAge\ProcessBundle\Task\Reporting\LoggerTask'
+ options:
+ message: Read line
+ level: info
+ dump:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.debug.yaml b/config/packages/process/demo.debug.yaml
index 974bfb9..13cf8e0 100644
--- a/config/packages/process/demo.debug.yaml
+++ b/config/packages/process/demo.debug.yaml
@@ -1,6 +1,10 @@
clever_age_process:
configurations:
demo.debug:
+ description: >
+ A simple process which output as debug
+ help: >
+ Ex: bin/console cleverage:process:execute demo.debug
options:
ui:
source: Bar
diff --git a/config/packages/process/demo.die.yaml b/config/packages/process/demo.die.yaml
index 6866436..29fc198 100644
--- a/config/packages/process/demo.die.yaml
+++ b/config/packages/process/demo.die.yaml
@@ -1,6 +1,10 @@
clever_age_process:
configurations:
demo.die:
+ description: >
+ A simple process which output as die
+ help: >
+ Ex: bin/console cleverage:process:execute demo.die
options:
ui:
source: Bar
diff --git a/config/packages/process/demo.doctrine.read.yaml b/config/packages/process/demo.doctrine.database.read.yaml
similarity index 59%
rename from config/packages/process/demo.doctrine.read.yaml
rename to config/packages/process/demo.doctrine.database.read.yaml
index 9c248a6..40085c7 100644
--- a/config/packages/process/demo.doctrine.read.yaml
+++ b/config/packages/process/demo.doctrine.database.read.yaml
@@ -1,6 +1,10 @@
clever_age_process:
configurations:
- demo.doctrine.read:
+ demo.doctrine.database.read:
+ description: >
+ A simple process to use DoctrineProcessBundle as database reader
+ help: >
+ Ex: bin/console cleverage:process:execute demo.doctrine.database.read
options:
ui:
source: Bar
@@ -9,8 +13,8 @@ clever_age_process:
entry:
service: '@CleverAge\DoctrineProcessBundle\Task\Database\DatabaseReaderTask'
options:
- table: 'process_user'
+ table: 'book'
outputs: [debug]
debug:
- service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
\ No newline at end of file
diff --git a/config/packages/process/demo.doctrine.database.update.yaml b/config/packages/process/demo.doctrine.database.update.yaml
new file mode 100644
index 0000000..c751e2a
--- /dev/null
+++ b/config/packages/process/demo.doctrine.database.update.yaml
@@ -0,0 +1,31 @@
+clever_age_process:
+ configurations:
+ demo.doctrine.database.update:
+ description: >
+ A simple process to use DoctrineProcessBundle as database updater
+ help: >
+ Ex: bin/console cleverage:process:execute demo.doctrine.database.update -c firstname:Paul -c lastname:Durant
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ entrypoint_type: text
+ default:
+ context:
+ - key: firstname
+ value: Steven
+ - key: lastname
+ value: King
+ tasks:
+ entry:
+ service: '@CleverAge\DoctrineProcessBundle\Task\Database\DatabaseUpdaterTask'
+ options:
+ sql: 'update author set firstname = :firstname, lastname = :lastname'
+ input_as_params: false
+ params:
+ firstname: '{{ firstname }}'
+ lastname: '{{ lastname }}'
+ outputs: [debug]
+
+ debug:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
\ No newline at end of file
diff --git a/config/packages/process/demo.doctrine.entitymanager.batch_writer.yaml b/config/packages/process/demo.doctrine.entitymanager.batch_writer.yaml
new file mode 100644
index 0000000..2855ca8
--- /dev/null
+++ b/config/packages/process/demo.doctrine.entitymanager.batch_writer.yaml
@@ -0,0 +1,54 @@
+clever_age_process:
+ configurations:
+ demo.doctrine.entitymanager.batch_writer:
+ description: >
+ A simple process to use DoctrineProcessBundle as entity batch_writer
+ help: >
+ Ex: bin/console cleverage:process:execute demo.doctrine.entitymanager.batch_writer
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\ConstantIterableOutputTask'
+ options:
+ output:
+ - author1:
+ firstname: Firstname 1
+ lastname: Lastname
+ - author2:
+ firstname: Firstname 2
+ lastname: Lastname
+ - author3:
+ firstname: Firstname 3
+ lastname: Lastname
+ outputs: [iterate]
+ iterate:
+ service: '@CleverAge\ProcessBundle\Task\InputIteratorTask'
+ outputs: [denormalizer]
+ denormalizer:
+ service: '@CleverAge\ProcessBundle\Task\Serialization\DenormalizerTask'
+ options:
+ class: App\Entity\Author
+ outputs: [batch_write]
+ batch_write:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineBatchWriterTask'
+ outputs: [aggregate_write]
+ options:
+ batch_count: 2
+ aggregate_write:
+ service: '@CleverAge\ProcessBundle\Task\AggregateIterableTask'
+ outputs: [fetch]
+ fetch:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineReaderTask'
+ options:
+ class_name: 'App\Entity\Author'
+ criteria:
+ lastname: 'Lastname'
+ outputs: [agregate_fetch]
+ agregate_fetch:
+ service: '@CleverAge\ProcessBundle\Task\AggregateIterableTask'
+ outputs: [dump]
+ dump:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
\ No newline at end of file
diff --git a/config/packages/process/demo.doctrine.entitymanager.reader_cleaner.yaml b/config/packages/process/demo.doctrine.entitymanager.reader_cleaner.yaml
new file mode 100644
index 0000000..fe135bd
--- /dev/null
+++ b/config/packages/process/demo.doctrine.entitymanager.reader_cleaner.yaml
@@ -0,0 +1,28 @@
+clever_age_process:
+ configurations:
+ demo.doctrine.entitymanager.reader_cleaner:
+ description: >
+ A simple process to use DoctrineProcessBundle as entity reader (then clean the entitymanager)
+ help: >
+ Ex: bin/console cleverage:process:execute demo.doctrine.entitymanager.reader_cleaner
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineReaderTask'
+ options:
+ class_name: 'App\Entity\Author'
+ criteria:
+ lastname: 'King'
+ order_by:
+ lastname: 'asc'
+ outputs: [dump]
+
+ dump:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
+ outputs: [clean]
+
+ clean:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineCleanerTask'
diff --git a/config/packages/process/demo.doctrine.entitymanager.reader_clearer.yaml b/config/packages/process/demo.doctrine.entitymanager.reader_clearer.yaml
new file mode 100644
index 0000000..1d4e4df
--- /dev/null
+++ b/config/packages/process/demo.doctrine.entitymanager.reader_clearer.yaml
@@ -0,0 +1,28 @@
+clever_age_process:
+ configurations:
+ demo.doctrine.entitymanager.reader_clearer:
+ description: >
+ A simple process to use DoctrineProcessBundle as entity reader (then clear the entitymanager)
+ help: >
+ Ex: bin/console cleverage:process:execute demo.doctrine.entitymanager.reader_clear
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineReaderTask'
+ options:
+ class_name: 'App\Entity\Author'
+ criteria:
+ lastname: 'King'
+ order_by:
+ lastname: 'asc'
+ outputs: [dump]
+
+ dump:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
+ outputs: [clear]
+
+ clear:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\ClearEntityManagerTask'
diff --git a/config/packages/process/demo.doctrine.entitymanager.reader_detacher.yaml b/config/packages/process/demo.doctrine.entitymanager.reader_detacher.yaml
new file mode 100644
index 0000000..b82ea12
--- /dev/null
+++ b/config/packages/process/demo.doctrine.entitymanager.reader_detacher.yaml
@@ -0,0 +1,28 @@
+clever_age_process:
+ configurations:
+ demo.doctrine.entitymanager.reader_detacher:
+ description: >
+ A simple process to use DoctrineProcessBundle as entity reader then detach the entity
+ help: >
+ Ex: bin/console cleverage:process:execute demo.doctrine.entitymanager.reader_detacher
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineReaderTask'
+ options:
+ class_name: 'App\Entity\Author'
+ criteria:
+ lastname: 'King'
+ order_by:
+ lastname: 'asc'
+ outputs: [dump]
+
+ dump:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
+ outputs: [detach]
+
+ detach:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineDetacherTask'
diff --git a/config/packages/process/demo.doctrine.entitymanager.reader_refresher.yaml b/config/packages/process/demo.doctrine.entitymanager.reader_refresher.yaml
new file mode 100644
index 0000000..59f2f29
--- /dev/null
+++ b/config/packages/process/demo.doctrine.entitymanager.reader_refresher.yaml
@@ -0,0 +1,43 @@
+clever_age_process:
+ configurations:
+ demo.doctrine.entitymanager.reader_refresher:
+ description: >
+ A simple process to use DoctrineProcessBundle as entity reader, modify the entity then refresh it
+ help: >
+ Ex: bin/console cleverage:process:execute demo.doctrine.entitymanager.reader_refresher
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineReaderTask'
+ options:
+ class_name: 'App\Entity\Author'
+ criteria:
+ lastname: 'King'
+ order_by:
+ lastname: 'asc'
+ outputs: [dump]
+
+ dump:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
+ outputs: [modify]
+
+ modify:
+ service: '@CleverAge\ProcessBundle\Task\PropertySetterTask'
+ options:
+ values:
+ firstname: Gérard
+ outputs: [dump_modified]
+
+ dump_modified:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
+ outputs: [refresh]
+
+ refresh:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineRefresherTask'
+ outputs: [dump_refreshed]
+
+ dump_refreshed:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.doctrine.entitymanager.reader_remover.yaml b/config/packages/process/demo.doctrine.entitymanager.reader_remover.yaml
new file mode 100644
index 0000000..f8d1205
--- /dev/null
+++ b/config/packages/process/demo.doctrine.entitymanager.reader_remover.yaml
@@ -0,0 +1,38 @@
+clever_age_process:
+ configurations:
+ demo.doctrine.entitymanager.reader_remover:
+ description: >
+ A simple process to use DoctrineProcessBundle as entity reader (remove the entity and tries to fetch the same entity)
+ help: >
+ Ex: bin/console cleverage:process:execute demo.doctrine.entitymanager.reader_remover
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineReaderTask'
+ options:
+ class_name: 'App\Entity\Book'
+ criteria:
+ title: 'Dracula'
+ outputs: [dump]
+
+ dump:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
+ outputs: [remover]
+
+ remover:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineRemoverTask'
+ outputs: [refetch]
+
+ refetch:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineReaderTask'
+ options:
+ class_name: 'App\Entity\Book'
+ criteria:
+ title: 'Dracula'
+ outputs: [dumpnullid]
+
+ dumpnullid:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.doctrine.entitymanager.writer.yaml b/config/packages/process/demo.doctrine.entitymanager.writer.yaml
new file mode 100644
index 0000000..ab9b121
--- /dev/null
+++ b/config/packages/process/demo.doctrine.entitymanager.writer.yaml
@@ -0,0 +1,36 @@
+clever_age_process:
+ configurations:
+ demo.doctrine.entitymanager.writer:
+ description: >
+ A simple process to use DoctrineProcessBundle as entity writer
+ help: >
+ Ex: bin/console cleverage:process:execute demo.doctrine.entitymanager.writer
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\ConstantOutputTask'
+ options:
+ output:
+ firstname: Isaac
+ lastname: Asimov
+ outputs: [denormalize]
+ denormalize:
+ service: '@CleverAge\ProcessBundle\Task\Serialization\DenormalizerTask'
+ options:
+ class: App\Entity\Author
+ outputs: [save]
+ save:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineWriterTask'
+ outputs: [fetch]
+ fetch:
+ service: '@CleverAge\DoctrineProcessBundle\Task\EntityManager\DoctrineReaderTask'
+ options:
+ class_name: 'App\Entity\Author'
+ criteria:
+ lastname: 'Asimov'
+ outputs: [dump]
+ dump:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
\ No newline at end of file
diff --git a/config/packages/process/demo.dummy.yaml b/config/packages/process/demo.dummy.yaml
new file mode 100644
index 0000000..eb97bae
--- /dev/null
+++ b/config/packages/process/demo.dummy.yaml
@@ -0,0 +1,33 @@
+clever_age_process:
+ configurations:
+ demo.dummy:
+ description: >
+ A simple process with multiple output
+ help: >
+ Ex: bin/console cleverage:process:execute demo.dummy
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\DummyTask'
+ outputs: [ output1, output2 ]
+ output1:
+ service: '@CleverAge\ProcessBundle\Task\ConstantOutputTask'
+ options:
+ output:
+ id: 123
+ firstname: Test1
+ lastname: Test2
+ outputs: [ debug ]
+ output2:
+ service: '@CleverAge\ProcessBundle\Task\ConstantOutputTask'
+ options:
+ output:
+ id: 456
+ firstname: Test3
+ lastname: Test4
+ outputs: [ debug ]
+ debug:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.error_forwarder.yaml b/config/packages/process/demo.error_forwarder.yaml
new file mode 100644
index 0000000..1b041ee
--- /dev/null
+++ b/config/packages/process/demo.error_forwarder.yaml
@@ -0,0 +1,22 @@
+clever_age_process:
+ configurations:
+ demo.error_forwarder:
+ description: >
+ A simple process which forward data to an error output
+ help: >
+ Ex: bin/console cleverage:process:execute demo.error_forwarder
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\ConstantIterableOutputTask'
+ options:
+ output:
+ error1: Error 1
+ error2: Error 2
+ error3: Error 3
+ outputs: [ error_forwarder ]
+ error_forwarder:
+ service: '@CleverAge\ProcessBundle\Task\Debug\ErrorForwarderTask'
diff --git a/config/packages/process/demo.event_dispatcher.yaml b/config/packages/process/demo.event_dispatcher.yaml
new file mode 100644
index 0000000..f7f843a
--- /dev/null
+++ b/config/packages/process/demo.event_dispatcher.yaml
@@ -0,0 +1,19 @@
+clever_age_process:
+ configurations:
+ demo.event_dispatcher:
+ description: >
+ A simple process which dispatch an event
+ help: >
+ Ex: bin/console cleverage:process:execute demo.event_dispatcher
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\Event\EventDispatcherTask'
+ options:
+ event_name: 'myapp.myevent'
+ outputs: [ debug ]
+ debug:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.logger.yaml b/config/packages/process/demo.logger.yaml
new file mode 100644
index 0000000..c32bef3
--- /dev/null
+++ b/config/packages/process/demo.logger.yaml
@@ -0,0 +1,17 @@
+clever_age_process:
+ configurations:
+ demo.logger:
+ description: >
+ A simple process which log a message into a specific logger
+ help: >
+ Ex: bin/console cleverage:process:execute demo.logger
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\Reporting\LoggerTask'
+ options:
+ level: warning
+ message: DEMO LOGGER
diff --git a/config/packages/process/demo.rest.get.yaml b/config/packages/process/demo.rest.get.yaml
new file mode 100644
index 0000000..ec2ba3d
--- /dev/null
+++ b/config/packages/process/demo.rest.get.yaml
@@ -0,0 +1,50 @@
+clever_age_process:
+ configurations:
+ demo.rest.get:
+ description: >
+ A simple process to use RestProcessBundle with GET method
+ help: >
+ Ex: bin/console cleverage:process:execute demo.rest.get -c codePostal:"'46800'"
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ entrypoint_type: text
+ default: ## set default values to UI launch form
+ context:
+ - key: codePostal # allow to change delimiter via UI form
+ value: ''
+ constraints: ## constraint to apply on the form
+ - Collection:
+ fields:
+ input: ~
+ context:
+ - Collection:
+ fields:
+ codePostal:
+ - Regex:
+ pattern: '/^\d{5}$/'
+ message: 'Le code postal doit être composé de 5 chiffres.'
+ tasks:
+ entry:
+ service: '@CleverAge\RestProcessBundle\Task\RequestTask'
+ error_strategy: 'stop'
+ options:
+ client: apicarto_ign
+ url: '/codes-postaux/communes/{codePostal}'
+ method: 'GET'
+ url_parameters: { codePostal: '{{ codePostal }}' }
+ outputs: [json_decode]
+ json_decode:
+ service: '@CleverAge\ProcessBundle\Task\TransformerTask'
+ options:
+ transformers:
+ json_decode: ~
+ outputs: [dto]
+ dto:
+ service: '@CleverAge\ProcessBundle\Task\Serialization\DenormalizerTask'
+ options:
+ class: 'App\Dto\Commune[]'
+ outputs: [debug]
+ debug:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.rest.post.yaml b/config/packages/process/demo.rest.post.yaml
new file mode 100644
index 0000000..44fcca9
--- /dev/null
+++ b/config/packages/process/demo.rest.post.yaml
@@ -0,0 +1,32 @@
+clever_age_process:
+ configurations:
+ demo.rest.post:
+ description: >
+ A simple process to use RestProcessBundle with POST method
+ help: >
+ Ex: bin/console cleverage:process:execute demo.rest.post
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\RestProcessBundle\Task\RequestTask'
+ error_strategy: 'stop'
+ options:
+ client: apicarto_ign
+ url: '/aoc/appellation-viticole'
+ method: 'POST'
+ data:
+ geom:
+ type: "Point"
+ coordinates: [-1.691634,48.104237]
+ outputs: [json_decode]
+ json_decode:
+ service: '@CleverAge\ProcessBundle\Task\TransformerTask'
+ options:
+ transformers:
+ json_decode: ~
+ outputs: [debug]
+ debug:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.rules.yaml b/config/packages/process/demo.rules.yaml
new file mode 100644
index 0000000..853d4e1
--- /dev/null
+++ b/config/packages/process/demo.rules.yaml
@@ -0,0 +1,59 @@
+clever_age_process:
+ configurations:
+ demo.rules:
+ description: >
+ A simple process which use RulesTransformer
+ help: >
+ Ex: bin/console cleverage:process:execute demo.rules
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\ConstantIterableOutputTask'
+ options:
+ output:
+ - order:
+ origin: marketplace
+ customer:
+ id: 123
+ - order:
+ origin: e-commerce
+ - order:
+ origin: other
+ outputs: [ transform_value, transform_variable ]
+ transform_value:
+ service: '@CleverAge\ProcessBundle\Task\TransformerTask'
+ options:
+ transformers:
+ rules:
+ rules_set:
+ - condition: 'value["order"]["origin"] === "marketplace"'
+ transformers:
+ property_accessor:
+ property_path: '[customer][id]'
+ - condition: 'value["order"]["origin"] === "e-commerce"'
+ constant: value1234
+ - default: true
+ set_null: true
+ outputs: [ debug ]
+ transform_variable:
+ service: '@CleverAge\ProcessBundle\Task\TransformerTask'
+ options:
+ transformers:
+ rules:
+ use_value_as_variables: true
+ expression_variables: [ order, customer ]
+ rules_set:
+ - condition: 'order["origin"] === "marketplace"'
+ transformers:
+ property_accessor:
+ property_path: '[customer][id]'
+ - condition: 'order["origin"] === "e-commerce"'
+ constant: variable1234
+ - default: true
+ set_null: true
+ outputs: [ debug ]
+ debug:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.sftp_copy.yaml b/config/packages/process/demo.sftp_copy.yaml
new file mode 100644
index 0000000..7b90f36
--- /dev/null
+++ b/config/packages/process/demo.sftp_copy.yaml
@@ -0,0 +1,45 @@
+clever_age_process:
+ configurations:
+ demo.sftp_copy:
+ description: >
+ A sample process to copy files between flysystem storages.
+ source_filesystem context variable is used to define source filesystem.
+ destination_filesystem context variable is used to define destination filesystem.
+ file_pattern context variable is used to define file_pattern to match.
+ Following help show us how to delete all .csv files from filesystem remote.storage to local.storage
+ See config/packages/flysystem.yaml to see configured flysystem/storages.
+ help: >
+ bin/console cleverage:process:execute demo.sftp_copy -c source_filesystem:remote.storage -c destination_filesystem:local.storage -c file_pattern:/.csv$/ -vv
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ copy:
+ service: '@CleverAge\FlysystemProcessBundle\Task\FileFetchTask'
+ description: >
+ Download .csv files from remote.storage to local.storage.
+ outputs: aggregate
+ options:
+ source_filesystem: '{{ source_filesystem }}'
+ destination_filesystem: '{{ destination_filesystem }}'
+ file_pattern: '{{ file_pattern }}'
+ remove_source: true
+ aggregate:
+ service: '@CleverAge\ProcessBundle\Task\AggregateIterableTask'
+ description: >
+ Aggregate files previously downloaded. Then when all files are downloaded pass to read_local_dir
+ task to read each files one by one.
+ outputs: read_local_dir
+ read_local_dir:
+ service: '@CleverAge\ProcessBundle\Task\File\FolderBrowserTask'
+ outputs: log_local_file
+ options:
+ folder_path: '%local.storage.dir%'
+ log_local_file:
+ service: '@CleverAge\ProcessBundle\Task\Reporting\LoggerTask'
+ options:
+ message: Read file.
+ level: info
+
+
diff --git a/config/packages/process/demo.sftp_purge.yaml b/config/packages/process/demo.sftp_purge.yaml
new file mode 100644
index 0000000..1ac24d8
--- /dev/null
+++ b/config/packages/process/demo.sftp_purge.yaml
@@ -0,0 +1,36 @@
+clever_age_process:
+ configurations:
+ demo.sftp_purge:
+ description: >
+ A sample process to remove files from flysystem storage.
+ filesystem context variable is used to define source filesystem.
+ file_pattern context variable is used to define file_pattern to match.
+ Following help show us how to delete all .csv files from filesystem remote.storage
+ See config/packages/flysystem.yaml to see configured flysystem/storages.
+ help: >
+ bin/console cleverage:process:execute demo.sftp_purge -c filesystem:remote.storage -c file_pattern:/.csv$/ -vv
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ get_files:
+ service: '@CleverAge\FlysystemProcessBundle\Task\ListContentTask'
+ description: >
+ List .csv files from remote.storage.
+ See config/packages/flysystem.yaml to see configured flysystem/storages.
+ outputs: get_file_path
+ options:
+ filesystem: '{{ filesystem }}'
+ file_pattern: '{{ file_pattern }}'
+ get_file_path:
+ service: '@CleverAge\ProcessBundle\Task\PropertyGetterTask'
+ description: >
+ Get filepath within flysystem/storage.
+ outputs: remove
+ options:
+ property: 'path'
+ remove:
+ service: '@CleverAge\FlysystemProcessBundle\Task\RemoveFileTask'
+ options:
+ filesystem: 'remote.storage'
diff --git a/config/packages/process/demo.soap.yaml b/config/packages/process/demo.soap.yaml
new file mode 100644
index 0000000..d546265
--- /dev/null
+++ b/config/packages/process/demo.soap.yaml
@@ -0,0 +1,62 @@
+clever_age_process:
+ configurations:
+ demo.soap:
+ description: >
+ A simple process to use SoapProcessBundle
+ help: >
+ Ex: bin/console cleverage:process:execute demo.soap
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\SoapProcessBundle\Task\RequestTask'
+ error_strategy: 'stop'
+ options:
+ client: oorsprong_countryinfo
+ method: 'FullCountryInfoAllCountries'
+ outputs: [filter_europe]
+ filter_europe:
+ service: '@CleverAge\ProcessBundle\Task\TransformerTask'
+ options:
+ transformers:
+ property_accessor:
+ property_path: 'FullCountryInfoAllCountriesResult.tCountryInfo'
+ array_filter:
+ condition:
+ match:
+ sContinentCode: 'EU'
+ outputs: [phone_code, iso_code]
+ phone_code:
+ service: '@CleverAge\ProcessBundle\Task\TransformerTask'
+ options:
+ transformers:
+ array_map:
+ transformers:
+ cast: # Convert stdClass to array
+ type: 'array'
+ mapping:
+ mapping:
+ phoneCode:
+ code: '[sPhoneCode]'
+ flag:
+ code: '[sCountryFlag]'
+ outputs: [debug]
+ iso_code:
+ service: '@CleverAge\ProcessBundle\Task\TransformerTask'
+ options:
+ transformers:
+ array_map:
+ transformers:
+ cast: # Convert stdClass to array
+ type: 'array'
+ mapping:
+ mapping:
+ isoCode:
+ code: '[sISOCode]'
+ name:
+ code: '[sName]'
+ outputs: [debug]
+ debug:
+ service: '@CleverAge\ProcessBundle\Task\Debug\DebugTask'
diff --git a/config/packages/process/demo.stopwatch.yaml b/config/packages/process/demo.stopwatch.yaml
new file mode 100644
index 0000000..825a10f
--- /dev/null
+++ b/config/packages/process/demo.stopwatch.yaml
@@ -0,0 +1,14 @@
+clever_age_process:
+ configurations:
+ demo.stopwatch:
+ description: >
+ A simple process which output as stopwatch
+ help: >
+ Ex: bin/console cleverage:process:execute demo.stopwatch
+ options:
+ ui:
+ source: Bar
+ target: Foo
+ tasks:
+ entry:
+ service: '@CleverAge\ProcessBundle\Task\Debug\StopwatchTask'
diff --git a/config/packages/process/demo.sample.yaml b/config/packages/process/demo.transformer.yaml
similarity index 92%
rename from config/packages/process/demo.sample.yaml
rename to config/packages/process/demo.transformer.yaml
index cab171e..bd62107 100644
--- a/config/packages/process/demo.sample.yaml
+++ b/config/packages/process/demo.transformer.yaml
@@ -1,6 +1,10 @@
clever_age_process:
configurations:
- demo.sample:
+ demo.transformer:
+ description: >
+ A simple process which transform data
+ help: >
+ Ex: bin/console cleverage:process:execute demo.transformer
options:
ui:
source: Bar
diff --git a/config/packages/process/demo.upload_and_run.yaml b/config/packages/process/demo.upload_and_run.yaml
index ead4f70..9262c46 100644
--- a/config/packages/process/demo.upload_and_run.yaml
+++ b/config/packages/process/demo.upload_and_run.yaml
@@ -1,6 +1,10 @@
clever_age_process:
configurations:
demo.upload_and_run:
+ description: >
+ A simple process which upload a csv file and read it to log/debug each line
+ help: >
+ Ex: bin/console cleverage:process:execute demo.upload_and_run --input=/path/to/file.csv -c delimiter:";"
entry_point: entrypoint # for upload_and_run process entry_point is required
options:
ui:
@@ -25,7 +29,7 @@ clever_age_process:
choices: [',', ';']
message: delimiter context must be , or ;. {{ value }} given.
tasks:
- entrypoint: # Add log info to describe witch file is reading
+ entrypoint: # Add log info to describe which file is reading
service: '@CleverAge\ProcessBundle\Task\Reporting\LoggerTask'
options:
message: Read file
@@ -36,7 +40,7 @@ clever_age_process:
service: '@CleverAge\ProcessBundle\Task\File\Csv\InputCsvReaderTask'
outputs: [ log_line, dump ]
options:
- delimiter: '{{ delimiter }}' ## delimiter is contextualized you must add -c delimiter:; on console execute
+ delimiter: '{{ delimiter }}' ## delimiter is contextualized you must add -c delimiter:";" on console execute
log_line:
service: '@CleverAge\ProcessBundle\Task\Reporting\LoggerTask'
options:
diff --git a/config/packages/routing.yaml b/config/packages/routing.yaml
index 4b766ce..8166181 100644
--- a/config/packages/routing.yaml
+++ b/config/packages/routing.yaml
@@ -1,7 +1,5 @@
framework:
router:
- utf8: true
-
# Configure how to generate URLs in non-HTTP contexts, such as CLI commands.
# See https://symfony.com/doc/current/routing.html#generating-urls-in-commands
#default_uri: http://localhost
diff --git a/config/packages/translation.yaml b/config/packages/translation.yaml
index 888f0ba..b3f8f9c 100644
--- a/config/packages/translation.yaml
+++ b/config/packages/translation.yaml
@@ -4,12 +4,4 @@ framework:
default_path: '%kernel.project_dir%/translations'
fallbacks:
- en
-# providers:
-# crowdin:
-# dsn: '%env(CROWDIN_DSN)%'
-# loco:
-# dsn: '%env(LOCO_DSN)%'
-# lokalise:
-# dsn: '%env(LOKALISE_DSN)%'
-# phrase:
-# dsn: '%env(PHRASE_DSN)%'
+ providers:
diff --git a/config/packages/twig.yaml b/config/packages/twig.yaml
index f9f4cc5..3f795d9 100644
--- a/config/packages/twig.yaml
+++ b/config/packages/twig.yaml
@@ -1,5 +1,5 @@
twig:
- default_path: '%kernel.project_dir%/templates'
+ file_name_pattern: '*.twig'
when@test:
twig:
diff --git a/config/packages/twig_component.yaml b/config/packages/twig_component.yaml
new file mode 100644
index 0000000..fd17ac6
--- /dev/null
+++ b/config/packages/twig_component.yaml
@@ -0,0 +1,5 @@
+twig_component:
+ anonymous_template_directory: 'components/'
+ defaults:
+ # Namespace & directory for components
+ App\Twig\Components\: 'components/'
diff --git a/config/packages/uid.yaml b/config/packages/uid.yaml
deleted file mode 100644
index 0152094..0000000
--- a/config/packages/uid.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-framework:
- uid:
- default_uuid_version: 7
- time_based_uuid_version: 7
diff --git a/config/packages/validator.yaml b/config/packages/validator.yaml
index 0201281..dd47a6a 100644
--- a/config/packages/validator.yaml
+++ b/config/packages/validator.yaml
@@ -1,7 +1,5 @@
framework:
validation:
- email_validation_mode: html5
-
# Enables validator auto-mapping support.
# For instance, basic validation constraints will be inferred from Doctrine's metadata.
#auto_mapping:
diff --git a/config/routes.yaml b/config/routes.yaml
index 50e2345..a50daba 100644
--- a/config/routes.yaml
+++ b/config/routes.yaml
@@ -1,5 +1,5 @@
-process-bundle-ui:
- resource: '@CleverAgeProcessUiBundle/src/Controller'
+ui-process-bundle:
+ resource: '@CleverAgeUiProcessBundle/src/Controller'
type: attribute
controllers:
diff --git a/config/routes/security.yaml b/config/routes/security.yaml
new file mode 100644
index 0000000..f853be1
--- /dev/null
+++ b/config/routes/security.yaml
@@ -0,0 +1,3 @@
+_security_logout:
+ resource: security.route_loader.logout
+ type: service
diff --git a/config/services.yaml b/config/services.yaml
index 805601b..87002c4 100644
--- a/config/services.yaml
+++ b/config/services.yaml
@@ -33,3 +33,26 @@ services:
# add more service definitions when explicit configuration is needed
# please note that last definitions always *replace* previous ones
+
+ # For cleverage/soap-process-bundle
+ app.cleverage_soap_process.client.oorsprong_countryinfo:
+ class: CleverAge\SoapProcessBundle\Client\Client
+ bind:
+ $code: 'oorsprong_countryinfo'
+ $wsdl: 'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL'
+ $options:
+ trace: true
+ exceptions: true
+ calls:
+ - [ setSoapOptions, [ { features: SOAP_SINGLE_ELEMENT_ARRAYS} ] ]
+ tags:
+ - { name: cleverage.soap.client }
+
+ # For cleverage/rest-process-bundle
+ app.cleverage_rest_process.client.apicarto_ign:
+ class: CleverAge\RestProcessBundle\Client\Client
+ bind:
+ $code: 'apicarto_ign'
+ $uri: 'https://apicarto.ign.fr/api'
+ tags:
+ - { name: cleverage.rest.client }
diff --git a/docs/index.md b/docs/index.md
new file mode 100644
index 0000000..9084491
--- /dev/null
+++ b/docs/index.md
@@ -0,0 +1,10 @@
+## Usage
+
+```bash
+make start
+```
+
+Then access to UI via http://process-bundle-demo.localhost/process (username: admin@clever-age.com / password: admin@clever-age.com)
+
+## Reference
+
diff --git a/docs/reference/tasks/_template.md b/docs/reference/tasks/_template.md
new file mode 100644
index 0000000..ed1d4a5
--- /dev/null
+++ b/docs/reference/tasks/_template.md
@@ -0,0 +1,44 @@
+TaskName
+========
+
+_Describe main goal an use cases of the task_
+
+Task reference
+--------------
+
+* **Service**: `ClassName`
+
+Accepted inputs
+---------------
+
+_Description of allowed types_
+
+Possible outputs
+----------------
+
+_Description of possible types_
+
+Options
+-------
+
+| Code | Type | Required | Default | Description |
+| ---- | ---- | :------: | ------- | ----------- |
+| `code` | `type` | **X** _or nothing_ | `default value` _if available_ | _description_ |
+
+Examples
+--------
+
+_YAML samples and explanations_
+
+* Example 1
+ - details
+ - details
+
+```yaml
+# Task configuration level
+code:
+ service: '@service_ref'
+ options:
+ a: 1
+ b: 2
+```
diff --git a/migrations/Version20241210154810.php b/migrations/Version20241210154810.php
new file mode 100644
index 0000000..a05a0a4
--- /dev/null
+++ b/migrations/Version20241210154810.php
@@ -0,0 +1,35 @@
+addSql('CREATE TABLE author (id INT AUTO_INCREMENT NOT NULL, firstname VARCHAR(255) NOT NULL, lastname VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
+ $this->addSql('CREATE TABLE book (id INT AUTO_INCREMENT NOT NULL, author_id INT NOT NULL, title VARCHAR(255) NOT NULL, INDEX IDX_CBE5A331F675F31B (author_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
+ $this->addSql('ALTER TABLE book ADD CONSTRAINT FK_CBE5A331F675F31B FOREIGN KEY (author_id) REFERENCES author (id)');
+ }
+
+ public function down(Schema $schema): void
+ {
+ // this down() migration is auto-generated, please modify it to your needs
+ $this->addSql('ALTER TABLE book DROP FOREIGN KEY FK_CBE5A331F675F31B');
+ $this->addSql('DROP TABLE author');
+ $this->addSql('DROP TABLE book');
+ }
+}
diff --git a/phpstan.neon b/phpstan.neon
new file mode 100644
index 0000000..383a07c
--- /dev/null
+++ b/phpstan.neon
@@ -0,0 +1,17 @@
+parameters:
+ level: 8
+ paths:
+ - src
+ - tests
+ ignoreErrors:
+ - '#type has no value type specified in iterable type#'
+ - '#has parameter .* with no value type specified in iterable type#'
+ - '#has no value type specified in iterable type array#'
+ - '#configureOptions\(\) has no return type specified.#'
+ - '#configure\(\) has no return type specified#'
+ - '#process\(\) has no return type specified#'
+ - '#should return Iterator but returns Traversable#'
+ - '#Negated boolean expression is always false#'
+ reportUnmatchedIgnoredErrors: false
+ inferPrivatePropertyTypeFromConstructor: true
+ treatPhpDocTypesAsCertain: false
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
new file mode 100644
index 0000000..766495c
--- /dev/null
+++ b/phpunit.xml.dist
@@ -0,0 +1,27 @@
+
+
+
+
+ tests
+
+
+
+
+
+ src
+
+
+
diff --git a/rector.php b/rector.php
new file mode 100644
index 0000000..72a2408
--- /dev/null
+++ b/rector.php
@@ -0,0 +1,30 @@
+withPhpVersion(PhpVersion::PHP_82)
+ ->withPaths([
+ __DIR__.'/src',
+ __DIR__.'/tests',
+ ])
+ ->withPhpSets(php82: true)
+ // here we can define, what prepared sets of rules will be applied
+ ->withPreparedSets(
+ deadCode: true,
+ codeQuality: true
+ )
+ ->withSets([
+ LevelSetList::UP_TO_PHP_82,
+ SymfonySetList::SYMFONY_64,
+ SymfonySetList::SYMFONY_71,
+ SymfonySetList::SYMFONY_CODE_QUALITY,
+ SymfonySetList::SYMFONY_CONSTRUCTOR_INJECTION,
+ SymfonySetList::ANNOTATIONS_TO_ATTRIBUTES,
+ ])
+;
diff --git a/src/DataFixtures/AppFixtures.php b/src/DataFixtures/AppFixtures.php
new file mode 100644
index 0000000..1312434
--- /dev/null
+++ b/src/DataFixtures/AppFixtures.php
@@ -0,0 +1,36 @@
+setEmail('admin@clever-age.com');
+ $admin->setRoles(['ROLE_USER', 'ROLE_ADMIN']);
+ $admin->setPassword($this->passwordEncoder->hashPassword($admin, 'admin@clever-age.com'));
+
+ $manager->persist($admin);
+
+ $manager->flush();
+ }
+}
diff --git a/src/DataFixtures/DemoFixtures.php b/src/DataFixtures/DemoFixtures.php
new file mode 100644
index 0000000..18c2636
--- /dev/null
+++ b/src/DataFixtures/DemoFixtures.php
@@ -0,0 +1,60 @@
+setFirstName('Stephen');
+ $author1->setLastname('King');
+ $manager->persist($author1);
+
+ $book1 = new Book();
+ $book1->setAuthor($author1);
+ $book1->setTitle('It');
+ $manager->persist($book1);
+
+ $book2 = new Book();
+ $book2->setAuthor($author1);
+ $book2->setTitle('Salem');
+ $manager->persist($book2);
+
+ $author2 = new Author();
+ $author2->setFirstName('Ray');
+ $author2->setLastname('Bradbury');
+ $manager->persist($author2);
+
+ $book3 = new Book();
+ $book3->setAuthor($author2);
+ $book3->setTitle('Fahrenheit 451');
+ $manager->persist($book3);
+
+ $author3 = new Author();
+ $author3->setFirstName('Bram');
+ $author3->setLastname('Stoker');
+ $manager->persist($author3);
+
+ $book4 = new Book();
+ $book4->setAuthor($author3);
+ $book4->setTitle('Dracula');
+ $manager->persist($book4);
+
+ $manager->flush();
+ }
+}
diff --git a/src/Dto/Commune.php b/src/Dto/Commune.php
new file mode 100644
index 0000000..aa6d01c
--- /dev/null
+++ b/src/Dto/Commune.php
@@ -0,0 +1,20 @@
+
+ */
+ #[ORM\OneToMany(targetEntity: Book::class, mappedBy: 'author', orphanRemoval: true)]
+ private Collection $books;
+
+ public function __construct()
+ {
+ $this->books = new ArrayCollection();
+ }
+
+ public function getId(): ?int
+ {
+ return $this->id;
+ }
+
+ public function getFirstname(): ?string
+ {
+ return $this->firstname;
+ }
+
+ public function setFirstname(string $firstname): static
+ {
+ $this->firstname = $firstname;
+
+ return $this;
+ }
+
+ public function getLastname(): ?string
+ {
+ return $this->lastname;
+ }
+
+ public function setLastname(string $lastname): static
+ {
+ $this->lastname = $lastname;
+
+ return $this;
+ }
+
+ /**
+ * @return Collection
+ */
+ public function getBooks(): Collection
+ {
+ return $this->books;
+ }
+}
diff --git a/src/Entity/Book.php b/src/Entity/Book.php
new file mode 100644
index 0000000..e559638
--- /dev/null
+++ b/src/Entity/Book.php
@@ -0,0 +1,60 @@
+id;
+ }
+
+ public function getTitle(): ?string
+ {
+ return $this->title;
+ }
+
+ public function setTitle(string $title): static
+ {
+ $this->title = $title;
+
+ return $this;
+ }
+
+ public function getAuthor(): ?Author
+ {
+ return $this->author;
+ }
+
+ public function setAuthor(Author $author): static
+ {
+ $this->author = $author;
+
+ return $this;
+ }
+}
diff --git a/src/Kernel.php b/src/Kernel.php
index 779cd1f..f901b92 100644
--- a/src/Kernel.php
+++ b/src/Kernel.php
@@ -1,5 +1,14 @@
+ */
+class AuthorRepository extends ServiceEntityRepository
+{
+ public function __construct(ManagerRegistry $registry)
+ {
+ parent::__construct($registry, Author::class);
+ }
+
+ // /**
+ // * @return Author[] Returns an array of Author objects
+ // */
+ // public function findByExampleField($value): array
+ // {
+ // return $this->createQueryBuilder('a')
+ // ->andWhere('a.exampleField = :val')
+ // ->setParameter('val', $value)
+ // ->orderBy('a.id', 'ASC')
+ // ->setMaxResults(10)
+ // ->getQuery()
+ // ->getResult()
+ // ;
+ // }
+
+ // public function findOneBySomeField($value): ?Author
+ // {
+ // return $this->createQueryBuilder('a')
+ // ->andWhere('a.exampleField = :val')
+ // ->setParameter('val', $value)
+ // ->getQuery()
+ // ->getOneOrNullResult()
+ // ;
+ // }
+}
diff --git a/src/Repository/BookRepository.php b/src/Repository/BookRepository.php
new file mode 100644
index 0000000..c6c4114
--- /dev/null
+++ b/src/Repository/BookRepository.php
@@ -0,0 +1,52 @@
+
+ */
+class BookRepository extends ServiceEntityRepository
+{
+ public function __construct(ManagerRegistry $registry)
+ {
+ parent::__construct($registry, Book::class);
+ }
+
+ // /**
+ // * @return Book[] Returns an array of Book objects
+ // */
+ // public function findByExampleField($value): array
+ // {
+ // return $this->createQueryBuilder('b')
+ // ->andWhere('b.exampleField = :val')
+ // ->setParameter('val', $value)
+ // ->orderBy('b.id', 'ASC')
+ // ->setMaxResults(10)
+ // ->getQuery()
+ // ->getResult()
+ // ;
+ // }
+
+ // public function findOneBySomeField($value): ?Book
+ // {
+ // return $this->createQueryBuilder('b')
+ // ->andWhere('b.exampleField = :val')
+ // ->setParameter('val', $value)
+ // ->getQuery()
+ // ->getOneOrNullResult()
+ // ;
+ // }
+}
diff --git a/symfony.lock b/symfony.lock
index 5ead600..bd72f73 100644
--- a/symfony.lock
+++ b/symfony.lock
@@ -1,20 +1,29 @@
{
"cleverage/doctrine-process-bundle": {
- "version": "dev-v2-dev"
+ "version": "dev-prepare-release"
+ },
+ "cleverage/flysystem-process-bundle": {
+ "version": "dev-prepare-release"
},
"cleverage/process-bundle": {
- "version": "dev-v4-dev"
+ "version": "dev-prepare-release"
+ },
+ "cleverage/rest-process-bundle": {
+ "version": "dev-prepare-release"
},
- "cleverage/process-ui-bundle": {
- "version": "dev-v2-dev"
+ "cleverage/soap-process-bundle": {
+ "version": "dev-prepare-release"
+ },
+ "cleverage/ui-process-bundle": {
+ "version": "dev-prepare-release"
},
"doctrine/doctrine-bundle": {
- "version": "2.10",
+ "version": "2.13",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
- "version": "2.10",
- "ref": "e025a6cb69b195970543820b2f18ad21724473fa"
+ "version": "2.13",
+ "ref": "8d96c0b51591ffc26794d865ba3ee7d193438a83"
},
"files": [
"config/packages/doctrine.yaml",
@@ -22,6 +31,18 @@
"src/Repository/.gitignore"
]
},
+ "doctrine/doctrine-fixtures-bundle": {
+ "version": "3.6",
+ "recipe": {
+ "repo": "github.com/symfony/recipes",
+ "branch": "main",
+ "version": "3.0",
+ "ref": "1f5514cfa15b947298df4d771e694e578d4c204d"
+ },
+ "files": [
+ "src/DataFixtures/AppFixtures.php"
+ ]
+ },
"doctrine/doctrine-migrations-bundle": {
"version": "3.2",
"recipe": {
@@ -69,25 +90,51 @@
"var/storage/.gitignore"
]
},
+ "php-cs-fixer/shim": {
+ "version": "3.64",
+ "recipe": {
+ "repo": "github.com/symfony/recipes",
+ "branch": "main",
+ "version": "3.0",
+ "ref": "16422bf8eac6c3be42afe07d37e2abc89d2bdf6b"
+ },
+ "files": [
+ ".php-cs-fixer.dist.php"
+ ]
+ },
"phpstan/phpstan": {
- "version": "1.10",
+ "version": "2.0",
"recipe": {
"repo": "github.com/symfony/recipes-contrib",
"branch": "main",
"version": "1.0",
- "ref": "f10b8054de1a94a3b9e8806a6453fd5c98491c44"
+ "ref": "5e490cc197fb6bb1ae22e5abbc531ddc633b6767"
},
"files": [
"phpstan.dist.neon"
]
},
+ "phpunit/phpunit": {
+ "version": "9.6",
+ "recipe": {
+ "repo": "github.com/symfony/recipes",
+ "branch": "main",
+ "version": "9.6",
+ "ref": "7364a21d87e658eb363c5020c072ecfdc12e2326"
+ },
+ "files": [
+ ".env.test",
+ "phpunit.xml.dist",
+ "tests/bootstrap.php"
+ ]
+ },
"symfony/console": {
- "version": "6.3",
+ "version": "7.2",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "5.3",
- "ref": "da0c8be8157600ad34f10ff0c9cc91232522e047"
+ "ref": "1781ff40d8a17d87cf53f8d4cf0c8346ed2bb461"
},
"files": [
"bin/console"
@@ -106,24 +153,37 @@
]
},
"symfony/flex": {
- "version": "2.3",
+ "version": "2.4",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
- "version": "1.0",
- "ref": "146251ae39e06a95be0fe3d13c807bcf3938b172"
+ "version": "2.4",
+ "ref": "52e9754527a15e2b79d9a610f98185a1fe46622a"
},
"files": [
- ".env"
+ ".env",
+ ".env.dev"
+ ]
+ },
+ "symfony/form": {
+ "version": "7.2",
+ "recipe": {
+ "repo": "github.com/symfony/recipes",
+ "branch": "main",
+ "version": "7.2",
+ "ref": "7d86a6723f4a623f59e2bf966b6aad2fc461d36b"
+ },
+ "files": [
+ "config/packages/csrf.yaml"
]
},
"symfony/framework-bundle": {
- "version": "6.3",
+ "version": "7.2",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
- "version": "6.2",
- "ref": "af47254c5e4cd543e6af3e4508298ffebbdaddd3"
+ "version": "7.2",
+ "ref": "87bcf6f7c55201f345d8895deda46d2adbdbaa89"
},
"files": [
"config/packages/cache.yaml",
@@ -158,24 +218,24 @@
]
},
"symfony/monolog-bundle": {
- "version": "3.8",
+ "version": "3.10",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "3.7",
- "ref": "213676c4ec929f046dfde5ea8e97625b81bc0578"
+ "ref": "aff23899c4440dd995907613c1dd709b6f59503f"
},
"files": [
"config/packages/monolog.yaml"
]
},
"symfony/routing": {
- "version": "6.3",
+ "version": "7.2",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
- "version": "6.2",
- "ref": "e0a11b4ccb8c9e70b574ff5ad3dfdcd41dec5aa6"
+ "version": "7.0",
+ "ref": "21b72649d5622d8f7da329ffb5afb232a023619d"
},
"files": [
"config/packages/routing.yaml",
@@ -183,24 +243,25 @@
]
},
"symfony/security-bundle": {
- "version": "6.3",
+ "version": "7.2",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
- "version": "6.0",
- "ref": "8a5b112826f7d3d5b07027f93786ae11a1c7de48"
+ "version": "6.4",
+ "ref": "2ae08430db28c8eb4476605894296c82a642028f"
},
"files": [
- "config/packages/security.yaml"
+ "config/packages/security.yaml",
+ "config/routes/security.yaml"
]
},
"symfony/translation": {
- "version": "6.3",
+ "version": "7.2",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
"version": "6.3",
- "ref": "64fe617084223633e1dedf9112935d8c95410d3e"
+ "ref": "e28e27f53663cc34f0be2837aba18e3a1bef8e7b"
},
"files": [
"config/packages/translation.yaml",
@@ -208,12 +269,12 @@
]
},
"symfony/twig-bundle": {
- "version": "6.3",
+ "version": "7.2",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
- "version": "6.3",
- "ref": "b7772eb20e92f3fb4d4fe756e7505b4ba2ca1a2c"
+ "version": "6.4",
+ "ref": "cab5fd2a13a45c266d45a7d9337e28dee6272877"
},
"files": [
"config/packages/twig.yaml",
@@ -221,24 +282,34 @@
]
},
"symfony/uid": {
- "version": "6.3",
+ "version": "7.2",
+ "recipe": {
+ "repo": "github.com/symfony/recipes",
+ "branch": "main",
+ "version": "7.0",
+ "ref": "0df5844274d871b37fc3816c57a768ffc60a43a5"
+ },
+ "files": []
+ },
+ "symfony/ux-twig-component": {
+ "version": "2.22",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
- "version": "6.2",
- "ref": "d294ad4add3e15d7eb1bae0221588ca89b38e558"
+ "version": "2.13",
+ "ref": "67814b5f9794798b885cec9d3f48631424449a01"
},
"files": [
- "config/packages/uid.yaml"
+ "config/packages/twig_component.yaml"
]
},
"symfony/validator": {
- "version": "6.3",
+ "version": "7.2",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "main",
- "version": "5.3",
- "ref": "c32cfd98f714894c4f128bb99aa2530c1227603c"
+ "version": "7.0",
+ "ref": "8c1c4e28d26a124b0bb273f537ca8ce443472bfd"
},
"files": [
"config/packages/validator.yaml"
diff --git a/templates/base.html.twig b/templates/base.html.twig
index 67598ac..1069c14 100644
--- a/templates/base.html.twig
+++ b/templates/base.html.twig
@@ -3,7 +3,7 @@
{% block title %}Welcome!{% endblock %}
-
+
{% block stylesheets %}
{% endblock %}
diff --git a/tests/.gitkeep b/tests/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
new file mode 100644
index 0000000..2781c46
--- /dev/null
+++ b/tests/bootstrap.php
@@ -0,0 +1,20 @@
+bootEnv(dirname(__DIR__).'/.env');
+}
diff --git a/var/data.db b/var/data.db
deleted file mode 100644
index 8c7472e..0000000
Binary files a/var/data.db and /dev/null differ