diff --git a/.editorconfig b/.editorconfig
deleted file mode 100644
index bcc67af..0000000
--- a/.editorconfig
+++ /dev/null
@@ -1,15 +0,0 @@
-root = true
-
-[*]
-charset = utf-8
-end_of_line = lf
-insert_final_newline = true
-indent_style = space
-indent_size = 4
-trim_trailing_whitespace = true
-
-[*.yml]
-indent_size = 2
-
-[*.yaml]
-indent_size = 2
diff --git a/.env.sample b/.env.sample
deleted file mode 100644
index 9c85c70..0000000
--- a/.env.sample
+++ /dev/null
@@ -1,18 +0,0 @@
-# Environment (prod or local)
-APP_ENV=local
-
-# Debug mode set to TRUE disables view caching and enables higher verbosity
-DEBUG=true
-
-# Verbosity level
-VERBOSITY_LEVEL=verbose # basic, verbose, debug
-
-# Set to an application specific value, used to encrypt/decrypt cookies etc
-ENCRYPTER_KEY={encrypt-key}
-
-# Monolog
-MONOLOG_DEFAULT_CHANNEL=default
-MONOLOG_DEFAULT_LEVEL=DEBUG # DEBUG, INFO, NOTICE, WARNING, ERROR, CRITICAL, ALERT, EMERGENCY
-
-# Telemetry
-TELEMETRY_DRIVER=null
\ No newline at end of file
diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml
new file mode 100644
index 0000000..939d4a2
--- /dev/null
+++ b/.github/workflows/security.yml
@@ -0,0 +1,30 @@
+name: security
+
+on:
+ push:
+ pull_request:
+ schedule:
+ - cron: '0 0 * * *'
+
+jobs:
+ security:
+ name: Security
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ php: [ '8.3' ]
+ os: [ ubuntu-latest ]
+ steps:
+ - name: Set Git To Use LF
+ run: |
+ git config --global core.autocrlf false
+ git config --global core.eol lf
+ - name: Checkout
+ uses: actions/checkout@v4
+ - name: Setup PHP ${{ matrix.php }}
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: ${{ matrix.php }}
+ - name: Composer Audit
+ run: composer audit
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
new file mode 100644
index 0000000..eeeb776
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,41 @@
+name: tests
+
+on:
+ push:
+ pull_request:
+ schedule:
+ - cron: '0 0 * * *'
+
+jobs:
+ tests:
+ name: Bench (${{matrix.php}}, ${{ matrix.os }}, ${{ matrix.stability }})
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ php: [ '8.3' ]
+ os: [ ubuntu-latest, macos-latest, windows-latest ]
+ stability: [ prefer-lowest, prefer-stable ]
+ steps:
+ - name: Set Git To Use LF
+ run: |
+ git config --global core.autocrlf false
+ git config --global core.eol lf
+ - name: Checkout
+ uses: actions/checkout@v4
+ - name: Setup PHP ${{ matrix.php }}
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: ${{ matrix.php }}
+ tools: pecl
+ ini-values: "memory_limit=-1"
+ - name: Validate Composer
+ run: composer validate
+ - name: Install Dependencies
+ uses: nick-invision/retry@v2
+ with:
+ timeout_minutes: 5
+ max_attempts: 5
+ command: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
+ - name: Execute Benchmarks
+ run: composer bench
diff --git a/.gitignore b/.gitignore
index 93a3a7a..f417e74 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,8 +1,2 @@
-.idea
-vendor
-runtime
-rr*
-protoc-gen-php-grpc*
-.env
-.phpunit.result.cache
-.deptrac.cache
+/.idea
+/vendor
diff --git a/.rr.yaml b/.rr.yaml
deleted file mode 100644
index 76e0147..0000000
--- a/.rr.yaml
+++ /dev/null
@@ -1,32 +0,0 @@
-version: '2.7'
-rpc:
- listen: 'tcp://127.0.0.1:6001'
-server:
- command: 'php app.php'
- relay: pipes
-http:
- address: '0.0.0.0:8080'
- middleware:
- - gzip
- - static
- static:
- dir: public
- forbid:
- - .php
- - .htaccess
- pool:
- num_workers: 1
- supervisor:
- max_worker_memory: 100
-jobs:
- pool:
- num_workers: 2
- max_worker_memory: 100
- consume: { }
-kv:
- local:
- driver: memory
- config:
- interval: 60
-metrics:
- address: '127.0.0.1:2112'
diff --git a/.styleci.yml b/.styleci.yml
deleted file mode 100644
index aa7f13d..0000000
--- a/.styleci.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-risky: false
-preset: psr12
-enabled:
- # Risky Fixers
- # - declare_strict_types
- # - void_return
- - ordered_class_elements
- - linebreak_after_opening_tag
- - single_quote
- - no_blank_lines_after_phpdoc
- - unary_operator_spaces
- - no_useless_else
- - no_useless_return
- - trailing_comma_in_multiline_array
-finder:
- exclude:
- - "tests"
- - "public"
diff --git a/README.md b/README.md
index 3f2db4d..ff8e56b 100644
--- a/README.md
+++ b/README.md
@@ -2,41 +2,118 @@
This benchmark shows the performance of the PHP dependency injection containers.
-- [Symfony Dependency Injection Container](https://packagist.org/packages/symfony/dependency-injection)
-- [PHP-DI](https://packagist.org/packages/php-di/php-di)
-- [Laravel Container](https://packagist.org/packages/illuminate/container)
-- [Spiral Container](https://packagist.org/packages/spiral/core)
-- [Yii3 Container](https://packagist.org/packages/yiisoft/di)
-- [League Container](https://packagist.org/packages/league/container)
-- [Laminas Container](https://packagist.org/packages/laminas/laminas-di)
-
```bash
-php app.php containers:bench --iterations=10000
+composer bench
```
## Results
+
+
+### NonSharedServiceCreationByNameBench
+
+Create service on every call.
+
+```php
+$app->get(Service::class); // Service#1
+$app->get(Service::class); // Service#2
+```
+
+```bash
+NonSharedServiceCreationByNameBench
++----------------------+------+-----+----------+---------+---------+
+| subject | revs | its | mem_peak | mode | rstdev |
++----------------------+------+-----+----------+---------+---------+
+| benchSymfonyRuntime | 1000 | 20 | 2.331mb | 1.401μs | ±21.02% |
+| benchSymfonyCompiled | 1000 | 20 | 2.331mb | 0.121μs | ±15.62% |
+| benchYii | 1000 | 20 | 2.330mb | 0.652μs | ±14.86% |
+| benchLaravel | 1000 | 20 | 2.330mb | 0.897μs | ±14.04% |
+| benchSpiral | 1000 | 20 | 2.330mb | 2.216μs | ±6.21% |
+| benchPhpDi | 1000 | 20 | 2.330mb | 0.714μs | ±15.66% |
+| benchLaminas | 1000 | 20 | 2.330mb | 0.424μs | ±26.24% |
++----------------------+------+-----+----------+---------+---------+
+```
+
+- Best: **Symfony** (0.121μs)
+- Worst: **Spiral** (2.216μs)
+
+### SharedServiceCreationByNameBench
+
+Simple singleton service creation.
+
+```php
+$app->get(Service::class); // Service#1
+$app->get(Service::class); // Service#1
+```
+
+```bash
+SharedServiceCreationByNameBench
++----------------------+------+-----+----------+---------+---------+
+| subject | revs | its | mem_peak | mode | rstdev |
++----------------------+------+-----+----------+---------+---------+
+| benchSymfonyRuntime | 1000 | 20 | 2.330mb | 0.138μs | ±26.40% |
+| benchSymfonyCompiled | 1000 | 20 | 2.330mb | 0.041μs | ±16.09% |
+| benchYii | 1000 | 20 | 2.330mb | 0.048μs | ±11.47% |
+| benchLaravel | 1000 | 20 | 2.330mb | 0.206μs | ±14.76% |
+| benchSpiral | 1000 | 20 | 2.330mb | 0.774μs | ±25.12% |
+| benchPhpDi | 1000 | 20 | 2.330mb | 0.046μs | ±24.64% |
+| benchLaminas | 1000 | 20 | 2.330mb | 0.042μs | ±21.90% |
++----------------------+------+-----+----------+---------+---------+
+```
+
+- Best: **Symfony** (0.041μs)
+- Worst: **Spiral** (0.774μs)
+
+### ServiceWithAutowireBench
+
+Service singleton creation with autowiring.
+
+```php
+$app->get(Service::class); // Service#1 { dependency: InnerService }
+$app->get(Service::class); // Service#1 { dependency: InnerService }
+```
+
+```bash
+ServiceWithAutowireBench
++----------------------+------+-----+----------+---------+---------+
+| subject | revs | its | mem_peak | mode | rstdev |
++----------------------+------+-----+----------+---------+---------+
+| benchSymfonyRuntime | 1000 | 20 | 2.336mb | 0.134μs | ±7.46% |
+| benchSymfonyCompiled | 1000 | 20 | 2.336mb | 0.041μs | ±8.78% |
+| benchYii | 1000 | 20 | 2.336mb | 0.048μs | ±22.22% |
+| benchLaravel | 1000 | 20 | 2.336mb | 0.202μs | ±5.34% |
+| benchSpiral | 1000 | 20 | 2.336mb | 0.464μs | ±24.02% |
+| benchPhpDi | 1000 | 20 | 2.336mb | 0.045μs | ±16.34% |
+| benchLaminas | 1000 | 20 | 2.336mb | 0.042μs | ±2.49% |
++----------------------+------+-----+----------+---------+---------+
+```
+
+- Best: **Symfony** (0.041μs)
+- Worst: **Spiral** (0.464μs)
+
+### ServiceCreationFromFactoryBench
+
+Create service on every call from singleton factory service.
+
+```php
+$app->get(Service::class); // Service#1 (from Factory#1->create())
+$app->get(Service::class); // Service#2 (from Factory#1->create())
+```
+
```bash
-Benching container performance with getting by name.
- ------- ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------
- # PHP DI Yii Spiral Laravel League Laminas Symfony
- ------- ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------
- min 0.006 ms - 0 bytes 0.0063 ms - 0 bytes 0.0085 ms - 0 bytes 0.0162 ms - 0 bytes 0.0226 ms - 0 bytes 0.0062 ms - 0 bytes 0.0111 ms - 0 bytes
- max 3.9425 ms - 0 bytes 1.4256 ms - 0 bytes 0.1591 ms - 0 bytes 0.1421 ms - 0 bytes 1.6615 ms - 2.00 MB 0.2457 ms - 0 bytes 0.2025 ms - 0 bytes
- avg 0.0077234 ms - 0 bytes 0.0076936 ms - 0 bytes 0.0122158 ms - 0 bytes 0.0203376 ms - 0 bytes 0.0303355 ms - 0 bytes 0.0100444 ms - 0 bytes 0.0145603 ms - 0 bytes
- total 988.3077 ms 960.6244 ms 1052.6636 ms 1121.8188 ms 1230.8812 ms 1063.3366 ms 1116.9395 ms
- ------- ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------
- Order - 2 - - 1 - - 4 - - 6 - - 7 - - 3 - - 5 -
- ------- ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------
-
-Benching container performance with autowiring.
- ------- ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------
- # PHP DI Yii Spiral Laravel League Laminas
- ------- ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------
- min 0.0487 ms - 0 bytes 0.0706 ms - 0 bytes 0.3245 ms - 0 bytes 0.1753 ms - 0 bytes 0.1964 ms - 0 bytes 0.0771 ms - 0 bytes
- max 3.1853 ms - 0 bytes 2.6646 ms - 0 bytes 1.1043 ms - 0 bytes 0.7654 ms - 0 bytes 1.8375 ms - 0 bytes 3.0486 ms - 0 bytes
- avg 0.0605565 ms - 0 bytes 0.0856609 ms - 0 bytes 0.3797469 ms - 0 bytes 0.2017357 ms - 0 bytes 0.2228839 ms - 0 bytes 0.0928257 ms - 0 bytes
- total 1610.3265 ms 1879.6877 ms 4797.3544 ms 3112.3417 ms 3312.7847 ms 1992.7877 ms
- ------- ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------
- Order - 1 - - 2 - - 6 - - 4 - - 5 - - 3 -
- ------- ------------------------ ------------------------ ------------------------ ------------------------ ------------------------ ------------------------
+ServiceCreationFromFactoryBench
++----------------------+------+-----+----------+----------+---------+
+| subject | revs | its | mem_peak | mode | rstdev |
++----------------------+------+-----+----------+----------+---------+
+| benchSymfonyRuntime | 1000 | 20 | 2.338mb | 1.605μs | ±12.40% |
+| benchSymfonyCompiled | 1000 | 20 | 2.338mb | 0.146μs | ±24.72% |
+| benchYii | 1000 | 20 | 2.338mb | 0.048μs | ±36.87% |
+| benchLaravel | 1000 | 20 | 2.338mb | 0.968μs | ±21.22% |
+| benchSpiral | 1000 | 20 | 2.338mb | 3.865μs | ±3.77% |
+| benchPhpDi | 1000 | 20 | 2.338mb | 0.044μs | ±16.73% |
+| benchLaminas | 1000 | 20 | ------- | -------- | ------ |
++----------------------+------+-----+----------+----------+---------+
```
+
+- Best: **PHP-DI** (0.044μs)
+- Worst: **Spiral** (3.865μs)
+- Note: **Laminas** does not support this functionality (or no?)
diff --git a/app.php b/app.php
deleted file mode 100644
index 5b85c7d..0000000
--- a/app.php
+++ /dev/null
@@ -1,29 +0,0 @@
- __DIR__],
-)->run();
-
-if ($app === null) {
- exit(255);
-}
-
-$code = (int)$app->serve();
-exit($code);
diff --git a/app/BenchInterface.php b/app/BenchInterface.php
new file mode 100644
index 0000000..1c394eb
--- /dev/null
+++ b/app/BenchInterface.php
@@ -0,0 +1,22 @@
+useAutowiring(true);
+ $builder->addDefinitions($build());
+
+ return $builder->build();
+ }
+}
diff --git a/app/Builder/SpiralBuilder.php b/app/Builder/SpiralBuilder.php
new file mode 100644
index 0000000..275f2f9
--- /dev/null
+++ b/app/Builder/SpiralBuilder.php
@@ -0,0 +1,21 @@
+compile();
+
+ $name = self::compile($context, $builder);
+
+ return new $name();
+ }
+
+ private static function compile(string $context, SymfonyContainerBuilder $builder): string
+ {
+ $dumper = new PhpDumper($builder);
+
+ $name = '__CompiledBenchContainer' . \hash('xxh128', $context);
+ $pathname = self::getStorageDirectory() . '/' . $name . '.php';
+
+ $result = $dumper->dump(['class' => $name]);
+ \file_put_contents($pathname, $result);
+
+ require $pathname;
+
+ return $name;
+ }
+}
diff --git a/app/Builder/SymfonyRuntimeBuilder.php b/app/Builder/SymfonyRuntimeBuilder.php
new file mode 100644
index 0000000..476cff5
--- /dev/null
+++ b/app/Builder/SymfonyRuntimeBuilder.php
@@ -0,0 +1,22 @@
+compile();
+
+ return $builder;
+ }
+}
diff --git a/app/Builder/YiiBuilder.php b/app/Builder/YiiBuilder.php
new file mode 100644
index 0000000..8d8420e
--- /dev/null
+++ b/app/Builder/YiiBuilder.php
@@ -0,0 +1,24 @@
+withDefinitions($build());
+
+ return new Container($config);
+ }
+}
diff --git a/app/NonSharedServiceCreationByNameBench.php b/app/NonSharedServiceCreationByNameBench.php
new file mode 100644
index 0000000..d189980
--- /dev/null
+++ b/app/NonSharedServiceCreationByNameBench.php
@@ -0,0 +1,160 @@
+symfonyRuntime = SymfonyRuntimeBuilder::build(
+ context: __METHOD__,
+ build: function (SymfonyContainerBuilder $app) {
+ $app->addDefinitions([
+ SimpleService::class => (new Definition(SimpleService::class))
+ ->setShared(false)
+ ->setPublic(true)
+ ]);
+ },
+ );
+
+ $this->symfonyCompiled = SymfonyCompiledBuilder::build(
+ context: __METHOD__,
+ build: function (SymfonyContainerBuilder $app) {
+ $app->addDefinitions([
+ SimpleService::class => (new Definition(SimpleService::class))
+ ->setShared(false)
+ ->setPublic(true)
+ ]);
+ },
+ );
+
+ $this->yii = new Factory(YiiBuilder::build(
+ context: __METHOD__,
+ build: function (): array {
+ return [SimpleService::class => SimpleService::class];
+ }
+ ));
+
+ $this->laravel = LaravelBuilder::build(
+ context: __METHOD__,
+ build: function (LaravelContainer $app): void {
+ $app->bind(SimpleService::class);
+ }
+ );
+
+ $this->spiral = SpiralBuilder::build(
+ context: __METHOD__,
+ build: function (SpiralContainer $app): void {
+ $app->bind(SimpleService::class, SimpleService::class);
+ }
+ );
+
+ $this->phpdi = PhpDiBuilder::build(
+ context: __METHOD__,
+ build: function (): array {
+ return [
+ SimpleService::class => php_di_create(SimpleService::class),
+ ];
+ }
+ );
+
+ $this->laminas = LaminasRuntimeBuilder::build(
+ context: __METHOD__,
+ build: function (LaminasInjector $app): void {
+ $app->create(SimpleService::class);
+ }
+ );
+ }
+
+ public function benchSymfonyRuntime(): void
+ {
+ $instance = $this->symfonyRuntime->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ assert($instance !== $this->symfonyRuntime->get(SimpleService::class));
+ }
+
+ public function benchSymfonyCompiled(): void
+ {
+ $instance = $this->symfonyCompiled->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ assert($instance !== $this->symfonyCompiled->get(SimpleService::class));
+ }
+
+ public function benchYii(): void
+ {
+ $instance = $this->yii->create(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ assert($instance !== $this->yii->create(SimpleService::class));
+ }
+
+ public function benchLaravel(): void
+ {
+ $instance = $this->laravel->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ assert($instance !== $this->laravel->get(SimpleService::class));
+ }
+
+ public function benchSpiral(): void
+ {
+ $instance = $this->spiral->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ assert($instance !== $this->spiral->get(SimpleService::class));
+ }
+
+ public function benchPhpDi(): void
+ {
+ $instance = $this->phpdi->make(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ assert($instance !== $this->phpdi->make(SimpleService::class));
+ }
+
+ public function benchLaminas(): void
+ {
+ $instance = $this->laminas->injector->create(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ assert($instance !== $this->laminas->injector->create(SimpleService::class));
+ }
+}
diff --git a/app/ServiceCreationFromFactoryBench.php b/app/ServiceCreationFromFactoryBench.php
new file mode 100644
index 0000000..a356248
--- /dev/null
+++ b/app/ServiceCreationFromFactoryBench.php
@@ -0,0 +1,160 @@
+symfonyRuntime = SymfonyRuntimeBuilder::build(
+ context: __METHOD__,
+ build: function (SymfonyContainerBuilder $app) {
+ $app->addDefinitions([
+ ServiceFactory::class => new Definition(ServiceFactory::class),
+ SimpleService::class => (new Definition(SimpleService::class))
+ ->setFactory([new Reference(ServiceFactory::class), 'create'])
+ ->setShared(false)
+ ->setPublic(true),
+ ]);
+ },
+ );
+
+ $this->symfonyCompiled = SymfonyCompiledBuilder::build(
+ context: __METHOD__,
+ build: function (SymfonyContainerBuilder $app) {
+ $app->addDefinitions([
+ ServiceFactory::class => new Definition(ServiceFactory::class),
+ SimpleService::class => (new Definition(SimpleService::class))
+ ->setFactory([new Reference(ServiceFactory::class), 'create'])
+ ->setShared(false)
+ ->setPublic(true),
+ ]);
+ },
+ );
+
+ $this->yii = YiiBuilder::build(
+ context: __METHOD__,
+ build: function (): array {
+ return [
+ ServiceFactory::class => ServiceFactory::class,
+ SimpleService::class => static fn (ServiceFactory $factory): SimpleService
+ => $factory->create(),
+ ];
+ }
+ );
+
+ $this->laravel = LaravelBuilder::build(
+ context: __METHOD__,
+ build: function (LaravelContainer $app): void {
+ $app->singleton(ServiceFactory::class);
+ $app->bind(SimpleService::class, static function ($app): SimpleService {
+ $factory = $app->make(ServiceFactory::class);
+ return $factory->create();
+ });
+ }
+ );
+
+ $this->spiral = SpiralBuilder::build(
+ context: __METHOD__,
+ build: function (SpiralContainer $app): void {
+ $app->bindSingleton(ServiceFactory::class, ServiceFactory::class);
+ $app->bind(SimpleService::class, function (ServiceFactory $ref) {
+ return $ref->create();
+ });
+ }
+ );
+
+ $this->phpdi = PhpDiBuilder::build(
+ context: __METHOD__,
+ build: function (): array {
+ return [
+ ServiceFactory::class => php_di_create(ServiceFactory::class),
+ SimpleService::class => php_di_factory([ServiceFactory::class, 'create']),
+ ];
+ }
+ );
+ }
+
+ public function benchSymfonyRuntime(): void
+ {
+ $instance = $this->symfonyRuntime->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchSymfonyCompiled(): void
+ {
+ $instance = $this->symfonyCompiled->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchYii(): void
+ {
+ $instance = $this->yii->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchLaravel(): void
+ {
+ $instance = $this->laravel->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchSpiral(): void
+ {
+ $instance = $this->spiral->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchPhpDi(): void
+ {
+ $instance = $this->phpdi->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchLaminas(): void
+ {
+ // Idk how to do it, is it supported at all?
+ usleep(30);
+ }
+}
diff --git a/app/ServiceWithAutowireBench.php b/app/ServiceWithAutowireBench.php
new file mode 100644
index 0000000..5c0fc09
--- /dev/null
+++ b/app/ServiceWithAutowireBench.php
@@ -0,0 +1,172 @@
+symfonyRuntime = SymfonyRuntimeBuilder::build(
+ context: __METHOD__,
+ build: function (SymfonyContainerBuilder $app) {
+ $app->addDefinitions([
+ SimpleService::class => new Definition(SimpleService::class),
+ ServiceWithDependency::class => (new Definition(ServiceWithDependency::class))
+ ->setAutowired(true)
+ ->setPublic(true)
+ ]);
+ },
+ );
+
+ $this->symfonyCompiled = SymfonyCompiledBuilder::build(
+ context: __METHOD__,
+ build: function (SymfonyContainerBuilder $app) {
+ $app->addDefinitions([
+ SimpleService::class => new Definition(SimpleService::class),
+ ServiceWithDependency::class => (new Definition(ServiceWithDependency::class))
+ ->setAutowired(true)
+ ->setPublic(true)
+ ]);
+ },
+ );
+
+ $this->yii = YiiBuilder::build(
+ context: __METHOD__,
+ build: function (): array {
+ return [
+ SimpleService::class => SimpleService::class,
+ ServiceWithDependency::class => ServiceWithDependency::class,
+ ];
+ }
+ );
+
+ $this->laravel = LaravelBuilder::build(
+ context: __METHOD__,
+ build: function (LaravelContainer $app): void {
+ $app->singleton(SimpleService::class);
+ $app->singleton(ServiceWithDependency::class);
+ }
+ );
+
+ $this->spiral = SpiralBuilder::build(
+ context: __METHOD__,
+ build: function (SpiralContainer $app): void {
+ $app->bindSingleton(SimpleService::class, SimpleService::class);
+ $app->bindSingleton(ServiceWithDependency::class, ServiceWithDependency::class);
+ }
+ );
+
+ $this->phpdi = PhpDiBuilder::build(
+ context: __METHOD__,
+ build: function (): array {
+ return [
+ SimpleService::class => php_di_create(SimpleService::class),
+ ServiceWithDependency::class => php_di_autowire(ServiceWithDependency::class),
+ ];
+ }
+ );
+
+ $this->laminas = LaminasRuntimeBuilder::build(
+ context: __METHOD__,
+ build: function (LaminasInjector $app): void {
+ $app->create(SimpleService::class);
+ $app->create(ServiceWithDependency::class);
+ }
+ );
+ }
+
+ public function benchSymfonyRuntime(): void
+ {
+ $instance = $this->symfonyRuntime->get(ServiceWithDependency::class);
+
+ assert($instance instanceof ServiceWithDependency);
+ assert($instance->dependency instanceof SimpleService);
+ }
+
+ public function benchSymfonyCompiled(): void
+ {
+ $instance = $this->symfonyCompiled->get(ServiceWithDependency::class);
+
+ assert($instance instanceof ServiceWithDependency);
+ assert($instance->dependency instanceof SimpleService);
+ }
+
+ public function benchYii(): void
+ {
+ $instance = $this->yii->get(ServiceWithDependency::class);
+
+ assert($instance instanceof ServiceWithDependency);
+ assert($instance->dependency instanceof SimpleService);
+ }
+
+ public function benchLaravel(): void
+ {
+ $instance = $this->laravel->get(ServiceWithDependency::class);
+
+ assert($instance instanceof ServiceWithDependency);
+ assert($instance->dependency instanceof SimpleService);
+ }
+
+ public function benchSpiral(): void
+ {
+ $instance = $this->spiral->get(ServiceWithDependency::class);
+
+ assert($instance instanceof ServiceWithDependency);
+ assert($instance->dependency instanceof SimpleService);
+ }
+
+ public function benchPhpDi(): void
+ {
+ $instance = $this->phpdi->get(ServiceWithDependency::class);
+
+ assert($instance instanceof ServiceWithDependency);
+ assert($instance->dependency instanceof SimpleService);
+ }
+
+ public function benchLaminas(): void
+ {
+ $instance = $this->laminas->get(ServiceWithDependency::class);
+
+ assert($instance instanceof ServiceWithDependency);
+ assert($instance->dependency instanceof SimpleService);
+ }
+}
diff --git a/app/SharedServiceCreationByNameBench.php b/app/SharedServiceCreationByNameBench.php
new file mode 100644
index 0000000..ecd0d69
--- /dev/null
+++ b/app/SharedServiceCreationByNameBench.php
@@ -0,0 +1,151 @@
+symfonyRuntime = SymfonyRuntimeBuilder::build(
+ context: __METHOD__,
+ build: function (SymfonyContainerBuilder $app) {
+ $app->addDefinitions([
+ SimpleService::class => (new Definition(SimpleService::class))
+ ->setPublic(true)
+ ]);
+ },
+ );
+
+ $this->symfonyCompiled = SymfonyCompiledBuilder::build(
+ context: __METHOD__,
+ build: function (SymfonyContainerBuilder $app) {
+ $app->addDefinitions([
+ SimpleService::class => (new Definition(SimpleService::class))
+ ->setPublic(true)
+ ]);
+ },
+ );
+
+ $this->yii = YiiBuilder::build(
+ context: __METHOD__,
+ build: function (): array {
+ return [SimpleService::class => SimpleService::class];
+ }
+ );
+
+ $this->laravel = LaravelBuilder::build(
+ context: __METHOD__,
+ build: function (LaravelContainer $app): void {
+ $app->singleton(SimpleService::class);
+ }
+ );
+
+ $this->spiral = SpiralBuilder::build(
+ context: __METHOD__,
+ build: function (SpiralContainer $app): void {
+ $app->bindSingleton(SimpleService::class, SimpleService::class);
+ }
+ );
+
+ $this->phpdi = PhpDiBuilder::build(
+ context: __METHOD__,
+ build: function (): array {
+ return [
+ SimpleService::class => php_di_create(SimpleService::class)
+ ];
+ }
+ );
+
+ $this->laminas = LaminasRuntimeBuilder::build(
+ context: __METHOD__,
+ build: function (LaminasInjector $app): void {
+ $app->create(SimpleService::class);
+ }
+ );
+ }
+
+ public function benchSymfonyRuntime(): void
+ {
+ $instance = $this->symfonyRuntime->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchSymfonyCompiled(): void
+ {
+ $instance = $this->symfonyCompiled->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchYii(): void
+ {
+ $instance = $this->yii->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchLaravel(): void
+ {
+ $instance = $this->laravel->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchSpiral(): void
+ {
+ $instance = $this->spiral->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchPhpDi(): void
+ {
+ $instance = $this->phpdi->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+
+ public function benchLaminas(): void
+ {
+ $instance = $this->laminas->get(SimpleService::class);
+
+ assert($instance instanceof SimpleService);
+ }
+}
diff --git a/app/Stub/ServiceFactory.php b/app/Stub/ServiceFactory.php
new file mode 100644
index 0000000..d2de896
--- /dev/null
+++ b/app/Stub/ServiceFactory.php
@@ -0,0 +1,13 @@
+ 'App',
-
- 'declarations' => [
- Declaration\BootloaderDeclaration::TYPE => [
- 'namespace' => 'Application\Bootloader',
- 'postfix' => 'Bootloader',
- 'class' => Declaration\BootloaderDeclaration::class,
- ],
- Declaration\ConfigDeclaration::TYPE => [
- 'namespace' => 'Application\Config',
- 'postfix' => 'Config',
- 'class' => Declaration\ConfigDeclaration::class,
- 'options' => [
- 'directory' => directory('config'),
- ],
- ],
- Declaration\ControllerDeclaration::TYPE => [
- 'namespace' => 'Endpoint\Web',
- 'postfix' => 'Controller',
- 'class' => Declaration\ControllerDeclaration::class,
- ],
- Declaration\MiddlewareDeclaration::TYPE => [
- 'namespace' => 'Application\Http\Middleware',
- 'postfix' => '',
- 'class' => Declaration\MiddlewareDeclaration::class,
- ],
- Declaration\CommandDeclaration::TYPE => [
- 'namespace' => 'Endpoint\Console',
- 'postfix' => 'Command',
- 'class' => Declaration\CommandDeclaration::class,
- ],
- Declaration\JobHandlerDeclaration::TYPE => [
- 'namespace' => 'Endpoint\Job',
- 'postfix' => 'Job',
- 'class' => Declaration\JobHandlerDeclaration::class,
- ],
- ],
-];
diff --git a/app/src/Application/Bootloader/ExceptionHandlerBootloader.php b/app/src/Application/Bootloader/ExceptionHandlerBootloader.php
deleted file mode 100644
index 1147684..0000000
--- a/app/src/Application/Bootloader/ExceptionHandlerBootloader.php
+++ /dev/null
@@ -1,58 +0,0 @@
- EnvSuppressErrors::class,
- RendererInterface::class => PlainRenderer::class,
- ];
-
- public function __construct(private readonly ExceptionHandler $handler)
- {
- }
-
- public function init(AbstractKernel $kernel): void
- {
- // Register the console renderer, that will be used when the application
- // is running in the console.
- $this->handler->addRenderer(new ConsoleRenderer());
-
- $kernel->running(function (): void {
- // Register the JSON renderer, that will be used when the application is
- // running in the HTTP context and a JSON response is expected.
- $this->handler->addRenderer(new JsonRenderer());
- });
- }
-
- public function boot(LoggerReporter $logger, FileReporter $files): void
- {
- // Register the logger reporter, that will be used to log the exceptions using
- // the logger component.
- $this->handler->addReporter($logger);
-
- // Register the file reporter. It allows you to save detailed information about an exception to a file
- // known as snapshot.
- $this->handler->addReporter($files);
- }
-}
diff --git a/app/src/Application/Bootloader/LoggingBootloader.php b/app/src/Application/Bootloader/LoggingBootloader.php
deleted file mode 100644
index 91da82f..0000000
--- a/app/src/Application/Bootloader/LoggingBootloader.php
+++ /dev/null
@@ -1,55 +0,0 @@
-addHandler(
- channel: ErrorHandlerMiddleware::class,
- handler: $monolog->logRotate(
- directory('runtime') . 'logs/http.log',
- ),
- );
-
- // app level errors
- $monolog->addHandler(
- channel: MonologConfig::DEFAULT_CHANNEL,
- handler: $monolog->logRotate(
- filename: directory('runtime') . 'logs/error.log',
- level: Logger::ERROR,
- maxFiles: 25,
- bubble: false,
- ),
- );
-
- // debug and info messages via global LoggerInterface
- $monolog->addHandler(
- channel: MonologConfig::DEFAULT_CHANNEL,
- handler: $monolog->logRotate(
- filename: directory('runtime') . 'logs/debug.log',
- ),
- );
- }
-}
diff --git a/app/src/Application/Kernel.php b/app/src/Application/Kernel.php
deleted file mode 100644
index a3f50b9..0000000
--- a/app/src/Application/Kernel.php
+++ /dev/null
@@ -1,46 +0,0 @@
-containers[$container::class] = $container;
- }
-
- public function init(): void
- {
- foreach ($this->containers as $container) {
- $container->init();
- }
- }
-
- public function getAll(string $id): array
- {
- $result = [];
-
- foreach ($this->containers as $container) {
- $result[$container::class] = \spl_object_id($container->get($id));
- }
-
- return $result;
- }
-
- public function makeAll(string $id): array
- {
- $result = [];
-
- foreach ($this->containers as $container) {
- $result[$container::class] = \spl_object_id($container->make($id));
- }
-
- return $result;
- }
-
- public function get(string $container, string $id): mixed
- {
- return $this->containers[$container]->get($id);
- }
-
- public function make(string $container, string $id): mixed
- {
- return $this->containers[$container]->make($id);
- }
-
- public function has(string $container, string $id): bool
- {
- return $this->containers[$container]->has($id);
- }
-
- public function bind(string $id, $definition): void
- {
- foreach ($this->containers as $container) {
- $container->bind($id, $definition);
- }
- }
-}
\ No newline at end of file
diff --git a/app/src/Containers/ContainerInterface.php b/app/src/Containers/ContainerInterface.php
deleted file mode 100644
index fe2c834..0000000
--- a/app/src/Containers/ContainerInterface.php
+++ /dev/null
@@ -1,14 +0,0 @@
-injector = new Injector();
- $this->container = new DefaultContainer($this->injector);
- }
-
- public function make(string $id): mixed
- {
- return $this->injector->create($id);
- }
-
- public function get(string $id)
- {
- return $this->container->get($id);
- }
-
- public function has(string $id): bool
- {
- return $this->container->has($id);
- }
-
- public function bind(string $id, $definition): void
- {
- $this->container->setInstance($id, $definition);
- }
-
- public function init(): void
- {
- // TODO: Implement init() method.
- }
-}
diff --git a/app/src/Containers/Laravel.php b/app/src/Containers/Laravel.php
deleted file mode 100644
index 06b7ce7..0000000
--- a/app/src/Containers/Laravel.php
+++ /dev/null
@@ -1,42 +0,0 @@
-container = new Container();
- }
-
- public function make(string $id): mixed
- {
- return $this->container->make($id);
- }
-
- public function get(string $id)
- {
- return $this->container->get($id);
- }
-
- public function has(string $id): bool
- {
- return $this->container->has($id);
- }
-
- public function bind(string $id, $definition): void
- {
- $this->container->singleton($id, $definition);
- }
-
- public function init(): void
- {
- // TODO: Implement init() method.
- }
-}
\ No newline at end of file
diff --git a/app/src/Containers/League.php b/app/src/Containers/League.php
deleted file mode 100644
index 88018f1..0000000
--- a/app/src/Containers/League.php
+++ /dev/null
@@ -1,43 +0,0 @@
-container = new Container();
- }
-
- public function make(string $id): mixed
- {
- return $this->container->getNew($id);
- }
-
- public function get(string $id)
- {
- return $this->container->get($id);
- }
-
- public function has(string $id): bool
- {
- return $this->container->has($id);
- }
-
- public function bind(string $id, $definition): void
- {
- $this->container->addShared($id, $definition);
- }
-
- public function init(): void
- {
- $this->container->delegate(new ReflectionContainer());
- }
-}
\ No newline at end of file
diff --git a/app/src/Containers/PhpDi.php b/app/src/Containers/PhpDi.php
deleted file mode 100644
index bc0af9a..0000000
--- a/app/src/Containers/PhpDi.php
+++ /dev/null
@@ -1,44 +0,0 @@
-container = (new ContainerBuilder())
- ->build();
- }
-
- public function make(string $id): mixed
- {
- return $this->container->make($id);
- }
-
- public function get(string $id)
- {
- return $this->container->get($id);
- }
-
- public function has(string $id): bool
- {
- return $this->container->has($id);
- }
-
- public function bind(string $id, $definition): void
- {
- $this->container->set($id, $definition);
- }
-
- public function init(): void
- {
- // TODO: Implement init() method.
- }
-}
\ No newline at end of file
diff --git a/app/src/Containers/SampleClass.php b/app/src/Containers/SampleClass.php
deleted file mode 100644
index 7dc100f..0000000
--- a/app/src/Containers/SampleClass.php
+++ /dev/null
@@ -1,13 +0,0 @@
-container = new Container();
- }
-
- public function make(string $id): mixed
- {
- return $this->container->make($id);
- }
-
- public function bind(string $id, $definition): void
- {
- $this->container->bindSingleton($id, $definition);
- }
-
- public function get(string $id)
- {
- return $this->container->get($id);
- }
-
- public function has(string $id): bool
- {
- return $this->container->has($id);
- }
-
- public function init(): void
- {
- // TODO: Implement init() method.
- }
-}
\ No newline at end of file
diff --git a/app/src/Containers/Symfony.php b/app/src/Containers/Symfony.php
deleted file mode 100644
index 60ee328..0000000
--- a/app/src/Containers/Symfony.php
+++ /dev/null
@@ -1,47 +0,0 @@
-builder = new ContainerBuilder();
- }
-
- public function make(string $id): mixed
- {
- return $this->builder->get($id);
- }
-
- public function get(string $id)
- {
- return $this->builder->get($id);
- }
-
- public function has(string $id): bool
- {
- return $this->builder->has($id);
- }
-
- public function bind(string $id, $definition): void
- {
- $this->builder->set($id, $definition());
- }
-
- public function init(): void
- {
- $this->builder->autowire(TestClass::class)->setAutowired(true)->setPublic(true);
- $this->builder->autowire(TestClass1::class)->setAutowired(true)->setPublic(true);
- $this->builder->autowire(SampleClass::class)->setAutowired(true)->setPublic(true);
- $this->builder->compile();
- }
-}
\ No newline at end of file
diff --git a/app/src/Containers/TestClass.php b/app/src/Containers/TestClass.php
deleted file mode 100644
index b855223..0000000
--- a/app/src/Containers/TestClass.php
+++ /dev/null
@@ -1,14 +0,0 @@
-config = ContainerConfig::create()
- ->withValidate(false);
- }
-
- public function bind(string $id, $definition): void
- {
- $this->config = $this->config->withDefinitions([
- $id => [
- 'definition' => $definition,
- ],
- ]);
- }
-
- public function make(string $id): mixed
- {
- return $this->factory->create($id);
- }
-
- public function get(string $id)
- {
- return $this->container->get($id);
- }
-
- public function has(string $id): bool
- {
- return $this->container->has($id);
- }
-
- public function init(): void
- {
- $this->container = new Container($this->config);
- $this->factory = new Factory($this->container);
- }
-}
\ No newline at end of file
diff --git a/app/src/Endpoint/Console/ContainerBenchCommand.php b/app/src/Endpoint/Console/ContainerBenchCommand.php
deleted file mode 100644
index 5074c15..0000000
--- a/app/src/Endpoint/Console/ContainerBenchCommand.php
+++ /dev/null
@@ -1,84 +0,0 @@
-cc = new CompositeContainer();
- $this->cc->addContainer(new Spiral());
- $this->cc->addContainer(new Yii());
- $this->cc->addContainer(new Laravel());
- $this->cc->addContainer(new League());
- $this->cc->addContainer(new Symfony());
- $this->cc->addContainer(new PhpDi());
- $this->cc->addContainer(new Laminas());
- }
-
- public function __invoke()
- {
- $this->cc->bind('foo', function () {
- return new TestClass(new SampleClass(new TestClass1()));
- });
-
- $this->cc->init();
-
- $this->info('Benching container performance with getting by name.');
- (new Benchmark())
- ->iterations($this->iterations)
- ->withoutData()
- ->compare([
- 'Spiral' => fn () => $this->cc->get(Spiral::class, 'foo'),
- 'Yii' => fn () => $this->cc->get(Yii::class, 'foo'),
- 'Laravel' => fn () => $this->cc->get(Laravel::class, 'foo'),
- 'League' => fn () => $this->cc->get(League::class, 'foo'),
- 'Symfony' => fn () => $this->cc->get(Symfony::class, 'foo'),
- 'PHP DI' => fn () => $this->cc->get(PhpDi::class, 'foo'),
- 'Laminas' => fn () => $this->cc->get(Laminas::class, 'foo'),
- ]);
-
- $this->info('Benching container performance with autowiring.');
- (new Benchmark())
- ->iterations($this->iterations)
- ->withoutData()
- ->compare([
- 'Spiral' => fn () => $this->cc->make(Spiral::class, TestClass::class),
- 'Yii' => fn () => $this->cc->make(Yii::class, TestClass::class),
- 'Laravel' => fn () => $this->cc->make(Laravel::class, TestClass::class),
- 'League' => fn () => $this->cc->make(League::class, TestClass::class),
- 'PHP DI' => fn () => $this->cc->make(PhpDi::class, TestClass::class),
- 'Laminas' => fn () => $this->cc->make(Laminas::class, TestClass::class),
- // 'Symfony' => fn () => $this->cc->make(Symfony::class, TestClass::class),
- ]);
- }
-}
diff --git a/cleanup.sh b/cleanup.sh
deleted file mode 100755
index 8910e29..0000000
--- a/cleanup.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-rm -rf app
-rm -rf tests
-rm -rf vendor
-rm -rf runtime
-rm -rf public
-rm -rf proto
-rm -rf generated
-
-rm .env
-rm .env.sample
-rm .rr.yaml
-rm rr
-rm protoc-gen-php-grpc
-rm app.php
-rm composer.lock
-rm deptrac.yaml
-rm phpunit.xml
-
-git checkout psalm.xml
-git checkout composer.json
-git checkout README.md
-git checkout LICENSE
\ No newline at end of file
diff --git a/composer.json b/composer.json
index a0ce5ef..08dfbe5 100644
--- a/composer.json
+++ b/composer.json
@@ -1,77 +1,34 @@
{
- "name": "spiral/app",
- "type": "project",
+ "name": "local/container-bench",
+ "description": "PHP Dependency Injection container benchmarks",
"license": "MIT",
- "description": "Spiral Application installer",
- "homepage": "https://spiral.dev",
- "support": {
- "issues": "https://github.com/spiral/app/issues",
- "source": "https://github.com/spiral/app"
- },
"require": {
- "php": ">=8.1",
- "ext-sockets": "*",
- "illuminate/container": "^10.4",
- "league/container": "^4.2",
+ "php": "^8.3",
+ "illuminate/container": "^11.7",
+ "laminas/laminas-code": "^4.13",
+ "laminas/laminas-di": "^3.14",
"php-di/php-di": "^7.0",
- "laminas/laminas-di": "3.13.x-dev",
- "spiral/framework": "dev-master",
- "spiral/roadrunner-cli": "^2.4",
- "symfony/dependency-injection": "^6.2",
- "yiisoft/di": "^1.2",
- "yiisoft/factory": "^1.1"
- },
- "repositories": [
- {
- "type": "vcs",
- "url": "https://github.com/php-fart/fork-laminas-di.git"
- }
- ],
- "require-dev": {
- "dragon-code/benchmark": "^2.2",
"phpbench/phpbench": "^1.2",
- "phpunit/phpunit": "^9.5",
- "qossmic/deptrac-shim": "^1.0",
- "spiral-packages/yii-error-handler-bridge": "^1.0",
- "spiral/testing": "^2.2",
- "symfony/var-dumper": "^6.1",
- "vimeo/psalm": "dev-master"
+ "psr/container": "^1.0|^2.0",
+ "spiral/core": "^3.12",
+ "symfony/config": "^7.0",
+ "symfony/dependency-injection": "^7.0",
+ "yiisoft/di": "^1.2",
+ "yiisoft/factory": "^1.2"
},
"autoload": {
"psr-4": {
- "App\\": "app/src"
+ "Bench\\": "app"
}
},
- "autoload-dev": {
- "psr-4": {
- "Tests\\": "tests"
- }
- },
- "extra": {
- "publish-cmd": "php app.php publish"
+ "require-dev": {
+ "symfony/var-dumper": "^7.0"
},
"config": {
- "sort-packages": true,
- "allow-plugins": {
- "spiral/composer-publish-plugin": true
- }
+ "sort-packages": true
},
"scripts": {
- "post-create-project-cmd": [
- "php app.php encrypt:key -m .env",
- "php app.php configure --quiet",
- "rr get-binary --quiet",
- "composer dump-autoload"
- ],
- "build": "protoc --proto_path=proto --php_out=app/src proto/user.proto",
- "rr:download": "rr get-binary",
- "rr:download-protoc": "rr download-protoc-binary",
- "test": "vendor/bin/phpunit",
- "test-coverage": "vendor/bin/phpunit --coverage",
- "psalm:config": "psalm",
- "deptrack": [
- "deptrac analyze --report-uncovered"
- ]
+ "bench": "phpbench run --report=grouped"
},
"minimum-stability": "dev",
"prefer-stable": true
diff --git a/composer.lock b/composer.lock
index 79be145..6489c3b 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,272 +4,8 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "540a9521e5445b7d4c1c5e085972fee4",
+ "content-hash": "189cbf44a1f2d36b5e6941d8173fa15b",
"packages": [
- {
- "name": "cocur/slugify",
- "version": "v3.2",
- "source": {
- "type": "git",
- "url": "https://github.com/cocur/slugify.git",
- "reference": "d41701efe58ba2df9cae029c3d21e1518cc6780e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cocur/slugify/zipball/d41701efe58ba2df9cae029c3d21e1518cc6780e",
- "reference": "d41701efe58ba2df9cae029c3d21e1518cc6780e",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "php": ">=5.5.9"
- },
- "require-dev": {
- "laravel/framework": "~5.1",
- "latte/latte": "~2.2",
- "league/container": "^2.2.0",
- "mikey179/vfsstream": "~1.6",
- "mockery/mockery": "~0.9",
- "nette/di": "~2.2",
- "phpunit/phpunit": "~4.8.36|~5.2",
- "pimple/pimple": "~1.1",
- "plumphp/plum": "~0.1",
- "silex/silex": "~1.3",
- "symfony/config": "~2.4|~3.0|~4.0",
- "symfony/dependency-injection": "~2.4|~3.0|~4.0",
- "symfony/http-kernel": "~2.4|~3.0|~4.0",
- "twig/twig": "~1.26|~2.0",
- "zendframework/zend-modulemanager": "~2.2",
- "zendframework/zend-servicemanager": "~2.2",
- "zendframework/zend-view": "~2.2"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Cocur\\Slugify\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Ivo Bathke",
- "email": "ivo.bathke@gmail.com"
- },
- {
- "name": "Florian Eckerstorfer",
- "email": "florian@eckerstorfer.co",
- "homepage": "https://florian.ec"
- }
- ],
- "description": "Converts a string into a slug.",
- "keywords": [
- "slug",
- "slugify"
- ],
- "support": {
- "issues": "https://github.com/cocur/slugify/issues",
- "source": "https://github.com/cocur/slugify/tree/master"
- },
- "time": "2019-01-31T20:38:55+00:00"
- },
- {
- "name": "codedungeon/php-cli-colors",
- "version": "1.12.2",
- "source": {
- "type": "git",
- "url": "https://github.com/mikeerickson/php-cli-colors.git",
- "reference": "e346156f75717140a3dd622124d2ec686aa7ff8e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mikeerickson/php-cli-colors/zipball/e346156f75717140a3dd622124d2ec686aa7ff8e",
- "reference": "e346156f75717140a3dd622124d2ec686aa7ff8e",
- "shasum": ""
- },
- "require-dev": {
- "phpunit/phpunit": ">=5.2"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Codedungeon\\PHPCliColors\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Mike Erickson",
- "email": "codedungeon@gmail.com"
- }
- ],
- "description": "Liven up you PHP Console Apps with standard colors",
- "homepage": "https://github.com/mikeerickson/php-cli-colors",
- "keywords": [
- "color",
- "colors",
- "composer",
- "package",
- "php"
- ],
- "support": {
- "issues": "https://github.com/mikeerickson/php-cli-colors/issues",
- "source": "https://github.com/mikeerickson/php-cli-colors/tree/1.12.2"
- },
- "time": "2021-01-05T04:48:27+00:00"
- },
- {
- "name": "composer/semver",
- "version": "3.3.2",
- "source": {
- "type": "git",
- "url": "https://github.com/composer/semver.git",
- "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
- "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
- "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": "irc://irc.freenode.org/composer",
- "issues": "https://github.com/composer/semver/issues",
- "source": "https://github.com/composer/semver/tree/3.3.2"
- },
- "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-04-01T19:23:25+00:00"
- },
- {
- "name": "defuse/php-encryption",
- "version": "v2.3.1",
- "source": {
- "type": "git",
- "url": "https://github.com/defuse/php-encryption.git",
- "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/defuse/php-encryption/zipball/77880488b9954b7884c25555c2a0ea9e7053f9d2",
- "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2",
- "shasum": ""
- },
- "require": {
- "ext-openssl": "*",
- "paragonie/random_compat": ">= 2",
- "php": ">=5.6.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4|^5|^6|^7|^8|^9"
- },
- "bin": [
- "bin/generate-defuse-key"
- ],
- "type": "library",
- "autoload": {
- "psr-4": {
- "Defuse\\Crypto\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Taylor Hornby",
- "email": "taylor@defuse.ca",
- "homepage": "https://defuse.ca/"
- },
- {
- "name": "Scott Arciszewski",
- "email": "info@paragonie.com",
- "homepage": "https://paragonie.com"
- }
- ],
- "description": "Secure PHP Encryption Library",
- "keywords": [
- "aes",
- "authenticated encryption",
- "cipher",
- "crypto",
- "cryptography",
- "encrypt",
- "encryption",
- "openssl",
- "security",
- "symmetric key cryptography"
- ],
- "support": {
- "issues": "https://github.com/defuse/php-encryption/issues",
- "source": "https://github.com/defuse/php-encryption/tree/v2.3.1"
- },
- "time": "2021-04-09T23:57:26+00:00"
- },
{
"name": "doctrine/annotations",
"version": "2.0.1",
@@ -346,120 +82,29 @@
},
"time": "2023-02-02T22:02:53+00:00"
},
- {
- "name": "doctrine/inflector",
- "version": "2.0.6",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/inflector.git",
- "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
- "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
- "shasum": ""
- },
- "require": {
- "php": "^7.2 || ^8.0"
- },
- "require-dev": {
- "doctrine/coding-standard": "^10",
- "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"
- },
- "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.6"
- },
- "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": "2022-10-20T09:10:12+00:00"
- },
{
"name": "doctrine/lexer",
- "version": "3.0.0",
+ "version": "3.0.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/lexer.git",
- "reference": "84a527db05647743d50373e0ec53a152f2cde568"
+ "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
- "reference": "84a527db05647743d50373e0ec53a152f2cde568",
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
+ "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
"shasum": ""
},
"require": {
"php": "^8.1"
},
"require-dev": {
- "doctrine/coding-standard": "^10",
- "phpstan/phpstan": "^1.9",
- "phpunit/phpunit": "^9.5",
+ "doctrine/coding-standard": "^12",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.18.3",
- "vimeo/psalm": "^5.0"
+ "vimeo/psalm": "^5.21"
},
"type": "library",
"autoload": {
@@ -496,7 +141,7 @@
],
"support": {
"issues": "https://github.com/doctrine/lexer/issues",
- "source": "https://github.com/doctrine/lexer/tree/3.0.0"
+ "source": "https://github.com/doctrine/lexer/tree/3.0.1"
},
"funding": [
{
@@ -512,43 +157,39 @@
"type": "tidelift"
}
],
- "time": "2022-12-15T16:57:16+00:00"
+ "time": "2024-02-05T11:56:58+00:00"
},
{
- "name": "egulias/email-validator",
- "version": "4.0.1",
+ "name": "illuminate/container",
+ "version": "v11.7.0",
"source": {
"type": "git",
- "url": "https://github.com/egulias/EmailValidator.git",
- "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
+ "url": "https://github.com/illuminate/container.git",
+ "reference": "af979ecfd6dfa6583eae5dfe2e9a8840358f4ca7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
- "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
+ "url": "https://api.github.com/repos/illuminate/container/zipball/af979ecfd6dfa6583eae5dfe2e9a8840358f4ca7",
+ "reference": "af979ecfd6dfa6583eae5dfe2e9a8840358f4ca7",
"shasum": ""
},
"require": {
- "doctrine/lexer": "^2.0 || ^3.0",
- "php": ">=8.1",
- "symfony/polyfill-intl-idn": "^1.26"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5.27",
- "vimeo/psalm": "^4.30"
+ "illuminate/contracts": "^11.0",
+ "php": "^8.2",
+ "psr/container": "^1.1.1|^2.0.1"
},
- "suggest": {
- "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
+ "provide": {
+ "psr/container-implementation": "1.1|2.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0.x-dev"
+ "dev-master": "11.x-dev"
}
},
"autoload": {
"psr-4": {
- "Egulias\\EmailValidator\\": "src"
+ "Illuminate\\Container\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -557,55 +198,46 @@
],
"authors": [
{
- "name": "Eduardo Gulias Davis"
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
}
],
- "description": "A library for validating emails against several RFCs",
- "homepage": "https://github.com/egulias/EmailValidator",
- "keywords": [
- "email",
- "emailvalidation",
- "emailvalidator",
- "validation",
- "validator"
- ],
+ "description": "The Illuminate Container package.",
+ "homepage": "https://laravel.com",
"support": {
- "issues": "https://github.com/egulias/EmailValidator/issues",
- "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
+ "issues": "https://github.com/laravel/framework/issues",
+ "source": "https://github.com/laravel/framework"
},
- "funding": [
- {
- "url": "https://github.com/egulias",
- "type": "github"
- }
- ],
- "time": "2023-01-14T14:17:03+00:00"
+ "time": "2024-04-04T17:36:49+00:00"
},
{
- "name": "graham-campbell/result-type",
- "version": "v1.1.1",
+ "name": "illuminate/contracts",
+ "version": "v11.7.0",
"source": {
"type": "git",
- "url": "https://github.com/GrahamCampbell/Result-Type.git",
- "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
+ "url": "https://github.com/illuminate/contracts.git",
+ "reference": "8782f75e80ab3e6036842d24dbeead34a16f3a79"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
- "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
+ "url": "https://api.github.com/repos/illuminate/contracts/zipball/8782f75e80ab3e6036842d24dbeead34a16f3a79",
+ "reference": "8782f75e80ab3e6036842d24dbeead34a16f3a79",
"shasum": ""
},
"require": {
- "php": "^7.2.5 || ^8.0",
- "phpoption/phpoption": "^1.9.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
+ "php": "^8.2",
+ "psr/container": "^1.1.1|^2.0.1",
+ "psr/simple-cache": "^1.0|^2.0|^3.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "11.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
- "GrahamCampbell\\ResultType\\": "src/"
+ "Illuminate\\Contracts\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -614,153 +246,100 @@
],
"authors": [
{
- "name": "Graham Campbell",
- "email": "hello@gjcampbell.co.uk",
- "homepage": "https://github.com/GrahamCampbell"
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
}
],
- "description": "An Implementation Of The Result Type",
- "keywords": [
- "Graham Campbell",
- "GrahamCampbell",
- "Result Type",
- "Result-Type",
- "result"
- ],
+ "description": "The Illuminate Contracts package.",
+ "homepage": "https://laravel.com",
"support": {
- "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
- "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
- },
- "funding": [
- {
- "url": "https://github.com/GrahamCampbell",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
- "type": "tidelift"
- }
- ],
- "time": "2023-02-25T20:23:15+00:00"
+ "issues": "https://github.com/laravel/framework/issues",
+ "source": "https://github.com/laravel/framework"
+ },
+ "time": "2024-04-17T14:09:55+00:00"
},
{
- "name": "illuminate/container",
- "version": "v10.4.1",
+ "name": "laminas/laminas-code",
+ "version": "4.13.0",
"source": {
"type": "git",
- "url": "https://github.com/illuminate/container.git",
- "reference": "fed3ee8f7389ad431833935d9ed665bc02ac2cca"
+ "url": "https://github.com/laminas/laminas-code.git",
+ "reference": "7353d4099ad5388e84737dd16994316a04f48dbf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/container/zipball/fed3ee8f7389ad431833935d9ed665bc02ac2cca",
- "reference": "fed3ee8f7389ad431833935d9ed665bc02ac2cca",
+ "url": "https://api.github.com/repos/laminas/laminas-code/zipball/7353d4099ad5388e84737dd16994316a04f48dbf",
+ "reference": "7353d4099ad5388e84737dd16994316a04f48dbf",
"shasum": ""
},
"require": {
- "illuminate/contracts": "^10.0",
- "php": "^8.1",
- "psr/container": "^1.1.1|^2.0.1"
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
- "provide": {
- "psr/container-implementation": "1.1|2.0"
+ "require-dev": {
+ "doctrine/annotations": "^2.0.1",
+ "ext-phar": "*",
+ "laminas/laminas-coding-standard": "^2.5.0",
+ "laminas/laminas-stdlib": "^3.17.0",
+ "phpunit/phpunit": "^10.3.3",
+ "psalm/plugin-phpunit": "^0.18.4",
+ "vimeo/psalm": "^5.15.0"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "10.x-dev"
- }
+ "suggest": {
+ "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
+ "laminas/laminas-stdlib": "Laminas\\Stdlib component"
},
+ "type": "library",
"autoload": {
"psr-4": {
- "Illuminate\\Container\\": ""
+ "Laminas\\Code\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
- "authors": [
- {
- "name": "Taylor Otwell",
- "email": "taylor@laravel.com"
- }
+ "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
+ "homepage": "https://laminas.dev",
+ "keywords": [
+ "code",
+ "laminas",
+ "laminasframework"
],
- "description": "The Illuminate Container package.",
- "homepage": "https://laravel.com",
"support": {
- "issues": "https://github.com/laravel/framework/issues",
- "source": "https://github.com/laravel/framework"
- },
- "time": "2023-01-25T18:11:51+00:00"
- },
- {
- "name": "illuminate/contracts",
- "version": "v10.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/illuminate/contracts.git",
- "reference": "84f1da424ab9596a422ce118abd05667b0069624"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/illuminate/contracts/zipball/84f1da424ab9596a422ce118abd05667b0069624",
- "reference": "84f1da424ab9596a422ce118abd05667b0069624",
- "shasum": ""
- },
- "require": {
- "php": "^8.1",
- "psr/container": "^1.1.1|^2.0.1",
- "psr/simple-cache": "^1.0|^2.0|^3.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "10.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Illuminate\\Contracts\\": ""
- }
+ "chat": "https://laminas.dev/chat",
+ "docs": "https://docs.laminas.dev/laminas-code/",
+ "forum": "https://discourse.laminas.dev",
+ "issues": "https://github.com/laminas/laminas-code/issues",
+ "rss": "https://github.com/laminas/laminas-code/releases.atom",
+ "source": "https://github.com/laminas/laminas-code"
},
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
+ "funding": [
{
- "name": "Taylor Otwell",
- "email": "taylor@laravel.com"
+ "url": "https://funding.communitybridge.org/projects/laminas-project",
+ "type": "community_bridge"
}
],
- "description": "The Illuminate Contracts package.",
- "homepage": "https://laravel.com",
- "support": {
- "issues": "https://github.com/laravel/framework/issues",
- "source": "https://github.com/laravel/framework"
- },
- "time": "2023-02-14T15:00:37+00:00"
+ "time": "2023-10-18T10:00:55+00:00"
},
{
"name": "laminas/laminas-di",
- "version": "3.13.x-dev",
+ "version": "3.14.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fart/fork-laminas-di.git",
- "reference": "cc0f43c10b89b2fde82644eb6153b1d1b41fb15b"
+ "url": "https://github.com/laminas/laminas-di.git",
+ "reference": "63d86f64ccfa6c4f49e534e312cc89ca613ba3c5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fart/fork-laminas-di/zipball/cc0f43c10b89b2fde82644eb6153b1d1b41fb15b",
- "reference": "cc0f43c10b89b2fde82644eb6153b1d1b41fb15b",
+ "url": "https://api.github.com/repos/laminas/laminas-di/zipball/63d86f64ccfa6c4f49e534e312cc89ca613ba3c5",
+ "reference": "63d86f64ccfa6c4f49e534e312cc89ca613ba3c5",
"shasum": ""
},
"require": {
- "laminas/laminas-stdlib": "^3.6",
- "php": "~8.0.0 || ~8.1.0 || ~8.2.0",
- "psr/container": "^1.1.1 || ^2.0",
- "psr/log": "^1.1.4 || ^3.0.0"
+ "laminas/laminas-stdlib": "^3.18.0",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
+ "psr/container": "^1.1.1",
+ "psr/log": "^1.1.4 || ^2.0.0 || ^3.0.0"
},
"conflict": {
"laminas/laminas-servicemanager": "<3.13.0",
@@ -769,7 +348,7 @@
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
- "laminas/laminas-servicemanager": "^3.12",
+ "laminas/laminas-servicemanager": "^3.22",
"mikey179/vfsstream": "^1.6.11@alpha",
"phpbench/phpbench": "^1.2.7",
"phpunit/phpunit": "^9.5.26",
@@ -780,7 +359,6 @@
"suggest": {
"laminas/laminas-servicemanager": "An IoC container without auto wiring capabilities"
},
- "default-branch": true,
"type": "library",
"extra": {
"laminas": {
@@ -793,82 +371,59 @@
"Laminas\\Di\\": "src/"
}
},
- "autoload-dev": {
- "psr-4": {
- "LaminasTest\\Di\\": "test/",
- "LaminasBench\\Di\\": "benchmarks/"
- }
- },
- "scripts": {
- "benchmark": [
- "phpbench run --revs=2 --iterations=2 --report=aggregate"
- ],
- "check": [
- "@cs-check",
- "@test"
- ],
- "cs-check": [
- "phpcs"
- ],
- "cs-fix": [
- "phpcbf"
- ],
- "analyse": [
- "psalm --shepherd --stats"
- ],
- "test": [
- "phpunit --colors=always"
- ],
- "test-coverage": [
- "phpunit --colors=always --coverage-clover clover.xml"
- ]
- },
+ "notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"description": "Automated dependency injection for PSR-11 containers",
"homepage": "https://laminas.dev",
"keywords": [
+ "PSR-11",
"di",
- "laminas",
- "psr-11"
+ "laminas"
],
"support": {
+ "chat": "https://laminas.dev/chat",
"docs": "https://docs.laminas.dev/laminas-di/",
+ "forum": "https://discourse.laminas.dev",
"issues": "https://github.com/laminas/laminas-di/issues",
- "source": "https://github.com/laminas/laminas-di",
"rss": "https://github.com/laminas/laminas-di/releases.atom",
- "chat": "https://laminas.dev/chat",
- "forum": "https://discourse.laminas.dev"
+ "source": "https://github.com/laminas/laminas-di"
},
- "time": "2023-03-24T13:41:03+00:00"
+ "funding": [
+ {
+ "url": "https://funding.communitybridge.org/projects/laminas-project",
+ "type": "community_bridge"
+ }
+ ],
+ "time": "2024-05-02T12:56:18+00:00"
},
{
"name": "laminas/laminas-stdlib",
- "version": "3.17.0",
+ "version": "3.19.0",
"source": {
"type": "git",
"url": "https://github.com/laminas/laminas-stdlib.git",
- "reference": "dd35c868075bad80b6718959740913e178eb4274"
+ "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/dd35c868075bad80b6718959740913e178eb4274",
- "reference": "dd35c868075bad80b6718959740913e178eb4274",
+ "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
+ "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
"shasum": ""
},
"require": {
- "php": "~8.1.0 || ~8.2.0"
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"conflict": {
"zendframework/zend-stdlib": "*"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.5",
- "phpbench/phpbench": "^1.2.9",
- "phpunit/phpunit": "^10.0.16",
+ "phpbench/phpbench": "^1.2.15",
+ "phpunit/phpunit": "^10.5.8",
"psalm/plugin-phpunit": "^0.18.4",
- "vimeo/psalm": "^5.8"
+ "vimeo/psalm": "^5.20.0"
},
"type": "library",
"autoload": {
@@ -900,20 +455,20 @@
"type": "community_bridge"
}
],
- "time": "2023-03-20T13:51:37+00:00"
+ "time": "2024-01-19T12:39:49+00:00"
},
{
"name": "laravel/serializable-closure",
- "version": "v1.3.0",
+ "version": "v1.3.3",
"source": {
"type": "git",
"url": "https://github.com/laravel/serializable-closure.git",
- "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
+ "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
- "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
+ "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
+ "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
"shasum": ""
},
"require": {
@@ -960,203 +515,168 @@
"issues": "https://github.com/laravel/serializable-closure/issues",
"source": "https://github.com/laravel/serializable-closure"
},
- "time": "2023-01-30T18:31:20+00:00"
+ "time": "2023-11-08T14:08:06+00:00"
},
{
- "name": "league/container",
- "version": "4.2.0",
+ "name": "php-di/invoker",
+ "version": "2.3.4",
"source": {
"type": "git",
- "url": "https://github.com/thephpleague/container.git",
- "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
+ "url": "https://github.com/PHP-DI/Invoker.git",
+ "reference": "33234b32dafa8eb69202f950a1fc92055ed76a86"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
- "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
+ "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/33234b32dafa8eb69202f950a1fc92055ed76a86",
+ "reference": "33234b32dafa8eb69202f950a1fc92055ed76a86",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0",
- "psr/container": "^1.1 || ^2.0"
- },
- "provide": {
- "psr/container-implementation": "^1.0"
- },
- "replace": {
- "orno/di": "~2.0"
+ "php": ">=7.3",
+ "psr/container": "^1.0|^2.0"
},
"require-dev": {
- "nette/php-generator": "^3.4",
- "nikic/php-parser": "^4.10",
- "phpstan/phpstan": "^0.12.47",
- "phpunit/phpunit": "^8.5.17",
- "roave/security-advisories": "dev-latest",
- "scrutinizer/ocular": "^1.8",
- "squizlabs/php_codesniffer": "^3.6"
+ "athletic/athletic": "~0.1.8",
+ "mnapoli/hard-mode": "~0.3.0",
+ "phpunit/phpunit": "^9.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.x-dev",
- "dev-4.x": "4.x-dev",
- "dev-3.x": "3.x-dev",
- "dev-2.x": "2.x-dev",
- "dev-1.x": "1.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "League\\Container\\": "src"
+ "Invoker\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "authors": [
- {
- "name": "Phil Bennett",
- "email": "mail@philbennett.co.uk",
- "role": "Developer"
- }
- ],
- "description": "A fast and intuitive dependency injection container.",
- "homepage": "https://github.com/thephpleague/container",
+ "description": "Generic and extensible callable invoker",
+ "homepage": "https://github.com/PHP-DI/Invoker",
"keywords": [
- "container",
+ "callable",
"dependency",
- "di",
+ "dependency-injection",
"injection",
- "league",
- "provider",
- "service"
+ "invoke",
+ "invoker"
],
"support": {
- "issues": "https://github.com/thephpleague/container/issues",
- "source": "https://github.com/thephpleague/container/tree/4.2.0"
+ "issues": "https://github.com/PHP-DI/Invoker/issues",
+ "source": "https://github.com/PHP-DI/Invoker/tree/2.3.4"
},
"funding": [
{
- "url": "https://github.com/philipobenito",
+ "url": "https://github.com/mnapoli",
"type": "github"
}
],
- "time": "2021-11-16T10:29:06+00:00"
+ "time": "2023-09-08T09:24:21+00:00"
},
{
- "name": "league/flysystem",
- "version": "2.5.0",
+ "name": "php-di/php-di",
+ "version": "7.0.6",
"source": {
"type": "git",
- "url": "https://github.com/thephpleague/flysystem.git",
- "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb"
+ "url": "https://github.com/PHP-DI/PHP-DI.git",
+ "reference": "8097948a89f6ec782839b3e958432f427cac37fd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
- "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
+ "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/8097948a89f6ec782839b3e958432f427cac37fd",
+ "reference": "8097948a89f6ec782839b3e958432f427cac37fd",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "league/mime-type-detection": "^1.0.0",
- "php": "^7.2 || ^8.0"
+ "laravel/serializable-closure": "^1.0",
+ "php": ">=8.0",
+ "php-di/invoker": "^2.0",
+ "psr/container": "^1.1 || ^2.0"
},
- "conflict": {
- "guzzlehttp/ringphp": "<1.1.1"
+ "provide": {
+ "psr/container-implementation": "^1.0"
},
"require-dev": {
- "async-aws/s3": "^1.5",
- "async-aws/simple-s3": "^1.0",
- "aws/aws-sdk-php": "^3.132.4",
- "composer/semver": "^3.0",
- "ext-fileinfo": "*",
- "ext-ftp": "*",
- "friendsofphp/php-cs-fixer": "^3.2",
- "google/cloud-storage": "^1.23",
- "phpseclib/phpseclib": "^2.0",
- "phpstan/phpstan": "^0.12.26",
- "phpunit/phpunit": "^8.5 || ^9.4",
- "sabre/dav": "^4.1"
+ "friendsofphp/php-cs-fixer": "^3",
+ "friendsofphp/proxy-manager-lts": "^1",
+ "mnapoli/phpunit-easymock": "^1.3",
+ "phpunit/phpunit": "^9.5",
+ "vimeo/psalm": "^4.6"
+ },
+ "suggest": {
+ "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
},
"type": "library",
"autoload": {
+ "files": [
+ "src/functions.php"
+ ],
"psr-4": {
- "League\\Flysystem\\": "src"
+ "DI\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "authors": [
- {
- "name": "Frank de Jonge",
- "email": "info@frankdejonge.nl"
- }
- ],
- "description": "File storage abstraction for PHP",
+ "description": "The dependency injection container for humans",
+ "homepage": "https://php-di.org/",
"keywords": [
- "WebDAV",
- "aws",
- "cloud",
- "file",
- "files",
- "filesystem",
- "filesystems",
- "ftp",
- "s3",
- "sftp",
- "storage"
+ "PSR-11",
+ "container",
+ "container-interop",
+ "dependency injection",
+ "di",
+ "ioc",
+ "psr11"
],
"support": {
- "issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/2.5.0"
+ "issues": "https://github.com/PHP-DI/PHP-DI/issues",
+ "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.6"
},
"funding": [
{
- "url": "https://ecologi.com/frankdejonge",
- "type": "custom"
- },
- {
- "url": "https://github.com/frankdejonge",
+ "url": "https://github.com/mnapoli",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
+ "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
"type": "tidelift"
}
],
- "time": "2022-09-17T21:02:32+00:00"
+ "time": "2023-11-02T10:04:50+00:00"
},
{
- "name": "league/mime-type-detection",
- "version": "1.11.0",
+ "name": "phpbench/container",
+ "version": "2.2.2",
"source": {
"type": "git",
- "url": "https://github.com/thephpleague/mime-type-detection.git",
- "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
+ "url": "https://github.com/phpbench/container.git",
+ "reference": "a59b929e00b87b532ca6d0edd8eca0967655af33"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
- "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
+ "url": "https://api.github.com/repos/phpbench/container/zipball/a59b929e00b87b532ca6d0edd8eca0967655af33",
+ "reference": "a59b929e00b87b532ca6d0edd8eca0967655af33",
"shasum": ""
},
"require": {
- "ext-fileinfo": "*",
- "php": "^7.2 || ^8.0"
+ "psr/container": "^1.0|^2.0",
+ "symfony/options-resolver": "^4.2 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "^3.2",
- "phpstan/phpstan": "^0.12.68",
- "phpunit/phpunit": "^8.5.8 || ^9.3"
+ "friendsofphp/php-cs-fixer": "^2.16",
+ "phpstan/phpstan": "^0.12.52",
+ "phpunit/phpunit": "^8"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
- "League\\MimeTypeDetection\\": "src"
+ "PhpBench\\DependencyInjection\\": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1165,93 +685,49 @@
],
"authors": [
{
- "name": "Frank de Jonge",
- "email": "info@frankdejonge.nl"
+ "name": "Daniel Leech",
+ "email": "daniel@dantleech.com"
}
],
- "description": "Mime-type detection for Flysystem",
+ "description": "Simple, configurable, service container.",
"support": {
- "issues": "https://github.com/thephpleague/mime-type-detection/issues",
- "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
+ "issues": "https://github.com/phpbench/container/issues",
+ "source": "https://github.com/phpbench/container/tree/2.2.2"
},
- "funding": [
- {
- "url": "https://github.com/frankdejonge",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
- "type": "tidelift"
- }
- ],
- "time": "2022-04-17T13:12:02+00:00"
+ "time": "2023-10-30T13:38:26+00:00"
},
{
- "name": "monolog/monolog",
- "version": "2.9.1",
+ "name": "phpbench/dom",
+ "version": "0.3.3",
"source": {
"type": "git",
- "url": "https://github.com/Seldaek/monolog.git",
- "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
+ "url": "https://github.com/phpbench/dom.git",
+ "reference": "786a96db538d0def931f5b19225233ec42ec7a72"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
- "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
+ "url": "https://api.github.com/repos/phpbench/dom/zipball/786a96db538d0def931f5b19225233ec42ec7a72",
+ "reference": "786a96db538d0def931f5b19225233ec42ec7a72",
"shasum": ""
},
"require": {
- "php": ">=7.2",
- "psr/log": "^1.0.1 || ^2.0 || ^3.0"
- },
- "provide": {
- "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
+ "ext-dom": "*",
+ "php": "^7.3||^8.0"
},
"require-dev": {
- "aws/aws-sdk-php": "^2.4.9 || ^3.0",
- "doctrine/couchdb": "~1.0@dev",
- "elasticsearch/elasticsearch": "^7 || ^8",
- "ext-json": "*",
- "graylog2/gelf-php": "^1.4.2 || ^2@dev",
- "guzzlehttp/guzzle": "^7.4",
- "guzzlehttp/psr7": "^2.2",
- "mongodb/mongodb": "^1.8",
- "php-amqplib/php-amqplib": "~2.4 || ^3",
- "phpspec/prophecy": "^1.15",
- "phpstan/phpstan": "^0.12.91",
- "phpunit/phpunit": "^8.5.14",
- "predis/predis": "^1.1 || ^2.0",
- "rollbar/rollbar": "^1.3 || ^2 || ^3",
- "ruflin/elastica": "^7",
- "swiftmailer/swiftmailer": "^5.3|^6.0",
- "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"
+ "friendsofphp/php-cs-fixer": "^3.14",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^8.0||^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "2.x-dev"
+ "dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
- "Monolog\\": "src/Monolog"
+ "PhpBench\\Dom\\": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1260,6969 +736,325 @@
],
"authors": [
{
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "https://seld.be"
+ "name": "Daniel Leech",
+ "email": "daniel@dantleech.com"
}
],
- "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
- "homepage": "https://github.com/Seldaek/monolog",
- "keywords": [
- "log",
- "logging",
- "psr-3"
- ],
+ "description": "DOM wrapper to simplify working with the PHP DOM implementation",
"support": {
- "issues": "https://github.com/Seldaek/monolog/issues",
- "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
+ "issues": "https://github.com/phpbench/dom/issues",
+ "source": "https://github.com/phpbench/dom/tree/0.3.3"
},
- "funding": [
- {
- "url": "https://github.com/Seldaek",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
- "type": "tidelift"
- }
- ],
- "time": "2023-02-06T13:44:46+00:00"
+ "time": "2023-03-06T23:46:57+00:00"
},
{
- "name": "myclabs/deep-copy",
- "version": "1.11.1",
+ "name": "phpbench/phpbench",
+ "version": "1.2.15",
"source": {
"type": "git",
- "url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
+ "url": "https://github.com/phpbench/phpbench.git",
+ "reference": "f7000319695cfad04a57fc64bf7ef7abdf4c437c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
- "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
+ "url": "https://api.github.com/repos/phpbench/phpbench/zipball/f7000319695cfad04a57fc64bf7ef7abdf4c437c",
+ "reference": "f7000319695cfad04a57fc64bf7ef7abdf4c437c",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
- },
- "conflict": {
- "doctrine/collections": "<1.6.8",
- "doctrine/common": "<2.13.3 || >=3,<3.2.2"
- },
- "require-dev": {
- "doctrine/collections": "^1.6.8",
- "doctrine/common": "^2.13.3 || ^3.2.2",
- "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/DeepCopy/deep_copy.php"
- ],
- "psr-4": {
- "DeepCopy\\": "src/DeepCopy/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "Create deep copies (clones) of your objects",
- "keywords": [
- "clone",
- "copy",
- "duplicate",
- "object",
- "object graph"
- ],
- "support": {
- "issues": "https://github.com/myclabs/DeepCopy/issues",
- "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
- },
- "funding": [
- {
- "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
- "type": "tidelift"
- }
- ],
- "time": "2023-03-08T13:26:56+00:00"
- },
- {
- "name": "nette/php-generator",
- "version": "v4.0.6",
- "source": {
- "type": "git",
- "url": "https://github.com/nette/php-generator.git",
- "reference": "0f1275bb8d39b3eb92b57c22a51fe693f1f145a5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/nette/php-generator/zipball/0f1275bb8d39b3eb92b57c22a51fe693f1f145a5",
- "reference": "0f1275bb8d39b3eb92b57c22a51fe693f1f145a5",
- "shasum": ""
- },
- "require": {
- "nette/utils": "^3.2.9 || ^4.0",
- "php": ">=8.0 <8.3"
+ "doctrine/annotations": "^2.0",
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-pcre": "*",
+ "ext-reflection": "*",
+ "ext-spl": "*",
+ "ext-tokenizer": "*",
+ "php": "^8.1",
+ "phpbench/container": "^2.1",
+ "phpbench/dom": "~0.3.3",
+ "psr/log": "^1.1 || ^2.0 || ^3.0",
+ "seld/jsonlint": "^1.1",
+ "symfony/console": "^4.2 || ^5.0 || ^6.0 || ^7.0",
+ "symfony/filesystem": "^4.2 || ^5.0 || ^6.0 || ^7.0",
+ "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
+ "symfony/options-resolver": "^4.2 || ^5.0 || ^6.0 || ^7.0",
+ "symfony/process": "^4.2 || ^5.0 || ^6.0 || ^7.0",
+ "webmozart/glob": "^4.6"
},
"require-dev": {
- "jetbrains/phpstorm-attributes": "dev-master",
- "nette/tester": "^2.4",
- "nikic/php-parser": "^4.15",
+ "dantleech/invoke": "^2.0",
+ "friendsofphp/php-cs-fixer": "^3.0",
+ "jangregor/phpstan-prophecy": "^1.0",
+ "phpspec/prophecy": "dev-master",
+ "phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
- "tracy/tracy": "^2.8"
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpunit/phpunit": "^10.0",
+ "rector/rector": "^0.18.10",
+ "symfony/error-handler": "^5.2 || ^6.0 || ^7.0",
+ "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"suggest": {
- "nikic/php-parser": "to use ClassType::from(withBodies: true) & ClassType::fromCode()"
+ "ext-xdebug": "For Xdebug profiling extension."
},
+ "bin": [
+ "bin/phpbench"
+ ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-master": "1.2-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "files": [
+ "lib/Report/Func/functions.php"
+ ],
+ "psr-4": {
+ "PhpBench\\": "lib/",
+ "PhpBench\\Extensions\\XDebug\\": "extensions/xdebug/lib/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause",
- "GPL-2.0-only",
- "GPL-3.0-only"
+ "MIT"
],
"authors": [
{
- "name": "David Grudl",
- "homepage": "https://davidgrudl.com"
- },
- {
- "name": "Nette Community",
- "homepage": "https://nette.org/contributors"
+ "name": "Daniel Leech",
+ "email": "daniel@dantleech.com"
}
],
- "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.2 features.",
- "homepage": "https://nette.org",
+ "description": "PHP Benchmarking Framework",
"keywords": [
- "code",
- "nette",
- "php",
- "scaffolding"
+ "benchmarking",
+ "optimization",
+ "performance",
+ "profiling",
+ "testing"
],
"support": {
- "issues": "https://github.com/nette/php-generator/issues",
- "source": "https://github.com/nette/php-generator/tree/v4.0.6"
- },
- "time": "2023-03-13T17:38:30+00:00"
- },
- {
- "name": "nette/utils",
- "version": "v4.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/nette/utils.git",
- "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
- "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
- "shasum": ""
- },
- "require": {
- "php": ">=8.0 <8.3"
- },
- "conflict": {
- "nette/finder": "<3",
- "nette/schema": "<1.2.2"
- },
- "require-dev": {
- "jetbrains/phpstorm-attributes": "dev-master",
- "nette/tester": "^2.4",
- "phpstan/phpstan": "^1.0",
- "tracy/tracy": "^2.9"
- },
- "suggest": {
- "ext-gd": "to use Image",
- "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
- "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
- "ext-json": "to use Nette\\Utils\\Json",
- "ext-mbstring": "to use Strings::lower() etc...",
- "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
- "ext-xml": "to use Strings::length() etc. when mbstring is not available"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
+ "issues": "https://github.com/phpbench/phpbench/issues",
+ "source": "https://github.com/phpbench/phpbench/tree/1.2.15"
},
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause",
- "GPL-2.0-only",
- "GPL-3.0-only"
- ],
- "authors": [
- {
- "name": "David Grudl",
- "homepage": "https://davidgrudl.com"
- },
+ "funding": [
{
- "name": "Nette Community",
- "homepage": "https://nette.org/contributors"
+ "url": "https://github.com/dantleech",
+ "type": "github"
}
],
- "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
- "homepage": "https://nette.org",
- "keywords": [
- "array",
- "core",
- "datetime",
- "images",
- "json",
- "nette",
- "paginator",
- "password",
- "slugify",
- "string",
- "unicode",
- "utf-8",
- "utility",
- "validation"
- ],
- "support": {
- "issues": "https://github.com/nette/utils/issues",
- "source": "https://github.com/nette/utils/tree/v4.0.0"
- },
- "time": "2023-02-02T10:41:53+00:00"
+ "time": "2023-11-29T12:21:11+00:00"
},
{
- "name": "nikic/php-parser",
- "version": "v4.15.4",
+ "name": "psr/cache",
+ "version": "3.0.0",
"source": {
"type": "git",
- "url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
+ "url": "https://github.com/php-fig/cache.git",
+ "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
- "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
+ "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
+ "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
"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"
+ "php": ">=8.0.0"
},
- "bin": [
- "bin/php-parse"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.9-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "PhpParser\\": "lib/PhpParser"
+ "Psr\\Cache\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Nikita Popov"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "A PHP parser written in PHP",
+ "description": "Common interface for caching libraries",
"keywords": [
- "parser",
- "php"
+ "cache",
+ "psr",
+ "psr-6"
],
"support": {
- "issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
+ "source": "https://github.com/php-fig/cache/tree/3.0.0"
},
- "time": "2023-03-05T19:49:14+00:00"
+ "time": "2021-02-03T23:26:27+00:00"
},
{
- "name": "nyholm/psr7",
- "version": "1.5.1",
+ "name": "psr/container",
+ "version": "1.1.2",
"source": {
"type": "git",
- "url": "https://github.com/Nyholm/psr7.git",
- "reference": "f734364e38a876a23be4d906a2a089e1315be18a"
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Nyholm/psr7/zipball/f734364e38a876a23be4d906a2a089e1315be18a",
- "reference": "f734364e38a876a23be4d906a2a089e1315be18a",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
+ "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
"shasum": ""
},
"require": {
- "php": ">=7.1",
- "php-http/message-factory": "^1.0",
- "psr/http-factory": "^1.0",
- "psr/http-message": "^1.0"
- },
- "provide": {
- "psr/http-factory-implementation": "1.0",
- "psr/http-message-implementation": "1.0"
- },
- "require-dev": {
- "http-interop/http-factory-tests": "^0.9",
- "php-http/psr7-integration-tests": "^1.0",
- "phpunit/phpunit": "^7.5 || 8.5 || 9.4",
- "symfony/error-handler": "^4.4"
+ "php": ">=7.4.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4-dev"
- }
- },
"autoload": {
"psr-4": {
- "Nyholm\\Psr7\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Tobias Nyholm",
- "email": "tobias.nyholm@gmail.com"
- },
- {
- "name": "Martijn van der Ven",
- "email": "martijn@vanderven.se"
- }
- ],
- "description": "A fast PHP7 implementation of PSR-7",
- "homepage": "https://tnyholm.se",
- "keywords": [
- "psr-17",
- "psr-7"
- ],
- "support": {
- "issues": "https://github.com/Nyholm/psr7/issues",
- "source": "https://github.com/Nyholm/psr7/tree/1.5.1"
- },
- "funding": [
- {
- "url": "https://github.com/Zegnat",
- "type": "github"
- },
- {
- "url": "https://github.com/nyholm",
- "type": "github"
+ "Psr\\Container\\": "src/"
}
- ],
- "time": "2022-06-22T07:13:36+00:00"
- },
- {
- "name": "paragonie/random_compat",
- "version": "v9.99.100",
- "source": {
- "type": "git",
- "url": "https://github.com/paragonie/random_compat.git",
- "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
},
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
- "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
- "shasum": ""
- },
- "require": {
- "php": ">= 7"
- },
- "require-dev": {
- "phpunit/phpunit": "4.*|5.*",
- "vimeo/psalm": "^1"
- },
- "suggest": {
- "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
- },
- "type": "library",
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
- "name": "Paragon Initiative Enterprises",
- "email": "security@paragonie.com",
- "homepage": "https://paragonie.com"
- }
- ],
- "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
- "keywords": [
- "csprng",
- "polyfill",
- "pseudorandom",
- "random"
- ],
- "support": {
- "email": "info@paragonie.com",
- "issues": "https://github.com/paragonie/random_compat/issues",
- "source": "https://github.com/paragonie/random_compat"
- },
- "time": "2020-10-15T08:29:30+00:00"
- },
- {
- "name": "php-di/invoker",
- "version": "2.3.3",
- "source": {
- "type": "git",
- "url": "https://github.com/PHP-DI/Invoker.git",
- "reference": "cd6d9f267d1a3474bdddf1be1da079f01b942786"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/cd6d9f267d1a3474bdddf1be1da079f01b942786",
- "reference": "cd6d9f267d1a3474bdddf1be1da079f01b942786",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3",
- "psr/container": "^1.0|^2.0"
- },
- "require-dev": {
- "athletic/athletic": "~0.1.8",
- "mnapoli/hard-mode": "~0.3.0",
- "phpunit/phpunit": "^9.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Invoker\\": "src/"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
],
- "description": "Generic and extensible callable invoker",
- "homepage": "https://github.com/PHP-DI/Invoker",
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
"keywords": [
- "callable",
- "dependency",
- "dependency-injection",
- "injection",
- "invoke",
- "invoker"
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
],
"support": {
- "issues": "https://github.com/PHP-DI/Invoker/issues",
- "source": "https://github.com/PHP-DI/Invoker/tree/2.3.3"
+ "issues": "https://github.com/php-fig/container/issues",
+ "source": "https://github.com/php-fig/container/tree/1.1.2"
},
- "funding": [
- {
- "url": "https://github.com/mnapoli",
- "type": "github"
- }
- ],
- "time": "2021-12-13T09:22:56+00:00"
+ "time": "2021-11-05T16:50:12+00:00"
},
{
- "name": "php-di/php-di",
- "version": "7.0.2",
+ "name": "psr/log",
+ "version": "3.0.0",
"source": {
"type": "git",
- "url": "https://github.com/PHP-DI/PHP-DI.git",
- "reference": "5d1a8664e24f23b25e0426bbcb1288287fb49181"
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/5d1a8664e24f23b25e0426bbcb1288287fb49181",
- "reference": "5d1a8664e24f23b25e0426bbcb1288287fb49181",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
+ "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
"shasum": ""
},
- "require": {
- "laravel/serializable-closure": "^1.0",
- "php": ">=8.0",
- "php-di/invoker": "^2.0",
- "psr/container": "^1.1 || ^2.0"
- },
- "provide": {
- "psr/container-implementation": "^1.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^3",
- "mnapoli/phpunit-easymock": "^1.3",
- "ocramius/proxy-manager": "^2.11.2",
- "phpunit/phpunit": "^9.5",
- "vimeo/psalm": "^4.6"
- },
- "suggest": {
- "ocramius/proxy-manager": "Install it if you want to use lazy injection (version ^2.3)"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/functions.php"
- ],
- "psr-4": {
- "DI\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "The dependency injection container for humans",
- "homepage": "https://php-di.org/",
- "keywords": [
- "PSR-11",
- "container",
- "container-interop",
- "dependency injection",
- "di",
- "ioc",
- "psr11"
- ],
- "support": {
- "issues": "https://github.com/PHP-DI/PHP-DI/issues",
- "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.2"
- },
- "funding": [
- {
- "url": "https://github.com/mnapoli",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
- "type": "tidelift"
- }
- ],
- "time": "2023-02-07T17:34:03+00:00"
- },
- {
- "name": "php-http/message-factory",
- "version": "v1.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/php-http/message-factory.git",
- "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
- "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4",
- "psr/http-message": "^1.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Http\\Message\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Márk Sági-Kazár",
- "email": "mark.sagikazar@gmail.com"
- }
- ],
- "description": "Factory interfaces for PSR-7 HTTP Message",
- "homepage": "http://php-http.org",
- "keywords": [
- "factory",
- "http",
- "message",
- "stream",
- "uri"
- ],
- "support": {
- "issues": "https://github.com/php-http/message-factory/issues",
- "source": "https://github.com/php-http/message-factory/tree/master"
- },
- "time": "2015-12-19T14:08:53+00:00"
- },
- {
- "name": "phpoption/phpoption",
- "version": "1.9.1",
- "source": {
- "type": "git",
- "url": "https://github.com/schmittjoh/php-option.git",
- "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
- "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5 || ^8.0"
- },
- "require-dev": {
- "bamarni/composer-bin-plugin": "^1.8.2",
- "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
- },
- "type": "library",
- "extra": {
- "bamarni-bin": {
- "bin-links": true,
- "forward-command": true
- },
- "branch-alias": {
- "dev-master": "1.9-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "PhpOption\\": "src/PhpOption/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "Johannes M. Schmitt",
- "email": "schmittjoh@gmail.com",
- "homepage": "https://github.com/schmittjoh"
- },
- {
- "name": "Graham Campbell",
- "email": "hello@gjcampbell.co.uk",
- "homepage": "https://github.com/GrahamCampbell"
- }
- ],
- "description": "Option Type for PHP",
- "keywords": [
- "language",
- "option",
- "php",
- "type"
- ],
- "support": {
- "issues": "https://github.com/schmittjoh/php-option/issues",
- "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
- },
- "funding": [
- {
- "url": "https://github.com/GrahamCampbell",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
- "type": "tidelift"
- }
- ],
- "time": "2023-02-25T19:38:58+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/container",
- "version": "2.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/container.git",
- "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
- "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
- "shasum": ""
- },
- "require": {
- "php": ">=7.4.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Container\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common Container Interface (PHP FIG PSR-11)",
- "homepage": "https://github.com/php-fig/container",
- "keywords": [
- "PSR-11",
- "container",
- "container-interface",
- "container-interop",
- "psr"
- ],
- "support": {
- "issues": "https://github.com/php-fig/container/issues",
- "source": "https://github.com/php-fig/container/tree/2.0.2"
- },
- "time": "2021-11-05T16:47:00+00:00"
- },
- {
- "name": "psr/event-dispatcher",
- "version": "1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/event-dispatcher.git",
- "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
- "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
- "shasum": ""
- },
- "require": {
- "php": ">=7.2.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\EventDispatcher\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Standard interfaces for event handling.",
- "keywords": [
- "events",
- "psr",
- "psr-14"
- ],
- "support": {
- "issues": "https://github.com/php-fig/event-dispatcher/issues",
- "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
- },
- "time": "2019-01-08T18:20:26+00:00"
- },
- {
- "name": "psr/http-factory",
- "version": "1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/http-factory.git",
- "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
- "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
- "shasum": ""
- },
- "require": {
- "php": ">=7.0.0",
- "psr/http-message": "^1.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Http\\Message\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Common interfaces for PSR-7 HTTP message factories",
- "keywords": [
- "factory",
- "http",
- "message",
- "psr",
- "psr-17",
- "psr-7",
- "request",
- "response"
- ],
- "support": {
- "source": "https://github.com/php-fig/http-factory/tree/master"
- },
- "time": "2019-04-30T12:38:16+00:00"
- },
- {
- "name": "psr/http-message",
- "version": "1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/http-message.git",
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Http\\Message\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Common interface for HTTP messages",
- "homepage": "https://github.com/php-fig/http-message",
- "keywords": [
- "http",
- "http-message",
- "psr",
- "psr-7",
- "request",
- "response"
- ],
- "support": {
- "source": "https://github.com/php-fig/http-message/tree/master"
- },
- "time": "2016-08-06T14:39:51+00:00"
- },
- {
- "name": "psr/http-server-handler",
- "version": "1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/http-server-handler.git",
- "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
- "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
- "shasum": ""
- },
- "require": {
- "php": ">=7.0",
- "psr/http-message": "^1.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Http\\Server\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Common interface for HTTP server-side request handler",
- "keywords": [
- "handler",
- "http",
- "http-interop",
- "psr",
- "psr-15",
- "psr-7",
- "request",
- "response",
- "server"
- ],
- "support": {
- "issues": "https://github.com/php-fig/http-server-handler/issues",
- "source": "https://github.com/php-fig/http-server-handler/tree/master"
- },
- "time": "2018-10-30T16:46:14+00:00"
- },
- {
- "name": "psr/http-server-middleware",
- "version": "1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/http-server-middleware.git",
- "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
- "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
- "shasum": ""
- },
- "require": {
- "php": ">=7.0",
- "psr/http-message": "^1.0",
- "psr/http-server-handler": "^1.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Http\\Server\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Common interface for HTTP server-side middleware",
- "keywords": [
- "http",
- "http-interop",
- "middleware",
- "psr",
- "psr-15",
- "psr-7",
- "request",
- "response"
- ],
- "support": {
- "issues": "https://github.com/php-fig/http-server-middleware/issues",
- "source": "https://github.com/php-fig/http-server-middleware/tree/master"
- },
- "time": "2018-10-30T17:12:04+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": "psr/simple-cache",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/simple-cache.git",
- "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
- "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
- "shasum": ""
- },
- "require": {
- "php": ">=8.0.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\SimpleCache\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common interfaces for simple caching",
- "keywords": [
- "cache",
- "caching",
- "psr",
- "psr-16",
- "simple-cache"
- ],
- "support": {
- "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
- },
- "time": "2021-10-29T13:26:27+00:00"
- },
- {
- "name": "spiral/attributes",
- "version": "v3.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/attributes.git",
- "reference": "b1c3f9cd8b7b0632f03e7046a38c2a98f3ed2e65"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/attributes/zipball/b1c3f9cd8b7b0632f03e7046a38c2a98f3ed2e65",
- "reference": "b1c3f9cd8b7b0632f03e7046a38c2a98f3ed2e65",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/cache": ">=1.0",
- "psr/simple-cache": "1 - 3"
- },
- "require-dev": {
- "doctrine/annotations": "^1.12 || ^2.0",
- "jetbrains/phpstorm-attributes": "^1.0",
- "phpunit/phpunit": "^9.5.20",
- "symfony/var-dumper": "^5.2 || ^6.0",
- "vimeo/psalm": "^4.21"
- },
- "suggest": {
- "doctrine/annotations": "^1.0 for Doctrine metadata driver support"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.1.x-dev"
- }
- },
- "autoload": {
- "files": [
- "src/polyfill.php"
- ],
- "psr-4": {
- "Spiral\\Attributes\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Kirill Nesmeyanov (SerafimArts)",
- "email": "kirill.nesmeyanov@spiralscout.com"
- }
- ],
- "description": "PHP attributes reader",
- "homepage": "https://spiral.dev",
- "support": {
- "issues": "https://github.com/spiral/attributes/issues",
- "source": "https://github.com/spiral/attributes"
- },
- "time": "2023-03-15T07:25:15+00:00"
- },
- {
- "name": "spiral/composer-publish-plugin",
- "version": "v1.1.2",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/composer-publish-plugin.git",
- "reference": "8d25c228389fcc0d4315a83913b8a5eb26c4e45b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/composer-publish-plugin/zipball/8d25c228389fcc0d4315a83913b8a5eb26c4e45b",
- "reference": "8d25c228389fcc0d4315a83913b8a5eb26c4e45b",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^1.1|^2.0",
- "php": ">=7.1"
- },
- "require-dev": {
- "composer/composer": "^1.7",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "Spiral\\Composer\\PublishPlugin"
- },
- "autoload": {
- "psr-4": {
- "Spiral\\Composer\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "support": {
- "issues": "https://github.com/spiral/composer-publish-plugin/issues",
- "source": "https://github.com/spiral/composer-publish-plugin/tree/v1.1.2"
- },
- "time": "2020-11-12T23:10:18+00:00"
- },
- {
- "name": "spiral/framework",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/framework.git",
- "reference": "5d5b62ec6a975a55cb470aba1c94463e50892e96"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/framework/zipball/5d5b62ec6a975a55cb470aba1c94463e50892e96",
- "reference": "5d5b62ec6a975a55cb470aba1c94463e50892e96",
- "shasum": ""
- },
- "require": {
- "cocur/slugify": "^3.2",
- "codedungeon/php-cli-colors": "^1.11",
- "defuse/php-encryption": "^2.2",
- "doctrine/annotations": "^1.12 || ^2.0",
- "doctrine/inflector": "^1.4|^2.0",
- "ext-json": "*",
- "ext-mbstring": "*",
- "ext-tokenizer": "*",
- "league/flysystem": "^2.3.1",
- "monolog/monolog": "^2.2",
- "myclabs/deep-copy": "^1.9",
- "nette/php-generator": "^4.0.1",
- "nikic/php-parser": "^4.13.2",
- "php": ">=8.1",
- "psr/container": "^1.1|^2.0",
- "psr/event-dispatcher": "^1.0",
- "psr/http-factory": "^1.0",
- "psr/http-factory-implementation": "^1.0",
- "psr/http-message": "^1.0",
- "psr/http-server-middleware": "^1.0",
- "psr/log": "1 - 3",
- "psr/simple-cache": "2 - 3",
- "spiral/attributes": "^2.8|^3.0",
- "spiral/composer-publish-plugin": "^1.0",
- "symfony/console": "^6.1",
- "symfony/finder": "^5.3.7|^6.0",
- "symfony/mailer": "^5.1|^6.0",
- "symfony/translation": "^5.1|^6.0",
- "vlucas/phpdotenv": "^5.4"
- },
- "replace": {
- "spiral/annotated-routes": "self.version",
- "spiral/auth": "self.version",
- "spiral/auth-http": "self.version",
- "spiral/boot": "self.version",
- "spiral/broadcasting": "self.version",
- "spiral/cache": "self.version",
- "spiral/config": "self.version",
- "spiral/console": "self.version",
- "spiral/cookies": "self.version",
- "spiral/core": "self.version",
- "spiral/csrf": "self.version",
- "spiral/debug": "self.version",
- "spiral/distribution": "self.version",
- "spiral/dotenv-bridge": "self.version",
- "spiral/encrypter": "self.version",
- "spiral/events": "self.version",
- "spiral/exceptions": "self.version",
- "spiral/files": "self.version",
- "spiral/filters": "self.version",
- "spiral/hmvc": "self.version",
- "spiral/http": "self.version",
- "spiral/logger": "self.version",
- "spiral/mailer": "self.version",
- "spiral/models": "self.version",
- "spiral/monolog-bridge": "self.version",
- "spiral/pagination": "self.version",
- "spiral/prototype": "self.version",
- "spiral/queue": "self.version",
- "spiral/reactor": "self.version",
- "spiral/router": "self.version",
- "spiral/scaffolder": "self.version",
- "spiral/security": "self.version",
- "spiral/sendit": "self.version",
- "spiral/serializer": "self.version",
- "spiral/session": "self.version",
- "spiral/snapshots": "self.version",
- "spiral/stempler": "self.version",
- "spiral/stempler-bridge": "self.version",
- "spiral/storage": "self.version",
- "spiral/streams": "self.version",
- "spiral/telemetry": "self.version",
- "spiral/tokenizer": "self.version",
- "spiral/translator": "self.version",
- "spiral/validation": "self.version",
- "spiral/views": "self.version"
- },
- "require-dev": {
- "aws/aws-sdk-php": "^3.0",
- "guzzlehttp/psr7": "^1.7",
- "jetbrains/phpstorm-attributes": "^1.0",
- "league/flysystem-async-aws-s3": "^2.0",
- "league/flysystem-aws-s3-v3": "^2.0",
- "mikey179/vfsstream": "^1.6",
- "mockery/mockery": "^1.5",
- "phpunit/phpunit": "^9.5.20",
- "ramsey/collection": "^1.2",
- "ramsey/uuid": "^4.2.3",
- "rector/rector": "0.15.23",
- "spiral/code-style": "^1.1",
- "spiral/nyholm-bridge": "^1.2",
- "spiral/testing": "^2.2",
- "spiral/validator": "^1.2",
- "symplify/monorepo-builder": "^10.2.7",
- "vimeo/psalm": "^4.27"
- },
- "default-branch": true,
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.7.x-dev"
- }
- },
- "autoload": {
- "files": [
- "src/Boot/src/helpers.php",
- "src/Framework/helpers.php",
- "src/Scaffolder/src/helpers.php",
- "src/Stempler/src/helpers.php",
- "src/Translator/src/helpers.php"
- ],
- "psr-4": {
- "Spiral\\": "src/Framework",
- "Spiral\\Auth\\": [
- "src/Auth/src",
- "src/AuthHttp/src"
- ],
- "Spiral\\Boot\\": "src/Boot/src",
- "Spiral\\Core\\": [
- "src/Core/src",
- "src/Hmvc/src"
- ],
- "Spiral\\Csrf\\": "src/Csrf/src",
- "Spiral\\Http\\": "src/Http/src",
- "Spiral\\Cache\\": "src/Cache/src",
- "Spiral\\Debug\\": "src/Debug/src",
- "Spiral\\Files\\": "src/Files/src",
- "Spiral\\Queue\\": "src/Queue/src",
- "Spiral\\Views\\": "src/Views/src",
- "Spiral\\Config\\": "src/Config/src",
- "Spiral\\DotEnv\\": "src/Bridge/Dotenv/src",
- "Spiral\\Events\\": "src/Events/src",
- "Spiral\\Logger\\": "src/Logger/src",
- "Spiral\\Mailer\\": "src/Mailer/src",
- "Spiral\\Models\\": "src/Models/src",
- "Spiral\\Router\\": [
- "src/AnnotatedRoutes/src",
- "src/Router/src"
- ],
- "Spiral\\SendIt\\": "src/SendIt/src",
- "Spiral\\Console\\": "src/Console/src",
- "Spiral\\Cookies\\": "src/Cookies/src",
- "Spiral\\Filters\\": "src/Filters/src",
- "Spiral\\Monolog\\": "src/Bridge/Monolog/src",
- "Spiral\\Reactor\\": "src/Reactor/src",
- "Spiral\\Session\\": "src/Session/src",
- "Spiral\\Storage\\": "src/Storage/src",
- "Spiral\\Streams\\": "src/Streams/src",
- "Spiral\\Security\\": "src/Security/src",
- "Spiral\\Stempler\\": [
- "src/Bridge/Stempler/src",
- "src/Stempler/src"
- ],
- "Spiral\\Encrypter\\": "src/Encrypter/src",
- "Spiral\\Prototype\\": "src/Prototype/src",
- "Spiral\\Snapshots\\": "src/Snapshots/src",
- "Spiral\\Telemetry\\": "src/Telemetry/src",
- "Spiral\\Tokenizer\\": "src/Tokenizer/src",
- "Spiral\\Exceptions\\": "src/Exceptions/src",
- "Spiral\\Pagination\\": "src/Pagination/src",
- "Spiral\\Scaffolder\\": "src/Scaffolder/src",
- "Spiral\\Serializer\\": "src/Serializer/src",
- "Spiral\\Translator\\": "src/Translator/src",
- "Spiral\\Validation\\": "src/Validation/src",
- "Spiral\\Broadcasting\\": "src/Broadcasting/src",
- "Spiral\\Distribution\\": "src/Distribution/src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
- },
- {
- "name": "Pavel Butchnev (butschster)",
- "email": "pavel.buchnev@spiralscout.com"
- },
- {
- "name": "Aleksei Gagarin (roxblnfk)",
- "email": "alexey.gagarin@spiralscout.com"
- },
- {
- "name": "Maksim Smakouz (msmakouz)",
- "email": "maksim.smakouz@spiralscout.com"
- }
- ],
- "description": "Spiral, High-Performance PHP/Go Framework",
- "homepage": "https://spiral.dev",
- "support": {
- "issues": "https://github.com/spiral/framework/issues",
- "source": "https://github.com/spiral/framework"
- },
- "funding": [
- {
- "url": "https://github.com/roadrunner-server",
- "type": "github"
- }
- ],
- "time": "2023-03-24T07:20:04+00:00"
- },
- {
- "name": "spiral/goridge",
- "version": "v3.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/goridge-php.git",
- "reference": "3d8e97d7d1cc26b6130d233177b23ecb3c7d4efb"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/goridge-php/zipball/3d8e97d7d1cc26b6130d233177b23ecb3c7d4efb",
- "reference": "3d8e97d7d1cc26b6130d233177b23ecb3c7d4efb",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "ext-sockets": "*",
- "php": ">=7.4",
- "symfony/polyfill-php80": "^1.22"
- },
- "require-dev": {
- "google/protobuf": "^3.17",
- "infection/infection": "^0.26.1",
- "jetbrains/phpstorm-attributes": "^1.0",
- "phpunit/phpunit": "^9.5",
- "rybakit/msgpack": "^0.7",
- "vimeo/psalm": "^4.18.1"
- },
- "suggest": {
- "ext-msgpack": "MessagePack codec support",
- "ext-protobuf": "Protobuf codec support",
- "google/protobuf": "(^3.0) Protobuf codec support",
- "rybakit/msgpack": "(^0.7) MessagePack codec support"
- },
- "type": "goridge",
- "extra": {
- "branch-alias": {
- "dev-master": "3.3.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Spiral\\Goridge\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "High-performance PHP-to-Golang RPC bridge",
- "support": {
- "issues": "https://github.com/spiral/goridge-php/issues",
- "source": "https://github.com/spiral/goridge-php/tree/v3.2.0"
- },
- "time": "2022-03-21T20:32:19+00:00"
- },
- {
- "name": "spiral/roadrunner-cli",
- "version": "v2.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/roadrunner-cli.git",
- "reference": "8676fcc57823b164cac216f08e8590fe7d0f2016"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/roadrunner-cli/zipball/8676fcc57823b164cac216f08e8590fe7d0f2016",
- "reference": "8676fcc57823b164cac216f08e8590fe7d0f2016",
- "shasum": ""
- },
- "require": {
- "composer/semver": "^3.2",
- "ext-json": "*",
- "php": ">=7.4",
- "spiral/roadrunner-worker": ">=2.0.2",
- "spiral/tokenizer": "^2.13 || ^3.0",
- "symfony/console": "^4.4|^5.0|^6.0",
- "symfony/http-client": "^4.4|^5.0|^6.0",
- "symfony/polyfill-php80": "^1.22",
- "symfony/yaml": "^5.4 || ^6.0"
- },
- "require-dev": {
- "jetbrains/phpstorm-attributes": "^1.0",
- "symfony/var-dumper": "^4.4|^5.0",
- "vimeo/psalm": "^4.4"
- },
- "bin": [
- "bin/rr"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.1.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Spiral\\RoadRunner\\Console\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
- },
- {
- "name": "RoadRunner Community",
- "homepage": "https://github.com/spiral/roadrunner/graphs/contributors"
- }
- ],
- "description": "RoadRunner: Command Line Interface",
- "support": {
- "issues": "https://github.com/spiral/roadrunner-cli/issues",
- "source": "https://github.com/spiral/roadrunner-cli/tree/v2.4.0"
- },
- "time": "2022-12-16T07:35:51+00:00"
- },
- {
- "name": "spiral/roadrunner-worker",
- "version": "v2.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/roadrunner-worker.git",
- "reference": "028adbbd43566b264fa3e3edb47cfbc3fb2cd11e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/roadrunner-worker/zipball/028adbbd43566b264fa3e3edb47cfbc3fb2cd11e",
- "reference": "028adbbd43566b264fa3e3edb47cfbc3fb2cd11e",
- "shasum": ""
- },
- "require": {
- "composer-runtime-api": "^2.0",
- "ext-json": "*",
- "ext-sockets": "*",
- "php": ">=7.4",
- "psr/log": "^1.0|^2.0|^3.0",
- "spiral/goridge": "^3.2.0",
- "symfony/polyfill-php80": "^1.23"
- },
- "require-dev": {
- "jetbrains/phpstorm-attributes": "^1.0",
- "symfony/var-dumper": "^5.1",
- "vimeo/psalm": "^4.4"
- },
- "suggest": {
- "spiral/roadrunner-cli": "Provides RoadRunner installation and management CLI tools"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.3.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Spiral\\RoadRunner\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
- },
- {
- "name": "RoadRunner Community",
- "homepage": "https://github.com/spiral/roadrunner/graphs/contributors"
- }
- ],
- "description": "RoadRunner: PHP worker",
- "support": {
- "issues": "https://github.com/spiral/roadrunner-worker/issues",
- "source": "https://github.com/spiral/roadrunner-worker/tree/v2.3.0"
- },
- "time": "2022-10-28T09:36:29+00:00"
- },
- {
- "name": "symfony/console",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/console.git",
- "reference": "cbad09eb8925b6ad4fb721c7a179344dc4a19d45"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/cbad09eb8925b6ad4fb721c7a179344dc4a19d45",
- "reference": "cbad09eb8925b6ad4fb721c7a179344dc4a19d45",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/service-contracts": "^1.1|^2|^3",
- "symfony/string": "^5.4|^6.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",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/event-dispatcher": "^5.4|^6.0",
- "symfony/lock": "^5.4|^6.0",
- "symfony/process": "^5.4|^6.0",
- "symfony/var-dumper": "^5.4|^6.0"
- },
- "suggest": {
- "psr/log": "For using the console logger",
- "symfony/event-dispatcher": "",
- "symfony/lock": "",
- "symfony/process": ""
- },
- "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.2.7"
- },
- "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-25T17:00:03+00:00"
- },
- {
- "name": "symfony/dependency-injection",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/dependency-injection.git",
- "reference": "83369dd4ec84bba9673524d25b79dfbde9e6e84c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/83369dd4ec84bba9673524d25b79dfbde9e6e84c",
- "reference": "83369dd4ec84bba9673524d25b79dfbde9e6e84c",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/container": "^1.1|^2.0",
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/service-contracts": "^1.1.6|^2.0|^3.0",
- "symfony/var-exporter": "^6.2.7"
- },
- "conflict": {
- "ext-psr": "<1.1|>=2",
- "symfony/config": "<6.1",
- "symfony/finder": "<5.4",
- "symfony/proxy-manager-bridge": "<6.2",
- "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",
- "symfony/expression-language": "^5.4|^6.0",
- "symfony/yaml": "^5.4|^6.0"
- },
- "suggest": {
- "symfony/config": "",
- "symfony/expression-language": "For using expressions in service container configuration",
- "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
- "symfony/yaml": ""
- },
- "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.2.7"
- },
- "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-16T14:11:02+00:00"
- },
- {
- "name": "symfony/deprecation-contracts",
- "version": "v3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
- "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.3-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.2.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-03-01T10:25:55+00:00"
- },
- {
- "name": "symfony/event-dispatcher",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "404b307de426c1c488e5afad64403e5f145e82a5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/404b307de426c1c488e5afad64403e5f145e82a5",
- "reference": "404b307de426c1c488e5afad64403e5f145e82a5",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/event-dispatcher-contracts": "^2|^3"
- },
- "conflict": {
- "symfony/dependency-injection": "<5.4"
- },
- "provide": {
- "psr/event-dispatcher-implementation": "1.0",
- "symfony/event-dispatcher-implementation": "2.0|3.0"
- },
- "require-dev": {
- "psr/log": "^1|^2|^3",
- "symfony/config": "^5.4|^6.0",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/error-handler": "^5.4|^6.0",
- "symfony/expression-language": "^5.4|^6.0",
- "symfony/http-foundation": "^5.4|^6.0",
- "symfony/service-contracts": "^1.1|^2|^3",
- "symfony/stopwatch": "^5.4|^6.0"
- },
- "suggest": {
- "symfony/dependency-injection": "",
- "symfony/http-kernel": ""
- },
- "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/v6.2.7"
- },
- "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-14T08:44:56+00:00"
- },
- {
- "name": "symfony/event-dispatcher-contracts",
- "version": "v3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/event-dispatcher-contracts.git",
- "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
- "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/event-dispatcher": "^1"
- },
- "suggest": {
- "symfony/event-dispatcher-implementation": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.3-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.2.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-03-01T10:32:47+00:00"
- },
- {
- "name": "symfony/finder",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/finder.git",
- "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
- "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "require-dev": {
- "symfony/filesystem": "^6.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/v6.2.7"
- },
- "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-16T09:57:23+00:00"
- },
- {
- "name": "symfony/http-client",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/http-client.git",
- "reference": "0a5be6cbc570ae23b51b49d67341f378629d78e4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client/zipball/0a5be6cbc570ae23b51b49d67341f378629d78e4",
- "reference": "0a5be6cbc570ae23b51b49d67341f378629d78e4",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/log": "^1|^2|^3",
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/http-client-contracts": "^3",
- "symfony/service-contracts": "^1.0|^2|^3"
- },
- "provide": {
- "php-http/async-client-implementation": "*",
- "php-http/client-implementation": "*",
- "psr/http-client-implementation": "1.0",
- "symfony/http-client-implementation": "3.0"
- },
- "require-dev": {
- "amphp/amp": "^2.5",
- "amphp/http-client": "^4.2.1",
- "amphp/http-tunnel": "^1.0",
- "amphp/socket": "^1.1",
- "guzzlehttp/promises": "^1.4",
- "nyholm/psr7": "^1.0",
- "php-http/httplug": "^1.0|^2.0",
- "psr/http-client": "^1.0",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/http-kernel": "^5.4|^6.0",
- "symfony/process": "^5.4|^6.0",
- "symfony/stopwatch": "^5.4|^6.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\HttpClient\\": ""
- },
- "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 powerful methods to fetch HTTP resources synchronously or asynchronously",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/http-client/tree/v6.2.7"
- },
- "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-21T10:54:55+00:00"
- },
- {
- "name": "symfony/http-client-contracts",
- "version": "v3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/http-client-contracts.git",
- "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
- "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "suggest": {
- "symfony/http-client-implementation": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.3-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Contracts\\HttpClient\\": ""
- },
- "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 HTTP clients",
- "homepage": "https://symfony.com",
- "keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
- ],
- "support": {
- "source": "https://github.com/symfony/http-client-contracts/tree/v3.2.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-03-01T10:32:47+00:00"
- },
- {
- "name": "symfony/mailer",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/mailer.git",
- "reference": "e4f84c633b72ec70efc50b8016871c3bc43e691e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/mailer/zipball/e4f84c633b72ec70efc50b8016871c3bc43e691e",
- "reference": "e4f84c633b72ec70efc50b8016871c3bc43e691e",
- "shasum": ""
- },
- "require": {
- "egulias/email-validator": "^2.1.10|^3|^4",
- "php": ">=8.1",
- "psr/event-dispatcher": "^1",
- "psr/log": "^1|^2|^3",
- "symfony/event-dispatcher": "^5.4|^6.0",
- "symfony/mime": "^6.2",
- "symfony/service-contracts": "^1.1|^2|^3"
- },
- "conflict": {
- "symfony/http-kernel": "<5.4",
- "symfony/messenger": "<6.2",
- "symfony/mime": "<6.2",
- "symfony/twig-bridge": "<6.2.1"
- },
- "require-dev": {
- "symfony/console": "^5.4|^6.0",
- "symfony/http-client": "^5.4|^6.0",
- "symfony/messenger": "^6.2",
- "symfony/twig-bridge": "^6.2"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Mailer\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Helps sending emails",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/mailer/tree/v6.2.7"
- },
- "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-21T10:35:38+00:00"
- },
- {
- "name": "symfony/mime",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/mime.git",
- "reference": "62e341f80699badb0ad70b31149c8df89a2d778e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/62e341f80699badb0ad70b31149c8df89a2d778e",
- "reference": "62e341f80699badb0ad70b31149c8df89a2d778e",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/polyfill-intl-idn": "^1.10",
- "symfony/polyfill-mbstring": "^1.0"
- },
- "conflict": {
- "egulias/email-validator": "~3.0.0",
- "phpdocumentor/reflection-docblock": "<3.2.2",
- "phpdocumentor/type-resolver": "<1.4.0",
- "symfony/mailer": "<5.4",
- "symfony/serializer": "<6.2"
- },
- "require-dev": {
- "egulias/email-validator": "^2.1.10|^3.1|^4",
- "league/html-to-markdown": "^5.0",
- "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/property-access": "^5.4|^6.0",
- "symfony/property-info": "^5.4|^6.0",
- "symfony/serializer": "^6.2"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Mime\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Allows manipulating MIME messages",
- "homepage": "https://symfony.com",
- "keywords": [
- "mime",
- "mime-type"
- ],
- "support": {
- "source": "https://github.com/symfony/mime/tree/v6.2.7"
- },
- "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-24T10:42:00+00:00"
- },
- {
- "name": "symfony/polyfill-ctype",
- "version": "v1.27.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
- "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "provide": {
- "ext-ctype": "*"
- },
- "suggest": {
- "ext-ctype": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
- "autoload": {
- "files": [
- "bootstrap.php"
- ],
- "psr-4": {
- "Symfony\\Polyfill\\Ctype\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Gert de Pagter",
- "email": "BackEndTea@gmail.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill for ctype functions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "ctype",
- "polyfill",
- "portable"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.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": "2022-11-03T14:55:06+00:00"
- },
- {
- "name": "symfony/polyfill-intl-grapheme",
- "version": "v1.27.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
- "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "suggest": {
- "ext-intl": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-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.27.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": "2022-11-03T14:55:06+00:00"
- },
- {
- "name": "symfony/polyfill-intl-idn",
- "version": "v1.27.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-intl-idn.git",
- "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
- "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1",
- "symfony/polyfill-intl-normalizer": "^1.10",
- "symfony/polyfill-php72": "^1.10"
- },
- "suggest": {
- "ext-intl": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
- "autoload": {
- "files": [
- "bootstrap.php"
- ],
- "psr-4": {
- "Symfony\\Polyfill\\Intl\\Idn\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Laurent Bassin",
- "email": "laurent@bassin.info"
- },
- {
- "name": "Trevor Rowbotham",
- "email": "trevor.rowbotham@pm.me"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "idn",
- "intl",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.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": "2022-11-03T14:55:06+00:00"
- },
- {
- "name": "symfony/polyfill-intl-normalizer",
- "version": "v1.27.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
- "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "suggest": {
- "ext-intl": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-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.27.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": "2022-11-03T14:55:06+00:00"
- },
- {
- "name": "symfony/polyfill-mbstring",
- "version": "v1.27.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
- "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "provide": {
- "ext-mbstring": "*"
- },
- "suggest": {
- "ext-mbstring": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-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.27.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": "2022-11-03T14:55:06+00:00"
- },
- {
- "name": "symfony/polyfill-php72",
- "version": "v1.27.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
- "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
- "autoload": {
- "files": [
- "bootstrap.php"
- ],
- "psr-4": {
- "Symfony\\Polyfill\\Php72\\": ""
- }
- },
- "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 7.2+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.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": "2022-11-03T14:55:06+00:00"
- },
- {
- "name": "symfony/polyfill-php80",
- "version": "v1.27.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
- "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
- "autoload": {
- "files": [
- "bootstrap.php"
- ],
- "psr-4": {
- "Symfony\\Polyfill\\Php80\\": ""
- },
- "classmap": [
- "Resources/stubs"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Ion Bazan",
- "email": "ion.bazan@gmail.com"
- },
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.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": "2022-11-03T14:55:06+00:00"
- },
- {
- "name": "symfony/service-contracts",
- "version": "v3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/service-contracts.git",
- "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
- "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "psr/container": "^2.0"
- },
- "conflict": {
- "ext-psr": "<1.1|>=2"
- },
- "suggest": {
- "symfony/service-implementation": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.3-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.2.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-03-01T10:32:47+00:00"
- },
- {
- "name": "symfony/string",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/string.git",
- "reference": "67b8c1eec78296b85dc1c7d9743830160218993d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/67b8c1eec78296b85dc1c7d9743830160218993d",
- "reference": "67b8c1eec78296b85dc1c7d9743830160218993d",
- "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.0"
- },
- "require-dev": {
- "symfony/error-handler": "^5.4|^6.0",
- "symfony/http-client": "^5.4|^6.0",
- "symfony/intl": "^6.2",
- "symfony/translation-contracts": "^2.0|^3.0",
- "symfony/var-exporter": "^5.4|^6.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.2.7"
- },
- "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-24T10:42:00+00:00"
- },
- {
- "name": "symfony/translation",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/translation.git",
- "reference": "90db1c6138c90527917671cd9ffa9e8b359e3a73"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/90db1c6138c90527917671cd9ffa9e8b359e3a73",
- "reference": "90db1c6138c90527917671cd9ffa9e8b359e3a73",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/translation-contracts": "^2.3|^3.0"
- },
- "conflict": {
- "symfony/config": "<5.4",
- "symfony/console": "<5.4",
- "symfony/dependency-injection": "<5.4",
- "symfony/http-kernel": "<5.4",
- "symfony/twig-bundle": "<5.4",
- "symfony/yaml": "<5.4"
- },
- "provide": {
- "symfony/translation-implementation": "2.3|3.0"
- },
- "require-dev": {
- "nikic/php-parser": "^4.13",
- "psr/log": "^1|^2|^3",
- "symfony/config": "^5.4|^6.0",
- "symfony/console": "^5.4|^6.0",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/finder": "^5.4|^6.0",
- "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
- "symfony/http-kernel": "^5.4|^6.0",
- "symfony/intl": "^5.4|^6.0",
- "symfony/polyfill-intl-icu": "^1.21",
- "symfony/routing": "^5.4|^6.0",
- "symfony/service-contracts": "^1.1.2|^2|^3",
- "symfony/yaml": "^5.4|^6.0"
- },
- "suggest": {
- "nikic/php-parser": "To use PhpAstExtractor",
- "psr/log-implementation": "To use logging capability in translator",
- "symfony/config": "",
- "symfony/yaml": ""
- },
- "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/v6.2.7"
- },
- "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-24T10:42:00+00:00"
- },
- {
- "name": "symfony/translation-contracts",
- "version": "v3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/translation-contracts.git",
- "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
- "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "suggest": {
- "symfony/translation-implementation": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.3-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.2.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-03-01T10:32:47+00:00"
- },
- {
- "name": "symfony/var-exporter",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/var-exporter.git",
- "reference": "86062dd0103530e151588c8f60f5b85a139f1442"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/var-exporter/zipball/86062dd0103530e151588c8f60f5b85a139f1442",
- "reference": "86062dd0103530e151588c8f60f5b85a139f1442",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "require-dev": {
- "symfony/var-dumper": "^5.4|^6.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/v6.2.7"
- },
- "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-24T10:42:00+00:00"
- },
- {
- "name": "symfony/yaml",
- "version": "v6.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/yaml.git",
- "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/e8e6a1d59e050525f27a1f530aa9703423cb7f57",
- "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/polyfill-ctype": "^1.8"
- },
- "conflict": {
- "symfony/console": "<5.4"
- },
- "require-dev": {
- "symfony/console": "^5.4|^6.0"
- },
- "suggest": {
- "symfony/console": "For validating YAML files using the lint command"
- },
- "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.2.7"
- },
- "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-16T09:57:23+00:00"
- },
- {
- "name": "vlucas/phpdotenv",
- "version": "v5.5.0",
- "source": {
- "type": "git",
- "url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
- "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
- "shasum": ""
- },
- "require": {
- "ext-pcre": "*",
- "graham-campbell/result-type": "^1.0.2",
- "php": "^7.1.3 || ^8.0",
- "phpoption/phpoption": "^1.8",
- "symfony/polyfill-ctype": "^1.23",
- "symfony/polyfill-mbstring": "^1.23.1",
- "symfony/polyfill-php80": "^1.23.1"
- },
- "require-dev": {
- "bamarni/composer-bin-plugin": "^1.4.1",
- "ext-filter": "*",
- "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
- },
- "suggest": {
- "ext-filter": "Required to use the boolean validator."
- },
- "type": "library",
- "extra": {
- "bamarni-bin": {
- "bin-links": true,
- "forward-command": true
- },
- "branch-alias": {
- "dev-master": "5.5-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Dotenv\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Graham Campbell",
- "email": "hello@gjcampbell.co.uk",
- "homepage": "https://github.com/GrahamCampbell"
- },
- {
- "name": "Vance Lucas",
- "email": "vance@vancelucas.com",
- "homepage": "https://github.com/vlucas"
- }
- ],
- "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
- "keywords": [
- "dotenv",
- "env",
- "environment"
- ],
- "support": {
- "issues": "https://github.com/vlucas/phpdotenv/issues",
- "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
- },
- "funding": [
- {
- "url": "https://github.com/GrahamCampbell",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
- "type": "tidelift"
- }
- ],
- "time": "2022-10-16T01:01:54+00:00"
- },
- {
- "name": "yiisoft/definitions",
- "version": "3.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/definitions.git",
- "reference": "49d9ffa0532aeef1b44eab9c652981fed344c9fa"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/definitions/zipball/49d9ffa0532aeef1b44eab9c652981fed344c9fa",
- "reference": "49d9ffa0532aeef1b44eab9c652981fed344c9fa",
- "shasum": ""
- },
- "require": {
- "php": "^8.0",
- "psr/container": "^1.0|^2.0"
- },
- "require-dev": {
- "maglnet/composer-require-checker": "^4.2",
- "phpunit/phpunit": "^9.5",
- "rector/rector": "^0.15.2",
- "roave/infection-static-analysis-plugin": "^1.18",
- "spatie/phpunit-watcher": "^1.23",
- "vimeo/psalm": "^4.30|^5.6",
- "yiisoft/test-support": "^1.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Yiisoft\\Definitions\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "The package provides definition syntax",
- "homepage": "https://www.yiiframework.com/",
- "keywords": [
- "definitions"
- ],
- "support": {
- "chat": "https://t.me/yii3en",
- "forum": "https://www.yiiframework.com/forum/",
- "irc": "irc://irc.freenode.net/yii",
- "issues": "https://github.com/yiisoft/definitions/issues?state=open",
- "source": "https://github.com/yiisoft/definitions",
- "wiki": "https://www.yiiframework.com/wiki/"
- },
- "funding": [
- {
- "url": "https://github.com/sponsors/yiisoft",
- "type": "github"
- },
- {
- "url": "https://opencollective.com/yiisoft",
- "type": "opencollective"
- }
- ],
- "time": "2023-02-12T13:27:59+00:00"
- },
- {
- "name": "yiisoft/di",
- "version": "1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/di.git",
- "reference": "a6d889f74030a381dad337f1bd1ea9de7341bc9b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/di/zipball/a6d889f74030a381dad337f1bd1ea9de7341bc9b",
- "reference": "a6d889f74030a381dad337f1bd1ea9de7341bc9b",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "php": "^8.0",
- "psr/container": "^1.1|^2.0",
- "yiisoft/definitions": "^3.0"
- },
- "provide": {
- "psr/container-implementation": "1.0.0"
- },
- "require-dev": {
- "league/container": "^4.2",
- "maglnet/composer-require-checker": "^4.2",
- "phpbench/phpbench": "^1.2.0",
- "phpunit/phpunit": "^9.5",
- "rector/rector": "^0.14.3",
- "roave/infection-static-analysis-plugin": "^1.25",
- "spatie/phpunit-watcher": "^1.23",
- "vimeo/psalm": "^4.29",
- "yiisoft/injector": "^1.0",
- "yiisoft/test-support": "^3.0"
- },
- "suggest": {
- "phpbench/phpbench": "To run benchmarks.",
- "yiisoft/injector": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Yiisoft\\Di\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "Yii DI container",
- "homepage": "https://www.yiiframework.com/",
- "keywords": [
- "Autowiring",
- "PSR-11",
- "container",
- "dependency",
- "di",
- "injection",
- "injector"
- ],
- "support": {
- "chat": "https://t.me/yii3en",
- "forum": "https://www.yiiframework.com/forum/",
- "irc": "irc://irc.freenode.net/yii",
- "issues": "https://github.com/yiisoft/di/issues?state=open",
- "source": "https://github.com/yiisoft/di",
- "wiki": "https://www.yiiframework.com/wiki/"
- },
- "funding": [
- {
- "url": "https://github.com/yiisoft",
- "type": "github"
- },
- {
- "url": "https://opencollective.com/yiisoft",
- "type": "open_collective"
- }
- ],
- "time": "2022-12-23T16:12:56+00:00"
- },
- {
- "name": "yiisoft/factory",
- "version": "1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/factory.git",
- "reference": "e93903c7960d0ff5897a9e36ff3b0ecb3ab25a8d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/factory/zipball/e93903c7960d0ff5897a9e36ff3b0ecb3ab25a8d",
- "reference": "e93903c7960d0ff5897a9e36ff3b0ecb3ab25a8d",
- "shasum": ""
- },
- "require": {
- "php": "^8.0",
- "psr/container": "^1.0|^2.0",
- "yiisoft/definitions": "^1.0|^2.0|^3.0.1"
- },
- "require-dev": {
- "maglnet/composer-require-checker": "^4.2",
- "phpunit/phpunit": "^9.5",
- "rector/rector": "^0.14.3",
- "roave/infection-static-analysis-plugin": "^1.16",
- "spatie/phpunit-watcher": "^1.23",
- "vimeo/psalm": "^4.18",
- "yiisoft/test-support": "^1.3"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Yiisoft\\Factory\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "Yii Factory",
- "homepage": "https://www.yiiframework.com/",
- "keywords": [
- "factory"
- ],
- "support": {
- "chat": "https://t.me/yii3en",
- "forum": "https://www.yiiframework.com/forum/",
- "irc": "irc://irc.freenode.net/yii",
- "issues": "https://github.com/yiisoft/factory/issues",
- "source": "https://github.com/yiisoft/factory",
- "wiki": "https://www.yiiframework.com/wiki/"
- },
- "funding": [
- {
- "url": "https://github.com/yiisoft",
- "type": "github"
- },
- {
- "url": "https://opencollective.com/yiisoft",
- "type": "open_collective"
- }
- ],
- "time": "2022-11-08T08:54:16+00:00"
- }
- ],
- "packages-dev": [
- {
- "name": "alexkart/curl-builder",
- "version": "1.0.6",
- "source": {
- "type": "git",
- "url": "https://github.com/alexkart/curl-builder.git",
- "reference": "ba66b39ecef463ce6850d51ac8223a7f8ae494f4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/alexkart/curl-builder/zipball/ba66b39ecef463ce6850d51ac8223a7f8ae494f4",
- "reference": "ba66b39ecef463ce6850d51ac8223a7f8ae494f4",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1",
- "psr/http-message": "^1.0"
- },
- "require-dev": {
- "nyholm/psr7": "^1.3",
- "phan/phan": "^3.2",
- "phpunit/phpunit": "^7.2"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Alexkart\\CurlBuilder\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Alexander Kartavenko",
- "email": "askemailbox@gmail.com"
- }
- ],
- "description": "PSR-7 compatible curl builder.",
- "support": {
- "issues": "https://github.com/alexkart/curl-builder/issues",
- "source": "https://github.com/alexkart/curl-builder/tree/1.0.6"
- },
- "time": "2020-10-26T14:58:50+00:00"
- },
- {
- "name": "amphp/amp",
- "version": "v2.6.2",
- "source": {
- "type": "git",
- "url": "https://github.com/amphp/amp.git",
- "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/amphp/amp/zipball/9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
- "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "require-dev": {
- "amphp/php-cs-fixer-config": "dev-master",
- "amphp/phpunit-util": "^1",
- "ext-json": "*",
- "jetbrains/phpstorm-stubs": "^2019.3",
- "phpunit/phpunit": "^7 | ^8 | ^9",
- "psalm/phar": "^3.11@dev",
- "react/promise": "^2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.x-dev"
- }
- },
- "autoload": {
- "files": [
- "lib/functions.php",
- "lib/Internal/functions.php"
- ],
- "psr-4": {
- "Amp\\": "lib"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Daniel Lowrey",
- "email": "rdlowrey@php.net"
- },
- {
- "name": "Aaron Piotrowski",
- "email": "aaron@trowski.com"
- },
- {
- "name": "Bob Weinand",
- "email": "bobwei9@hotmail.com"
- },
- {
- "name": "Niklas Keller",
- "email": "me@kelunik.com"
- }
- ],
- "description": "A non-blocking concurrency framework for PHP applications.",
- "homepage": "https://amphp.org/amp",
- "keywords": [
- "async",
- "asynchronous",
- "awaitable",
- "concurrency",
- "event",
- "event-loop",
- "future",
- "non-blocking",
- "promise"
- ],
- "support": {
- "irc": "irc://irc.freenode.org/amphp",
- "issues": "https://github.com/amphp/amp/issues",
- "source": "https://github.com/amphp/amp/tree/v2.6.2"
- },
- "funding": [
- {
- "url": "https://github.com/amphp",
- "type": "github"
- }
- ],
- "time": "2022-02-20T17:52:18+00:00"
- },
- {
- "name": "amphp/byte-stream",
- "version": "v1.8.1",
- "source": {
- "type": "git",
- "url": "https://github.com/amphp/byte-stream.git",
- "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd",
- "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd",
- "shasum": ""
- },
- "require": {
- "amphp/amp": "^2",
- "php": ">=7.1"
- },
- "require-dev": {
- "amphp/php-cs-fixer-config": "dev-master",
- "amphp/phpunit-util": "^1.4",
- "friendsofphp/php-cs-fixer": "^2.3",
- "jetbrains/phpstorm-stubs": "^2019.3",
- "phpunit/phpunit": "^6 || ^7 || ^8",
- "psalm/phar": "^3.11.4"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.x-dev"
- }
- },
- "autoload": {
- "files": [
- "lib/functions.php"
- ],
- "psr-4": {
- "Amp\\ByteStream\\": "lib"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Aaron Piotrowski",
- "email": "aaron@trowski.com"
- },
- {
- "name": "Niklas Keller",
- "email": "me@kelunik.com"
- }
- ],
- "description": "A stream abstraction to make working with non-blocking I/O simple.",
- "homepage": "http://amphp.org/byte-stream",
- "keywords": [
- "amp",
- "amphp",
- "async",
- "io",
- "non-blocking",
- "stream"
- ],
- "support": {
- "irc": "irc://irc.freenode.org/amphp",
- "issues": "https://github.com/amphp/byte-stream/issues",
- "source": "https://github.com/amphp/byte-stream/tree/v1.8.1"
- },
- "funding": [
- {
- "url": "https://github.com/amphp",
- "type": "github"
- }
- ],
- "time": "2021-03-30T17:13:30+00:00"
- },
- {
- "name": "cebe/markdown",
- "version": "1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/cebe/markdown.git",
- "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
- "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
- "shasum": ""
- },
- "require": {
- "lib-pcre": "*",
- "php": ">=5.4.0"
- },
- "require-dev": {
- "cebe/indent": "*",
- "facebook/xhprof": "*@dev",
- "phpunit/phpunit": "4.1.*"
- },
- "bin": [
- "bin/markdown"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.2.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "cebe\\markdown\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Carsten Brandt",
- "email": "mail@cebe.cc",
- "homepage": "http://cebe.cc/",
- "role": "Creator"
- }
- ],
- "description": "A super fast, highly extensible markdown parser for PHP",
- "homepage": "https://github.com/cebe/markdown#readme",
- "keywords": [
- "extensible",
- "fast",
- "gfm",
- "markdown",
- "markdown-extra"
- ],
- "support": {
- "issues": "https://github.com/cebe/markdown/issues",
- "source": "https://github.com/cebe/markdown"
- },
- "time": "2018-03-26T11:24:36+00:00"
- },
- {
- "name": "composer/pcre",
- "version": "3.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/composer/pcre.git",
- "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
- "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
- "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.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": "2022-11-17T09:50:14+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": "dnoegel/php-xdg-base-dir",
- "version": "v0.1.1",
- "source": {
- "type": "git",
- "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
- "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
- "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.2"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "XdgBaseDir\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "implementation of xdg base directory specification for php",
- "support": {
- "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
- "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
- },
- "time": "2019-12-04T15:06:13+00:00"
- },
- {
- "name": "doctrine/deprecations",
- "version": "v1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/deprecations.git",
- "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
- "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
- "shasum": ""
- },
- "require": {
- "php": "^7.1|^8.0"
- },
- "require-dev": {
- "doctrine/coding-standard": "^9",
- "phpunit/phpunit": "^7.5|^8.5|^9.5",
- "psr/log": "^1|^2|^3"
- },
- "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/v1.0.0"
- },
- "time": "2022-05-02T15:47:09+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": "dragon-code/benchmark",
- "version": "v2.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/TheDragonCode/benchmark.git",
- "reference": "d2da2b68f570fdea570dedfed5207b21e67cef68"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/TheDragonCode/benchmark/zipball/d2da2b68f570fdea570dedfed5207b21e67cef68",
- "reference": "d2da2b68f570fdea570dedfed5207b21e67cef68",
- "shasum": ""
- },
- "require": {
- "dragon-code/support": "^6.10",
- "php": "^8.1",
- "symfony/console": "^5.3 || ^6.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^10.0",
- "symfony/var-dumper": "^5.3 || ^6.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "DragonCode\\Benchmark\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Andrey Helldar",
- "email": "helldar@dragon-code.pro",
- "homepage": "https://github.com/andrey-helldar"
- }
- ],
- "description": "Simple comparison of code execution speed between different options",
- "keywords": [
- "benchmark",
- "comparator",
- "comparators",
- "comparison",
- "comparison-tool",
- "runtime",
- "speed",
- "speedtest",
- "time",
- "timer"
- ],
- "support": {
- "issues": "https://github.com/TheDragonCode/benchmark/issues",
- "source": "https://github.com/TheDragonCode/benchmark"
- },
- "funding": [
- {
- "url": "https://boosty.to/dragon-code",
- "type": "boosty"
- },
- {
- "url": "https://github.com/sponsors/TheDragonCode",
- "type": "github"
- },
- {
- "url": "https://opencollective.com/dragon-code",
- "type": "open_collective"
- },
- {
- "url": "https://yoomoney.ru/to/410012608840929",
- "type": "yoomoney"
- }
- ],
- "time": "2023-03-02T16:14:10+00:00"
- },
- {
- "name": "dragon-code/contracts",
- "version": "v2.19.0",
- "source": {
- "type": "git",
- "url": "https://github.com/TheDragonCode/contracts.git",
- "reference": "b50ceb575da285c68615bf759d2bb3288aaa4b25"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/TheDragonCode/contracts/zipball/b50ceb575da285c68615bf759d2bb3288aaa4b25",
- "reference": "b50ceb575da285c68615bf759d2bb3288aaa4b25",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5 || ^8.0",
- "psr/http-message": "^1.0.1",
- "symfony/http-kernel": "^4.0 || ^5.0 || ^6.0",
- "symfony/polyfill-php80": "^1.23"
- },
- "conflict": {
- "andrey-helldar/contracts": "*"
- },
- "require-dev": {
- "illuminate/database": "^8.0",
- "phpdocumentor/reflection-docblock": "^5.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "DragonCode\\Contracts\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Andrey Helldar",
- "email": "helldar@dragon-code.pro",
- "homepage": "https://github.com/andrey-helldar"
- }
- ],
- "description": "A set of contracts for any project",
- "keywords": [
- "contracts",
- "interfaces"
- ],
- "support": {
- "source": "https://github.com/TheDragonCode/contracts"
- },
- "funding": [
- {
- "url": "https://boosty.to/dragon-code",
- "type": "boosty"
- },
- {
- "url": "https://github.com/sponsors/TheDragonCode",
- "type": "github"
- },
- {
- "url": "https://opencollective.com/dragon-code",
- "type": "open_collective"
- },
- {
- "url": "https://yoomoney.ru/to/410012608840929",
- "type": "yoomoney"
- }
- ],
- "time": "2022-10-10T22:02:52+00:00"
- },
- {
- "name": "dragon-code/support",
- "version": "v6.11.0",
- "source": {
- "type": "git",
- "url": "https://github.com/TheDragonCode/support.git",
- "reference": "09474e53245988b8b77d3a0506979526e8e7f291"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/TheDragonCode/support/zipball/09474e53245988b8b77d3a0506979526e8e7f291",
- "reference": "09474e53245988b8b77d3a0506979526e8e7f291",
- "shasum": ""
- },
- "require": {
- "dragon-code/contracts": "^2.18",
- "ext-bcmath": "*",
- "ext-ctype": "*",
- "ext-dom": "*",
- "ext-json": "*",
- "ext-mbstring": "*",
- "php": "^8.0",
- "psr/http-message": "^1.0.1",
- "symfony/polyfill-php81": "^1.25",
- "voku/portable-ascii": "^1.4.8 || ^2.0.1"
- },
- "conflict": {
- "andrey-helldar/support": "*"
- },
- "require-dev": {
- "illuminate/contracts": "^9.0 || ^10.0",
- "phpunit/phpunit": "^9.6",
- "symfony/var-dumper": "^6.0"
- },
- "suggest": {
- "dragon-code/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
- "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
- },
- "type": "library",
- "extra": {
- "dragon-code": {
- "docs-generator": {
- "preview": {
- "brand": "php",
- "vendor": "The Dragon Code"
- }
- }
- }
- },
- "autoload": {
- "psr-4": {
- "DragonCode\\Support\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Andrey Helldar",
- "email": "helldar@dragon-code.pro",
- "homepage": "https://github.com/andrey-helldar"
- }
- ],
- "description": "Support package is a collection of helpers and tools for any project.",
- "keywords": [
- "dragon",
- "dragon-code",
- "framework",
- "helper",
- "helpers",
- "laravel",
- "php",
- "support",
- "symfony",
- "yii",
- "yii2"
- ],
- "support": {
- "issues": "https://github.com/TheDragonCode/support/issues",
- "source": "https://github.com/TheDragonCode/support"
- },
- "funding": [
- {
- "url": "https://boosty.to/dragon-code",
- "type": "boosty"
- },
- {
- "url": "https://github.com/sponsors/TheDragonCode",
- "type": "github"
- },
- {
- "url": "https://opencollective.com/dragon-code",
- "type": "open_collective"
- },
- {
- "url": "https://yoomoney.ru/to/410012608840929",
- "type": "yoomoney"
- }
- ],
- "time": "2023-02-19T11:30:03+00:00"
- },
- {
- "name": "felixfbecker/advanced-json-rpc",
- "version": "v3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
- "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
- "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
- "shasum": ""
- },
- "require": {
- "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
- "php": "^7.1 || ^8.0",
- "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.0 || ^8.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "AdvancedJsonRpc\\": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "ISC"
- ],
- "authors": [
- {
- "name": "Felix Becker",
- "email": "felix.b@outlook.com"
- }
- ],
- "description": "A more advanced JSONRPC implementation",
- "support": {
- "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
- "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
- },
- "time": "2021-06-11T22:34:44+00:00"
- },
- {
- "name": "felixfbecker/language-server-protocol",
- "version": "v1.5.2",
- "source": {
- "type": "git",
- "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
- "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/6e82196ffd7c62f7794d778ca52b69feec9f2842",
- "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "require-dev": {
- "phpstan/phpstan": "*",
- "squizlabs/php_codesniffer": "^3.1",
- "vimeo/psalm": "^4.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "LanguageServerProtocol\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "ISC"
- ],
- "authors": [
- {
- "name": "Felix Becker",
- "email": "felix.b@outlook.com"
- }
- ],
- "description": "PHP classes for the Language Server Protocol",
- "keywords": [
- "language",
- "microsoft",
- "php",
- "server"
- ],
- "support": {
- "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
- "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.2"
- },
- "time": "2022-03-02T22:36:06+00:00"
- },
- {
- "name": "fidry/cpu-core-counter",
- "version": "0.5.1",
- "source": {
- "type": "git",
- "url": "https://github.com/theofidry/cpu-core-counter.git",
- "reference": "b58e5a3933e541dc286cc91fc4f3898bbc6f1623"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/b58e5a3933e541dc286cc91fc4f3898bbc6f1623",
- "reference": "b58e5a3933e541dc286cc91fc4f3898bbc6f1623",
- "shasum": ""
- },
- "require": {
- "php": "^7.2 || ^8.0"
- },
- "require-dev": {
- "fidry/makefile": "^0.2.0",
- "phpstan/extension-installer": "^1.2.0",
- "phpstan/phpstan": "^1.9.2",
- "phpstan/phpstan-deprecation-rules": "^1.0.0",
- "phpstan/phpstan-phpunit": "^1.2.2",
- "phpstan/phpstan-strict-rules": "^1.4.4",
- "phpunit/phpunit": "^9.5.26 || ^8.5.31",
- "theofidry/php-cs-fixer-config": "^1.0",
- "webmozarts/strict-phpunit": "^7.5"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Fidry\\CpuCoreCounter\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Théo FIDRY",
- "email": "theo.fidry@gmail.com"
- }
- ],
- "description": "Tiny utility to get the number of CPU cores.",
- "keywords": [
- "CPU",
- "core"
- ],
- "support": {
- "issues": "https://github.com/theofidry/cpu-core-counter/issues",
- "source": "https://github.com/theofidry/cpu-core-counter/tree/0.5.1"
- },
- "funding": [
- {
- "url": "https://github.com/theofidry",
- "type": "github"
- }
- ],
- "time": "2022-12-24T12:35:10+00:00"
- },
- {
- "name": "hamcrest/hamcrest-php",
- "version": "v2.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/hamcrest/hamcrest-php.git",
- "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
- "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
- "shasum": ""
- },
- "require": {
- "php": "^5.3|^7.0|^8.0"
- },
- "replace": {
- "cordoval/hamcrest-php": "*",
- "davedevelopment/hamcrest-php": "*",
- "kodova/hamcrest-php": "*"
- },
- "require-dev": {
- "phpunit/php-file-iterator": "^1.4 || ^2.0",
- "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.1-dev"
- }
- },
- "autoload": {
- "classmap": [
- "hamcrest"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "This is the PHP port of Hamcrest Matchers",
- "keywords": [
- "test"
- ],
- "support": {
- "issues": "https://github.com/hamcrest/hamcrest-php/issues",
- "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
- },
- "time": "2020-07-09T08:09:16+00:00"
- },
- {
- "name": "mockery/mockery",
- "version": "1.5.1",
- "source": {
- "type": "git",
- "url": "https://github.com/mockery/mockery.git",
- "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
- "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
- "shasum": ""
- },
- "require": {
- "hamcrest/hamcrest-php": "^2.0.1",
- "lib-pcre": ">=7.0",
- "php": "^7.3 || ^8.0"
- },
- "conflict": {
- "phpunit/phpunit": "<8.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^8.5 || ^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4.x-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Mockery": "library/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Pádraic Brady",
- "email": "padraic.brady@gmail.com",
- "homepage": "http://blog.astrumfutura.com"
- },
- {
- "name": "Dave Marshall",
- "email": "dave.marshall@atstsolutions.co.uk",
- "homepage": "http://davedevelopment.co.uk"
- }
- ],
- "description": "Mockery is a simple yet flexible PHP mock object framework",
- "homepage": "https://github.com/mockery/mockery",
- "keywords": [
- "BDD",
- "TDD",
- "library",
- "mock",
- "mock objects",
- "mockery",
- "stub",
- "test",
- "test double",
- "testing"
- ],
- "support": {
- "issues": "https://github.com/mockery/mockery/issues",
- "source": "https://github.com/mockery/mockery/tree/1.5.1"
- },
- "time": "2022-09-07T15:32:08+00:00"
- },
- {
- "name": "netresearch/jsonmapper",
- "version": "v4.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/cweiske/jsonmapper.git",
- "reference": "cfa81ea1d35294d64adb9c68aa4cb9e92400e53f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/cfa81ea1d35294d64adb9c68aa4cb9e92400e53f",
- "reference": "cfa81ea1d35294d64adb9c68aa4cb9e92400e53f",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "ext-pcre": "*",
- "ext-reflection": "*",
- "ext-spl": "*",
- "php": ">=7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0",
- "squizlabs/php_codesniffer": "~3.5"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "JsonMapper": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "OSL-3.0"
- ],
- "authors": [
- {
- "name": "Christian Weiske",
- "email": "cweiske@cweiske.de",
- "homepage": "http://github.com/cweiske/jsonmapper/",
- "role": "Developer"
- }
- ],
- "description": "Map nested JSON structures onto PHP classes",
- "support": {
- "email": "cweiske@cweiske.de",
- "issues": "https://github.com/cweiske/jsonmapper/issues",
- "source": "https://github.com/cweiske/jsonmapper/tree/v4.1.0"
- },
- "time": "2022-12-08T20:46:14+00:00"
- },
- {
- "name": "phar-io/manifest",
- "version": "2.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/phar-io/manifest.git",
- "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
- "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-phar": "*",
- "ext-xmlwriter": "*",
- "phar-io/version": "^3.0.1",
- "php": "^7.2 || ^8.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Heuer",
- "email": "sebastian@phpeople.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "Developer"
- }
- ],
- "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
- "support": {
- "issues": "https://github.com/phar-io/manifest/issues",
- "source": "https://github.com/phar-io/manifest/tree/2.0.3"
- },
- "time": "2021-07-20T11:28:43+00:00"
- },
- {
- "name": "phar-io/version",
- "version": "3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/phar-io/version.git",
- "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
- "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
- "shasum": ""
- },
- "require": {
- "php": "^7.2 || ^8.0"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Heuer",
- "email": "sebastian@phpeople.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "Developer"
- }
- ],
- "description": "Library for handling version information and constraints",
- "support": {
- "issues": "https://github.com/phar-io/version/issues",
- "source": "https://github.com/phar-io/version/tree/3.2.1"
- },
- "time": "2022-02-21T01:04:05+00:00"
- },
- {
- "name": "phpbench/container",
- "version": "2.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/phpbench/container.git",
- "reference": "6d555ff7174fca13f9b1ec0b4a089ed41d0ab392"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpbench/container/zipball/6d555ff7174fca13f9b1ec0b4a089ed41d0ab392",
- "reference": "6d555ff7174fca13f9b1ec0b4a089ed41d0ab392",
- "shasum": ""
- },
- "require": {
- "psr/container": "^1.0|^2.0",
- "symfony/options-resolver": "^4.2 || ^5.0 || ^6.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^2.16",
- "phpstan/phpstan": "^0.12.52",
- "phpunit/phpunit": "^8"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "PhpBench\\DependencyInjection\\": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Daniel Leech",
- "email": "daniel@dantleech.com"
- }
- ],
- "description": "Simple, configurable, service container.",
- "support": {
- "issues": "https://github.com/phpbench/container/issues",
- "source": "https://github.com/phpbench/container/tree/2.2.1"
- },
- "time": "2022-01-25T10:17:35+00:00"
- },
- {
- "name": "phpbench/dom",
- "version": "0.3.3",
- "source": {
- "type": "git",
- "url": "https://github.com/phpbench/dom.git",
- "reference": "786a96db538d0def931f5b19225233ec42ec7a72"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpbench/dom/zipball/786a96db538d0def931f5b19225233ec42ec7a72",
- "reference": "786a96db538d0def931f5b19225233ec42ec7a72",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "php": "^7.3||^8.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^3.14",
- "phpstan/phpstan": "^1.10",
- "phpunit/phpunit": "^8.0||^9.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "PhpBench\\Dom\\": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Daniel Leech",
- "email": "daniel@dantleech.com"
- }
- ],
- "description": "DOM wrapper to simplify working with the PHP DOM implementation",
- "support": {
- "issues": "https://github.com/phpbench/dom/issues",
- "source": "https://github.com/phpbench/dom/tree/0.3.3"
- },
- "time": "2023-03-06T23:46:57+00:00"
- },
- {
- "name": "phpbench/phpbench",
- "version": "1.2.10",
- "source": {
- "type": "git",
- "url": "https://github.com/phpbench/phpbench.git",
- "reference": "95206f92479674599a75e02b74b9933e2d9883aa"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpbench/phpbench/zipball/95206f92479674599a75e02b74b9933e2d9883aa",
- "reference": "95206f92479674599a75e02b74b9933e2d9883aa",
- "shasum": ""
- },
- "require": {
- "doctrine/annotations": "^1.13 || ^2.0",
- "ext-dom": "*",
- "ext-json": "*",
- "ext-pcre": "*",
- "ext-reflection": "*",
- "ext-spl": "*",
- "ext-tokenizer": "*",
- "php": "^7.4 || ^8.0",
- "phpbench/container": "^2.1",
- "phpbench/dom": "~0.3.3",
- "psr/log": "^1.1 || ^2.0 || ^3.0",
- "seld/jsonlint": "^1.1",
- "symfony/console": "^4.2 || ^5.0 || ^6.0",
- "symfony/filesystem": "^4.2 || ^5.0 || ^6.0",
- "symfony/finder": "^4.2 || ^5.0 || ^6.0",
- "symfony/options-resolver": "^4.2 || ^5.0 || ^6.0",
- "symfony/process": "^4.2 || ^5.0 || ^6.0",
- "webmozart/glob": "^4.6"
- },
- "require-dev": {
- "dantleech/invoke": "^2.0",
- "friendsofphp/php-cs-fixer": "^3.0",
- "jangregor/phpstan-prophecy": "^1.0",
- "phpspec/prophecy": "^1.12",
- "phpstan/extension-installer": "^1.1",
- "phpstan/phpstan": "^1.0",
- "phpstan/phpstan-phpunit": "^1.0",
- "phpunit/phpunit": "^9.0",
- "symfony/error-handler": "^5.2 || ^6.0",
- "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0"
- },
- "suggest": {
- "ext-xdebug": "For Xdebug profiling extension."
- },
- "bin": [
- "bin/phpbench"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.2-dev"
- }
- },
- "autoload": {
- "files": [
- "lib/Report/Func/functions.php"
- ],
- "psr-4": {
- "PhpBench\\": "lib/",
- "PhpBench\\Extensions\\XDebug\\": "extensions/xdebug/lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Daniel Leech",
- "email": "daniel@dantleech.com"
- }
- ],
- "description": "PHP Benchmarking Framework",
- "support": {
- "issues": "https://github.com/phpbench/phpbench/issues",
- "source": "https://github.com/phpbench/phpbench/tree/1.2.10"
- },
- "funding": [
- {
- "url": "https://github.com/dantleech",
- "type": "github"
- }
- ],
- "time": "2023-03-24T08:52:55+00:00"
- },
- {
- "name": "phpdocumentor/reflection-common",
- "version": "2.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
- "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
- "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
- "shasum": ""
- },
- "require": {
- "php": "^7.2 || ^8.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-2.x": "2.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "phpDocumentor\\Reflection\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Jaap van Otterdijk",
- "email": "opensource@ijaap.nl"
- }
- ],
- "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
- "homepage": "http://www.phpdoc.org",
- "keywords": [
- "FQSEN",
- "phpDocumentor",
- "phpdoc",
- "reflection",
- "static analysis"
- ],
- "support": {
- "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
- "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
- },
- "time": "2020-06-27T09:03:43+00:00"
- },
- {
- "name": "phpdocumentor/reflection-docblock",
- "version": "5.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
- "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
- "shasum": ""
- },
- "require": {
- "ext-filter": "*",
- "php": "^7.2 || ^8.0",
- "phpdocumentor/reflection-common": "^2.2",
- "phpdocumentor/type-resolver": "^1.3",
- "webmozart/assert": "^1.9.1"
- },
- "require-dev": {
- "mockery/mockery": "~1.3.2",
- "psalm/phar": "^4.8"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "phpDocumentor\\Reflection\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Mike van Riel",
- "email": "me@mikevanriel.com"
- },
- {
- "name": "Jaap van Otterdijk",
- "email": "account@ijaap.nl"
- }
- ],
- "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
- "support": {
- "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
- },
- "time": "2021-10-19T17:43:47+00:00"
- },
- {
- "name": "phpdocumentor/type-resolver",
- "version": "1.7.0",
- "source": {
- "type": "git",
- "url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "1534aea9bde19a5c85c5d1e1f834ab63f4c5dcf5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/1534aea9bde19a5c85c5d1e1f834ab63f4c5dcf5",
- "reference": "1534aea9bde19a5c85c5d1e1f834ab63f4c5dcf5",
- "shasum": ""
- },
- "require": {
- "doctrine/deprecations": "^1.0",
- "php": "^7.4 || ^8.0",
- "phpdocumentor/reflection-common": "^2.0",
- "phpstan/phpdoc-parser": "^1.13"
- },
- "require-dev": {
- "ext-tokenizer": "*",
- "phpbench/phpbench": "^1.2",
- "phpstan/extension-installer": "^1.1",
- "phpstan/phpstan": "^1.8",
- "phpstan/phpstan-phpunit": "^1.1",
- "phpunit/phpunit": "^9.5",
- "rector/rector": "^0.13.9",
- "vimeo/psalm": "^4.25"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-1.x": "1.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "phpDocumentor\\Reflection\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Mike van Riel",
- "email": "me@mikevanriel.com"
- }
- ],
- "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
- "support": {
- "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.0"
- },
- "time": "2023-03-12T10:13:29+00:00"
- },
- {
- "name": "phpstan/phpdoc-parser",
- "version": "1.16.1",
- "source": {
- "type": "git",
- "url": "https://github.com/phpstan/phpdoc-parser.git",
- "reference": "e27e92d939e2e3636f0a1f0afaba59692c0bf571"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/e27e92d939e2e3636f0a1f0afaba59692c0bf571",
- "reference": "e27e92d939e2e3636f0a1f0afaba59692c0bf571",
- "shasum": ""
- },
- "require": {
- "php": "^7.2 || ^8.0"
- },
- "require-dev": {
- "php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/extension-installer": "^1.0",
- "phpstan/phpstan": "^1.5",
- "phpstan/phpstan-phpunit": "^1.1",
- "phpstan/phpstan-strict-rules": "^1.0",
- "phpunit/phpunit": "^9.5",
- "symfony/process": "^5.2"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "PHPStan\\PhpDocParser\\": [
- "src/"
- ]
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "PHPDoc parser with support for nullable, intersection and generic types",
- "support": {
- "issues": "https://github.com/phpstan/phpdoc-parser/issues",
- "source": "https://github.com/phpstan/phpdoc-parser/tree/1.16.1"
- },
- "time": "2023-02-07T18:11:17+00:00"
- },
- {
- "name": "phpunit/php-code-coverage",
- "version": "9.2.26",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
- "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-libxml": "*",
- "ext-xmlwriter": "*",
- "nikic/php-parser": "^4.15",
- "php": ">=7.3",
- "phpunit/php-file-iterator": "^3.0.3",
- "phpunit/php-text-template": "^2.0.2",
- "sebastian/code-unit-reverse-lookup": "^2.0.2",
- "sebastian/complexity": "^2.0",
- "sebastian/environment": "^5.1.2",
- "sebastian/lines-of-code": "^1.0.3",
- "sebastian/version": "^3.0.1",
- "theseer/tokenizer": "^1.2.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "suggest": {
- "ext-pcov": "PHP extension that provides line coverage",
- "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "9.2-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
- "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
- "keywords": [
- "coverage",
- "testing",
- "xunit"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-03-06T12:58:08+00:00"
- },
- {
- "name": "phpunit/php-file-iterator",
- "version": "3.0.6",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
- "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "FilterIterator implementation that filters files based on a list of suffixes.",
- "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
- "keywords": [
- "filesystem",
- "iterator"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2021-12-02T12:48:52+00:00"
- },
- {
- "name": "phpunit/php-invoker",
- "version": "3.1.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-invoker.git",
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "ext-pcntl": "*",
- "phpunit/phpunit": "^9.3"
- },
- "suggest": {
- "ext-pcntl": "*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Invoke callables with a timeout",
- "homepage": "https://github.com/sebastianbergmann/php-invoker/",
- "keywords": [
- "process"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
- "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-09-28T05:58:55+00:00"
- },
- {
- "name": "phpunit/php-text-template",
- "version": "2.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Simple template engine.",
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
- "keywords": [
- "template"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
- "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T05:33:50+00:00"
- },
- {
- "name": "phpunit/php-timer",
- "version": "5.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
- "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Utility class for timing",
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
- "keywords": [
- "timer"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-timer/issues",
- "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T13:16:10+00:00"
- },
- {
- "name": "phpunit/phpunit",
- "version": "9.6.5",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/86e761949019ae83f49240b2f2123fb5ab3b2fc5",
- "reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5",
- "shasum": ""
- },
- "require": {
- "doctrine/instantiator": "^1.3.1 || ^2",
- "ext-dom": "*",
- "ext-json": "*",
- "ext-libxml": "*",
- "ext-mbstring": "*",
- "ext-xml": "*",
- "ext-xmlwriter": "*",
- "myclabs/deep-copy": "^1.10.1",
- "phar-io/manifest": "^2.0.3",
- "phar-io/version": "^3.0.2",
- "php": ">=7.3",
- "phpunit/php-code-coverage": "^9.2.13",
- "phpunit/php-file-iterator": "^3.0.5",
- "phpunit/php-invoker": "^3.1.1",
- "phpunit/php-text-template": "^2.0.3",
- "phpunit/php-timer": "^5.0.2",
- "sebastian/cli-parser": "^1.0.1",
- "sebastian/code-unit": "^1.0.6",
- "sebastian/comparator": "^4.0.8",
- "sebastian/diff": "^4.0.3",
- "sebastian/environment": "^5.1.3",
- "sebastian/exporter": "^4.0.5",
- "sebastian/global-state": "^5.0.1",
- "sebastian/object-enumerator": "^4.0.3",
- "sebastian/resource-operations": "^3.0.3",
- "sebastian/type": "^3.2",
- "sebastian/version": "^3.0.2"
- },
- "suggest": {
- "ext-soap": "To be able to generate mocks based on WSDL files",
- "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
- },
- "bin": [
- "phpunit"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "9.6-dev"
- }
- },
- "autoload": {
- "files": [
- "src/Framework/Assert/Functions.php"
- ],
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "The PHP Unit Testing framework.",
- "homepage": "https://phpunit.de/",
- "keywords": [
- "phpunit",
- "testing",
- "xunit"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/phpunit/issues",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.5"
- },
- "funding": [
- {
- "url": "https://phpunit.de/sponsors.html",
- "type": "custom"
- },
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
- "type": "tidelift"
- }
- ],
- "time": "2023-03-09T06:34:10+00:00"
- },
- {
- "name": "qossmic/deptrac-shim",
- "version": "1.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/qossmic/deptrac-shim.git",
- "reference": "3179a2c4978654add865309e3c280ef3d60f0043"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/qossmic/deptrac-shim/zipball/3179a2c4978654add865309e3c280ef3d60f0043",
- "reference": "3179a2c4978654add865309e3c280ef3d60f0043",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "ext-tokenizer": "*",
- "ext-zlib": "*",
- "php": "^8.1"
- },
- "replace": {
- "qossmic/deptrac": "self.version"
- },
- "suggest": {
- "ext-dom": "For using the JUnit output formatter"
- },
- "bin": [
- "deptrac"
- ],
- "type": "library",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Tim Glabisch"
- },
- {
- "name": "Simon Mönch",
- "email": "simon.moench@qossmic.com"
- },
- {
- "name": "Denis Brumann",
- "email": "denis.brumann@qossmic.com",
- "role": "maintainer"
- }
- ],
- "description": "deptrac phar distribution",
- "support": {
- "issues": "https://github.com/qossmic/deptrac-shim/issues",
- "source": "https://github.com/qossmic/deptrac-shim/tree/1.0.2"
- },
- "time": "2022-12-02T11:47:53+00:00"
- },
- {
- "name": "sebastian/cli-parser",
- "version": "1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/cli-parser.git",
- "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
- "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library for parsing CLI options",
- "homepage": "https://github.com/sebastianbergmann/cli-parser",
- "support": {
- "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
- "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-09-28T06:08:49+00:00"
- },
- {
- "name": "sebastian/code-unit",
- "version": "1.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/code-unit.git",
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Collection of value objects that represent the PHP code units",
- "homepage": "https://github.com/sebastianbergmann/code-unit",
- "support": {
- "issues": "https://github.com/sebastianbergmann/code-unit/issues",
- "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T13:08:54+00:00"
- },
- {
- "name": "sebastian/code-unit-reverse-lookup",
- "version": "2.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Looks up which function or method a line of code belongs to",
- "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
- "support": {
- "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
- "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-09-28T05:30:19+00:00"
- },
- {
- "name": "sebastian/comparator",
- "version": "4.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
- "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3",
- "sebastian/diff": "^4.0",
- "sebastian/exporter": "^4.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
- },
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@2bepublished.at"
- }
- ],
- "description": "Provides the functionality to compare PHP values for equality",
- "homepage": "https://github.com/sebastianbergmann/comparator",
- "keywords": [
- "comparator",
- "compare",
- "equality"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/comparator/issues",
- "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2022-09-14T12:41:17+00:00"
- },
- {
- "name": "sebastian/complexity",
- "version": "2.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/complexity.git",
- "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
- "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
- "shasum": ""
- },
- "require": {
- "nikic/php-parser": "^4.7",
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library for calculating the complexity of PHP code units",
- "homepage": "https://github.com/sebastianbergmann/complexity",
- "support": {
- "issues": "https://github.com/sebastianbergmann/complexity/issues",
- "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T15:52:27+00:00"
- },
- {
- "name": "sebastian/diff",
- "version": "4.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3",
- "symfony/process": "^4.2 || ^5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.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",
- "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T13:10:38+00:00"
- },
- {
- "name": "sebastian/environment",
- "version": "5.1.5",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
- "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "suggest": {
- "ext-posix": "*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.1-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Provides functionality to handle HHVM/PHP environments",
- "homepage": "http://www.github.com/sebastianbergmann/environment",
- "keywords": [
- "Xdebug",
- "environment",
- "hhvm"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/environment/issues",
- "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-02-03T06:03:51+00:00"
- },
- {
- "name": "sebastian/exporter",
- "version": "4.0.5",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
- "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3",
- "sebastian/recursion-context": "^4.0"
- },
- "require-dev": {
- "ext-mbstring": "*",
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
- },
- {
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
- },
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
- }
- ],
- "description": "Provides the functionality to export PHP variables for visualization",
- "homepage": "https://www.github.com/sebastianbergmann/exporter",
- "keywords": [
- "export",
- "exporter"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/exporter/issues",
- "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2022-09-14T06:03:37+00:00"
- },
- {
- "name": "sebastian/global-state",
- "version": "5.0.5",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
- "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3",
- "sebastian/object-reflector": "^2.0",
- "sebastian/recursion-context": "^4.0"
- },
- "require-dev": {
- "ext-dom": "*",
- "phpunit/phpunit": "^9.3"
- },
- "suggest": {
- "ext-uopz": "*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Snapshotting of global state",
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
- "keywords": [
- "global state"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/global-state/issues",
- "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2022-02-14T08:28:10+00:00"
- },
- {
- "name": "sebastian/lines-of-code",
- "version": "1.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/lines-of-code.git",
- "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
- "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
- "shasum": ""
- },
- "require": {
- "nikic/php-parser": "^4.6",
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library for counting the lines of code in PHP source code",
- "homepage": "https://github.com/sebastianbergmann/lines-of-code",
- "support": {
- "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
- "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-11-28T06:42:11+00:00"
- },
- {
- "name": "sebastian/object-enumerator",
- "version": "4.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/object-enumerator.git",
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3",
- "sebastian/object-reflector": "^2.0",
- "sebastian/recursion-context": "^4.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Traverses array structures and object graphs to enumerate all referenced objects",
- "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
- "support": {
- "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
- "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T13:12:34+00:00"
- },
- {
- "name": "sebastian/object-reflector",
- "version": "2.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/object-reflector.git",
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Allows reflection of object attributes, including inherited and non-public ones",
- "homepage": "https://github.com/sebastianbergmann/object-reflector/",
- "support": {
- "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
- "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T13:14:26+00:00"
- },
- {
- "name": "sebastian/recursion-context",
- "version": "4.0.5",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
- "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
- }
- ],
- "description": "Provides functionality to recursively process PHP variables",
- "homepage": "https://github.com/sebastianbergmann/recursion-context",
- "support": {
- "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-02-03T06:07:39+00:00"
- },
- {
- "name": "sebastian/resource-operations",
- "version": "3.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/resource-operations.git",
- "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
- "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Provides a list of PHP built-in functions that operate on resources",
- "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
- "support": {
- "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
- "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-09-28T06:45:17+00:00"
- },
- {
- "name": "sebastian/type",
- "version": "3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/type.git",
- "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
- "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
+ "require": {
+ "php": ">=8.0.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "3.x-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Psr\\Log\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "Collection of value objects that represent the types of the PHP type system",
- "homepage": "https://github.com/sebastianbergmann/type",
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
+ "keywords": [
+ "log",
+ "psr",
+ "psr-3"
+ ],
"support": {
- "issues": "https://github.com/sebastianbergmann/type/issues",
- "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
+ "source": "https://github.com/php-fig/log/tree/3.0.0"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-02-03T06:13:03+00:00"
+ "time": "2021-07-14T16:46:02+00:00"
},
{
- "name": "sebastian/version",
- "version": "3.0.2",
+ "name": "psr/simple-cache",
+ "version": "3.0.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/version.git",
- "reference": "c6c1022351a901512170118436c764e473f6de8c"
+ "url": "https://github.com/php-fig/simple-cache.git",
+ "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
- "reference": "c6c1022351a901512170118436c764e473f6de8c",
+ "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
+ "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": ">=8.0.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "3.0.x-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Psr\\SimpleCache\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
- "homepage": "https://github.com/sebastianbergmann/version",
+ "description": "Common interfaces for simple caching",
+ "keywords": [
+ "cache",
+ "caching",
+ "psr",
+ "psr-16",
+ "simple-cache"
+ ],
"support": {
- "issues": "https://github.com/sebastianbergmann/version/issues",
- "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
+ "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-09-28T06:39:44+00:00"
+ "time": "2021-10-29T13:26:27+00:00"
},
{
"name": "seld/jsonlint",
- "version": "1.9.0",
+ "version": "1.10.2",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/jsonlint.git",
- "reference": "4211420d25eba80712bff236a98960ef68b866b7"
+ "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7",
- "reference": "4211420d25eba80712bff236a98960ef68b866b7",
+ "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9bb7db07b5d66d90f6ebf542f09fc67d800e5259",
+ "reference": "9bb7db07b5d66d90f6ebf542f09fc67d800e5259",
"shasum": ""
},
"require": {
@@ -8249,7 +1081,7 @@
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
+ "homepage": "https://seld.be"
}
],
"description": "JSON Linter",
@@ -8261,7 +1093,7 @@
],
"support": {
"issues": "https://github.com/Seldaek/jsonlint/issues",
- "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0"
+ "source": "https://github.com/Seldaek/jsonlint/tree/1.10.2"
},
"funding": [
{
@@ -8273,35 +1105,43 @@
"type": "tidelift"
}
],
- "time": "2022-04-01T13:37:23+00:00"
+ "time": "2024-02-07T12:57:50+00:00"
},
{
- "name": "spatie/array-to-xml",
- "version": "3.1.5",
+ "name": "spiral/core",
+ "version": "3.12.0",
"source": {
"type": "git",
- "url": "https://github.com/spatie/array-to-xml.git",
- "reference": "13f76acef5362d15c71ae1ac6350cc3df5e25e43"
+ "url": "https://github.com/spiral/core.git",
+ "reference": "ff67345f70c0d133978fcbc25275d4db2f7f9d29"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/13f76acef5362d15c71ae1ac6350cc3df5e25e43",
- "reference": "13f76acef5362d15c71ae1ac6350cc3df5e25e43",
+ "url": "https://api.github.com/repos/spiral/core/zipball/ff67345f70c0d133978fcbc25275d4db2f7f9d29",
+ "reference": "ff67345f70c0d133978fcbc25275d4db2f7f9d29",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "php": "^8.0"
+ "php": ">=8.1",
+ "psr/container": "^1.1|^2.0"
+ },
+ "provide": {
+ "psr/container-implementation": "^1.1|^2.0"
},
"require-dev": {
- "mockery/mockery": "^1.2",
- "pestphp/pest": "^1.21",
- "spatie/pest-plugin-snapshots": "^1.1"
+ "mockery/mockery": "^1.5",
+ "phpunit/phpunit": "^10.1",
+ "vimeo/psalm": "^5.9"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.12.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
- "Spatie\\ArrayToXml\\": "src"
+ "Spiral\\Core\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -8310,73 +1150,69 @@
],
"authors": [
{
- "name": "Freek Van der Herten",
- "email": "freek@spatie.be",
- "homepage": "https://freek.dev",
- "role": "Developer"
- }
- ],
- "description": "Convert an array to xml",
- "homepage": "https://github.com/spatie/array-to-xml",
- "keywords": [
- "array",
- "convert",
- "xml"
- ],
- "support": {
- "source": "https://github.com/spatie/array-to-xml/tree/3.1.5"
- },
- "funding": [
+ "name": "Anton Titov (wolfy-j)",
+ "email": "wolfy-j@spiralscout.com"
+ },
{
- "url": "https://spatie.be/open-source/support-us",
- "type": "custom"
+ "name": "Pavel Butchnev (butschster)",
+ "email": "pavel.buchnev@spiralscout.com"
},
{
- "url": "https://github.com/spatie",
- "type": "github"
+ "name": "Aleksei Gagarin (roxblnfk)",
+ "email": "alexey.gagarin@spiralscout.com"
+ },
+ {
+ "name": "Maksim Smakouz (msmakouz)",
+ "email": "maksim.smakouz@spiralscout.com"
}
],
- "time": "2022-12-24T13:43:51+00:00"
+ "description": "IoC container, IoC scopes, factory, memory, configuration interfaces",
+ "homepage": "https://spiral.dev",
+ "support": {
+ "issues": "https://github.com/spiral/framework/issues",
+ "source": "https://github.com/spiral/core"
+ },
+ "time": "2024-02-29T13:09:34+00:00"
},
{
- "name": "spiral-packages/yii-error-handler-bridge",
- "version": "1.0.2",
+ "name": "symfony/config",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/spiral-packages/yii-error-handler-bridge.git",
- "reference": "afd3bcdfde7b236ca67569566b18580c1fbc6e08"
+ "url": "https://github.com/symfony/config.git",
+ "reference": "f66f908a975500aa4594258bf454dc66e3939eac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spiral-packages/yii-error-handler-bridge/zipball/afd3bcdfde7b236ca67569566b18580c1fbc6e08",
- "reference": "afd3bcdfde7b236ca67569566b18580c1fbc6e08",
+ "url": "https://api.github.com/repos/symfony/config/zipball/f66f908a975500aa4594258bf454dc66e3939eac",
+ "reference": "f66f908a975500aa4594258bf454dc66e3939eac",
"shasum": ""
},
"require": {
- "php": "^8.1",
- "spiral/boot": "^3.0",
- "spiral/exceptions": "^3.0",
- "yiisoft/error-handler": "^2.1"
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/filesystem": "^6.4|^7.0",
+ "symfony/polyfill-ctype": "~1.8"
+ },
+ "conflict": {
+ "symfony/finder": "<6.4",
+ "symfony/service-contracts": "<2.5"
},
"require-dev": {
- "mockery/mockery": "^1.5",
- "phpunit/phpunit": "^9.5.28",
- "spiral/http": "^3.0",
- "spiral/testing": "^2.0",
- "vimeo/psalm": "^4.9"
+ "symfony/event-dispatcher": "^6.4|^7.0",
+ "symfony/finder": "^6.4|^7.0",
+ "symfony/messenger": "^6.4|^7.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/yaml": "^6.4|^7.0"
},
"type": "library",
- "extra": {
- "spiral": {
- "bootloaders": [
- "Spiral\\YiiErrorHandler\\Bootloader\\YiiErrorHandlerBootloader"
- ]
- }
- },
"autoload": {
"psr-4": {
- "Spiral\\YiiErrorHandler\\": "src"
- }
+ "Symfony\\Component\\Config\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -8384,75 +1220,86 @@
],
"authors": [
{
- "name": "kastahov",
- "email": "kastahov1021@gmail.com",
- "role": "Developer"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Yii Error Handler integration package for Spiral Framework",
- "homepage": "https://github.com/spiral-packages/yii-error-handler-bridge",
- "keywords": [
- "error-handling",
- "spiral",
- "spiral-framework"
- ],
+ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
+ "homepage": "https://symfony.com",
"support": {
- "issues": "https://github.com/spiral-packages/yii-error-handler-bridge/issues",
- "source": "https://github.com/spiral-packages/yii-error-handler-bridge/tree/1.0.2"
+ "source": "https://github.com/symfony/config/tree/v7.0.7"
},
- "time": "2023-03-02T12:31:04+00:00"
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "spiral/testing",
- "version": "2.2.0",
+ "name": "symfony/console",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/spiral/testing.git",
- "reference": "e923e94647fb2836370741727366a226f0d9bbfc"
+ "url": "https://github.com/symfony/console.git",
+ "reference": "c981e0e9380ce9f146416bde3150c79197ce9986"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spiral/testing/zipball/e923e94647fb2836370741727366a226f0d9bbfc",
- "reference": "e923e94647fb2836370741727366a226f0d9bbfc",
+ "url": "https://api.github.com/repos/symfony/console/zipball/c981e0e9380ce9f146416bde3150c79197ce9986",
+ "reference": "c981e0e9380ce9f146416bde3150c79197ce9986",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "mockery/mockery": "^1.5",
- "nyholm/psr7": "^1.5",
- "php": ">=8.1",
- "phpunit/phpunit": "^9.5",
- "spiral/auth": "^3.0",
- "spiral/auth-http": "^3.0",
- "spiral/boot": "^3.0",
- "spiral/console": "^3.0",
- "spiral/events": "^3.0",
- "spiral/http": "^3.0",
- "spiral/mailer": "^3.0",
- "spiral/queue": "^3.0",
- "spiral/security": "^3.0",
- "spiral/session": "^3.0",
- "spiral/storage": "^3.0",
- "spiral/tokenizer": "^3.0",
- "spiral/translator": "^3.0",
- "spiral/views": "^3.0",
- "symfony/mime": "^6.0"
+ "php": ">=8.2",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/string": "^6.4|^7.0"
},
- "require-dev": {
- "spiral-packages/league-event": "^1.0",
- "spiral/nyholm-bridge": "^1.2",
- "spiral/roadrunner-bridge": "^2.0",
- "vimeo/psalm": "^4.9"
+ "conflict": {
+ "symfony/dependency-injection": "<6.4",
+ "symfony/dotenv": "<6.4",
+ "symfony/event-dispatcher": "<6.4",
+ "symfony/lock": "<6.4",
+ "symfony/process": "<6.4"
},
- "suggest": {
- "brianium/paratest": "Required to run tests in parallel (^6.0).",
- "ext-gd": "Required to use generate fake image files"
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/event-dispatcher": "^6.4|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/lock": "^6.4|^7.0",
+ "symfony/messenger": "^6.4|^7.0",
+ "symfony/process": "^6.4|^7.0",
+ "symfony/stopwatch": "^6.4|^7.0",
+ "symfony/var-dumper": "^6.4|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Spiral\\Testing\\": "src"
- }
+ "Symfony\\Component\\Console\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -8460,60 +1307,81 @@
],
"authors": [
{
- "name": "butschster",
- "email": "butschster@gmail.com",
- "role": "Developer"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
- "name": "roxblnfk",
- "email": "roxblnfk@gmail.com",
- "role": "Developer"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Spiral Framework testing SDK",
- "homepage": "https://github.com/spiral/testing",
+ "description": "Eases the creation of beautiful and testable command line interfaces",
+ "homepage": "https://symfony.com",
"keywords": [
- "spiral",
- "spiral-packages",
- "testing"
+ "cli",
+ "command-line",
+ "console",
+ "terminal"
],
"support": {
- "issues": "https://github.com/spiral/testing/issues",
- "source": "https://github.com/spiral/testing/tree/2.2.0"
+ "source": "https://github.com/symfony/console/tree/v7.0.7"
},
- "time": "2022-10-26T07:41:37+00:00"
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "symfony/error-handler",
- "version": "v6.2.7",
+ "name": "symfony/dependency-injection",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/error-handler.git",
- "reference": "61e90f94eb014054000bc902257d2763fac09166"
+ "url": "https://github.com/symfony/dependency-injection.git",
+ "reference": "4db1314337f4dd864113f88e08c9a7f98b1c1324"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/61e90f94eb014054000bc902257d2763fac09166",
- "reference": "61e90f94eb014054000bc902257d2763fac09166",
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4db1314337f4dd864113f88e08c9a7f98b1c1324",
+ "reference": "4db1314337f4dd864113f88e08c9a7f98b1c1324",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "psr/log": "^1|^2|^3",
- "symfony/var-dumper": "^5.4|^6.0"
+ "php": ">=8.2",
+ "psr/container": "^1.1|^2.0",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/service-contracts": "^3.3",
+ "symfony/var-exporter": "^6.4|^7.0"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2",
+ "symfony/config": "<6.4",
+ "symfony/finder": "<6.4",
+ "symfony/yaml": "<6.4"
+ },
+ "provide": {
+ "psr/container-implementation": "1.1|2.0",
+ "symfony/service-implementation": "1.1|2.0|3.0"
},
"require-dev": {
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/http-kernel": "^5.4|^6.0",
- "symfony/serializer": "^5.4|^6.0"
+ "symfony/config": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/yaml": "^6.4|^7.0"
},
- "bin": [
- "Resources/bin/patch-type-declarations"
- ],
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\ErrorHandler\\": ""
+ "Symfony\\Component\\DependencyInjection\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -8533,10 +1401,77 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides tools to manage errors and ease debugging PHP code",
+ "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/v7.0.7"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-04-18T09:29:19+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v3.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
+ "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.5-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/error-handler/tree/v6.2.7"
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
},
"funding": [
{
@@ -8552,26 +1487,27 @@
"type": "tidelift"
}
],
- "time": "2023-02-14T08:44:56+00:00"
+ "time": "2024-04-18T09:32:20+00:00"
},
{
"name": "symfony/filesystem",
- "version": "v6.2.7",
+ "version": "v7.0.7",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
- "reference": "82b6c62b959f642d000456f08c6d219d749215b3"
+ "reference": "cc168be6fbdcdf3401f50ae863ee3818ed4338f5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/82b6c62b959f642d000456f08c6d219d749215b3",
- "reference": "82b6c62b959f642d000456f08c6d219d749215b3",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/cc168be6fbdcdf3401f50ae863ee3818ed4338f5",
+ "reference": "cc168be6fbdcdf3401f50ae863ee3818ed4338f5",
"shasum": ""
},
"require": {
- "php": ">=8.1",
+ "php": ">=8.2",
"symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.8"
+ "symfony/polyfill-mbstring": "~1.8",
+ "symfony/process": "^6.4|^7.0"
},
"type": "library",
"autoload": {
@@ -8599,7 +1535,7 @@
"description": "Provides basic utilities for the filesystem",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/filesystem/tree/v6.2.7"
+ "source": "https://github.com/symfony/filesystem/tree/v7.0.7"
},
"funding": [
{
@@ -8615,46 +1551,32 @@
"type": "tidelift"
}
],
- "time": "2023-02-14T08:44:56+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "symfony/http-foundation",
- "version": "v6.2.7",
+ "name": "symfony/finder",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-foundation.git",
- "reference": "5fc3038d4a594223f9ea42e4e985548f3fcc9a3b"
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "4d58f0f4fe95a30d7b538d71197135483560b97c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5fc3038d4a594223f9ea42e4e985548f3fcc9a3b",
- "reference": "5fc3038d4a594223f9ea42e4e985548f3fcc9a3b",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/4d58f0f4fe95a30d7b538d71197135483560b97c",
+ "reference": "4d58f0f4fe95a30d7b538d71197135483560b97c",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/polyfill-mbstring": "~1.1"
- },
- "conflict": {
- "symfony/cache": "<6.2"
+ "php": ">=8.2"
},
"require-dev": {
- "predis/predis": "~1.0",
- "symfony/cache": "^5.4|^6.0",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/expression-language": "^5.4|^6.0",
- "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
- "symfony/mime": "^5.4|^6.0",
- "symfony/rate-limiter": "^5.2|^6.0"
- },
- "suggest": {
- "symfony/mime": "To use the file extension guesser"
+ "symfony/filesystem": "^6.4|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\HttpFoundation\\": ""
+ "Symfony\\Component\\Finder\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -8674,10 +1596,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Defines an object-oriented layer for the HTTP specification",
+ "description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v6.2.7"
+ "source": "https://github.com/symfony/finder/tree/v7.0.7"
},
"funding": [
{
@@ -8693,79 +1615,30 @@
"type": "tidelift"
}
],
- "time": "2023-02-21T10:54:55+00:00"
+ "time": "2024-04-28T11:44:19+00:00"
},
{
- "name": "symfony/http-kernel",
- "version": "v6.2.7",
+ "name": "symfony/options-resolver",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-kernel.git",
- "reference": "ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd"
+ "url": "https://github.com/symfony/options-resolver.git",
+ "reference": "23cc173858776ad451e31f053b1c9f47840b2cfa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd",
- "reference": "ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd",
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/23cc173858776ad451e31f053b1c9f47840b2cfa",
+ "reference": "23cc173858776ad451e31f053b1c9f47840b2cfa",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "psr/log": "^1|^2|^3",
- "symfony/deprecation-contracts": "^2.1|^3",
- "symfony/error-handler": "^6.1",
- "symfony/event-dispatcher": "^5.4|^6.0",
- "symfony/http-foundation": "^5.4.21|^6.2.7",
- "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.2",
- "symfony/doctrine-bridge": "<5.4",
- "symfony/form": "<5.4",
- "symfony/http-client": "<5.4",
- "symfony/mailer": "<5.4",
- "symfony/messenger": "<5.4",
- "symfony/translation": "<5.4",
- "symfony/twig-bridge": "<5.4",
- "symfony/validator": "<5.4",
- "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",
- "symfony/config": "^6.1",
- "symfony/console": "^5.4|^6.0",
- "symfony/css-selector": "^5.4|^6.0",
- "symfony/dependency-injection": "^6.2",
- "symfony/dom-crawler": "^5.4|^6.0",
- "symfony/expression-language": "^5.4|^6.0",
- "symfony/finder": "^5.4|^6.0",
- "symfony/http-client-contracts": "^1.1|^2|^3",
- "symfony/process": "^5.4|^6.0",
- "symfony/routing": "^5.4|^6.0",
- "symfony/stopwatch": "^5.4|^6.0",
- "symfony/translation": "^5.4|^6.0",
- "symfony/translation-contracts": "^1.1|^2|^3",
- "symfony/uid": "^5.4|^6.0",
- "twig/twig": "^2.13|^3.0.4"
- },
- "suggest": {
- "symfony/browser-kit": "",
- "symfony/config": "",
- "symfony/console": "",
- "symfony/dependency-injection": ""
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\HttpKernel\\": ""
+ "Symfony\\Component\\OptionsResolver\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -8785,10 +1658,15 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides a structured process for converting a Request into a Response",
+ "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/http-kernel/tree/v6.2.7"
+ "source": "https://github.com/symfony/options-resolver/tree/v7.0.7"
},
"funding": [
{
@@ -8804,34 +1682,45 @@
"type": "tidelift"
}
],
- "time": "2023-02-28T13:26:41+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "symfony/options-resolver",
- "version": "v6.2.7",
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/options-resolver.git",
- "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629"
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/options-resolver/zipball/aa0e85b53bbb2b4951960efd61d295907eacd629",
- "reference": "aa0e85b53bbb2b4951960efd61d295907eacd629",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
+ "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.1|^3"
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-ctype": "*"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
},
"type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\OptionsResolver\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Polyfill\\Ctype\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -8839,23 +1728,24 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides an improved replacement for the array_replace PHP function",
+ "description": "Symfony polyfill for ctype functions",
"homepage": "https://symfony.com",
"keywords": [
- "config",
- "configuration",
- "options"
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
],
"support": {
- "source": "https://github.com/symfony/options-resolver/tree/v6.2.7"
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
},
"funding": [
{
@@ -8871,30 +1761,30 @@
"type": "tidelift"
}
],
- "time": "2023-02-14T08:44:56+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "symfony/polyfill-php81",
- "version": "v1.27.0",
+ "name": "symfony/polyfill-intl-grapheme",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php81.git",
- "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+ "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
- "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
+ "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
"type": "library",
"extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
@@ -8905,11 +1795,8 @@
"bootstrap.php"
],
"psr-4": {
- "Symfony\\Polyfill\\Php81\\": ""
- },
- "classmap": [
- "Resources/stubs"
- ]
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -8925,16 +1812,18 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
+ "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-php81/tree/v1.27.0"
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
},
"funding": [
{
@@ -8950,32 +1839,44 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "symfony/process",
- "version": "v6.2.7",
+ "name": "symfony/polyfill-intl-normalizer",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "680e8a2ea6b3f87aecc07a6a65a203ae573d1902"
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/680e8a2ea6b3f87aecc07a6a65a203ae573d1902",
- "reference": "680e8a2ea6b3f87aecc07a6a65a203ae573d1902",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
+ "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
},
"type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Process\\": ""
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -8984,18 +1885,26 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Executes commands in sub-processes",
+ "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/process/tree/v6.2.7"
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
},
"funding": [
{
@@ -9011,56 +1920,45 @@
"type": "tidelift"
}
],
- "time": "2023-02-24T10:42:00+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "symfony/var-dumper",
- "version": "v6.2.7",
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/var-dumper.git",
- "reference": "cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e"
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e",
- "reference": "cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
+ "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "phpunit/phpunit": "<5.4.3",
- "symfony/console": "<5.4"
+ "php": ">=7.1"
},
- "require-dev": {
- "ext-iconv": "*",
- "symfony/console": "^5.4|^6.0",
- "symfony/process": "^5.4|^6.0",
- "symfony/uid": "^5.4|^6.0",
- "twig/twig": "^2.13|^3.0.4"
+ "provide": {
+ "ext-mbstring": "*"
},
"suggest": {
- "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
- "ext-intl": "To show region name in time zone dump",
- "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
+ "ext-mbstring": "For best performance"
},
- "bin": [
- "Resources/bin/var-dump-server"
- ],
"type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
"files": [
- "Resources/functions/dump.php"
+ "bootstrap.php"
],
"psr-4": {
- "Symfony\\Component\\VarDumper\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -9076,14 +1974,17 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides mechanisms for walking through any arbitrary PHP variable",
+ "description": "Symfony polyfill for the Mbstring extension",
"homepage": "https://symfony.com",
"keywords": [
- "debug",
- "dump"
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v6.2.7"
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
},
"funding": [
{
@@ -9099,142 +2000,108 @@
"type": "tidelift"
}
],
- "time": "2023-02-24T10:42:00+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "theseer/tokenizer",
- "version": "1.2.1",
+ "name": "symfony/process",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/theseer/tokenizer.git",
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
+ "url": "https://github.com/symfony/process.git",
+ "reference": "3839e56b94dd1dbd13235d27504e66baf23faba0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
+ "url": "https://api.github.com/repos/symfony/process/zipball/3839e56b94dd1dbd13235d27504e66baf23faba0",
+ "reference": "3839e56b94dd1dbd13235d27504e66baf23faba0",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "ext-tokenizer": "*",
- "ext-xmlwriter": "*",
- "php": "^7.2 || ^8.0"
+ "php": ">=8.2"
},
"type": "library",
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\Process\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
+ "description": "Executes commands in sub-processes",
+ "homepage": "https://symfony.com",
"support": {
- "issues": "https://github.com/theseer/tokenizer/issues",
- "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
+ "source": "https://github.com/symfony/process/tree/v7.0.7"
},
"funding": [
{
- "url": "https://github.com/theseer",
+ "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": "2021-07-28T10:34:58+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "vimeo/psalm",
- "version": "dev-master",
+ "name": "symfony/service-contracts",
+ "version": "v3.5.0",
"source": {
"type": "git",
- "url": "https://github.com/vimeo/psalm.git",
- "reference": "ef9a06c4676599a35a44ef0e9731db12780c366e"
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vimeo/psalm/zipball/ef9a06c4676599a35a44ef0e9731db12780c366e",
- "reference": "ef9a06c4676599a35a44ef0e9731db12780c366e",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
+ "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
"shasum": ""
},
"require": {
- "amphp/amp": "^2.4.2",
- "amphp/byte-stream": "^1.5",
- "composer-runtime-api": "^2",
- "composer/semver": "^1.4 || ^2.0 || ^3.0",
- "composer/xdebug-handler": "^2.0 || ^3.0",
- "dnoegel/php-xdg-base-dir": "^0.1.1",
- "ext-ctype": "*",
- "ext-dom": "*",
- "ext-json": "*",
- "ext-libxml": "*",
- "ext-mbstring": "*",
- "ext-simplexml": "*",
- "ext-tokenizer": "*",
- "felixfbecker/advanced-json-rpc": "^3.1",
- "felixfbecker/language-server-protocol": "^1.5.2",
- "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1",
- "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
- "nikic/php-parser": "^4.14",
- "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0",
- "sebastian/diff": "^4.0 || ^5.0",
- "spatie/array-to-xml": "^2.17.0 || ^3.0",
- "symfony/console": "^4.1.6 || ^5.0 || ^6.0",
- "symfony/filesystem": "^5.4 || ^6.0"
- },
- "provide": {
- "psalm/psalm": "self.version"
- },
- "require-dev": {
- "amphp/phpunit-util": "^2.0",
- "bamarni/composer-bin-plugin": "^1.4",
- "brianium/paratest": "^6.9",
- "ext-curl": "*",
- "mockery/mockery": "^1.5",
- "nunomaduro/mock-final-classes": "^1.1",
- "php-parallel-lint/php-parallel-lint": "^1.2",
- "phpstan/phpdoc-parser": "^1.6",
- "phpunit/phpunit": "^9.6",
- "psalm/plugin-mockery": "^1.1",
- "psalm/plugin-phpunit": "^0.18",
- "slevomat/coding-standard": "^8.4",
- "squizlabs/php_codesniffer": "^3.6",
- "symfony/process": "^4.4 || ^5.0 || ^6.0"
+ "php": ">=8.1",
+ "psr/container": "^1.1|^2.0",
+ "symfony/deprecation-contracts": "^2.5|^3"
},
- "suggest": {
- "ext-curl": "In order to send data to shepherd",
- "ext-igbinary": "^2.0.5 is required, used to serialize caching data"
+ "conflict": {
+ "ext-psr": "<1.1|>=2"
},
- "default-branch": true,
- "bin": [
- "psalm",
- "psalm-language-server",
- "psalm-plugin",
- "psalm-refactor",
- "psalter"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "5.x-dev",
- "dev-4.x": "4.x-dev",
- "dev-3.x": "3.x-dev",
- "dev-2.x": "2.x-dev",
- "dev-1.x": "1.x-dev"
+ "dev-main": "3.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
"psr-4": {
- "Psalm\\": "src/Psalm/"
- }
+ "Symfony\\Contracts\\Service\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -9242,50 +2109,85 @@
],
"authors": [
{
- "name": "Matthew Brown"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "A static analysis tool for finding errors in PHP applications",
+ "description": "Generic abstractions related to writing services",
+ "homepage": "https://symfony.com",
"keywords": [
- "code",
- "inspection",
- "php",
- "static analysis"
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
],
"support": {
- "issues": "https://github.com/vimeo/psalm/issues",
- "source": "https://github.com/vimeo/psalm/tree/master"
+ "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
},
- "time": "2023-03-24T06:13:19+00:00"
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-04-18T09:32:20+00:00"
},
{
- "name": "voku/portable-ascii",
- "version": "2.0.1",
+ "name": "symfony/string",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/voku/portable-ascii.git",
- "reference": "b56450eed252f6801410d810c8e1727224ae0743"
+ "url": "https://github.com/symfony/string.git",
+ "reference": "e405b5424dc2528e02e31ba26b83a79fd4eb8f63"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
- "reference": "b56450eed252f6801410d810c8e1727224ae0743",
+ "url": "https://api.github.com/repos/symfony/string/zipball/e405b5424dc2528e02e31ba26b83a79fd4eb8f63",
+ "reference": "e405b5424dc2528e02e31ba26b83a79fd4eb8f63",
"shasum": ""
},
"require": {
- "php": ">=7.0.0"
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-intl-grapheme": "~1.0",
+ "symfony/polyfill-intl-normalizer": "~1.0",
+ "symfony/polyfill-mbstring": "~1.0"
},
- "require-dev": {
- "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
+ "conflict": {
+ "symfony/translation-contracts": "<2.5"
},
- "suggest": {
- "ext-intl": "Use Intl for transliterator_transliterate() support"
+ "require-dev": {
+ "symfony/error-handler": "^6.4|^7.0",
+ "symfony/http-client": "^6.4|^7.0",
+ "symfony/intl": "^6.4|^7.0",
+ "symfony/translation-contracts": "^2.5|^3.0",
+ "symfony/var-exporter": "^6.4|^7.0"
},
"type": "library",
"autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
"psr-4": {
- "voku\\": "src/voku/"
- }
+ "Symfony\\Component\\String\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -9293,80 +2195,73 @@
],
"authors": [
{
- "name": "Lars Moelleken",
- "homepage": "http://www.moelleken.org/"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
- "homepage": "https://github.com/voku/portable-ascii",
+ "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": [
- "ascii",
- "clean",
- "php"
+ "grapheme",
+ "i18n",
+ "string",
+ "unicode",
+ "utf-8",
+ "utf8"
],
"support": {
- "issues": "https://github.com/voku/portable-ascii/issues",
- "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
+ "source": "https://github.com/symfony/string/tree/v7.0.7"
},
"funding": [
{
- "url": "https://www.paypal.me/moelleken",
+ "url": "https://symfony.com/sponsor",
"type": "custom"
},
{
- "url": "https://github.com/voku",
+ "url": "https://github.com/fabpot",
"type": "github"
},
{
- "url": "https://opencollective.com/portable-ascii",
- "type": "open_collective"
- },
- {
- "url": "https://www.patreon.com/voku",
- "type": "patreon"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2022-03-08T17:03:00+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
},
{
- "name": "webmozart/assert",
- "version": "1.11.0",
+ "name": "symfony/var-exporter",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/webmozarts/assert.git",
- "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
+ "url": "https://github.com/symfony/var-exporter.git",
+ "reference": "cdecc0022e40e90340ba1a59a3d5ccf069777078"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
- "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
+ "url": "https://api.github.com/repos/symfony/var-exporter/zipball/cdecc0022e40e90340ba1a59a3d5ccf069777078",
+ "reference": "cdecc0022e40e90340ba1a59a3d5ccf069777078",
"shasum": ""
},
"require": {
- "ext-ctype": "*",
- "php": "^7.2 || ^8.0"
- },
- "conflict": {
- "phpstan/phpstan": "<0.12.20",
- "vimeo/psalm": "<4.6.1 || 4.6.2"
+ "php": ">=8.2"
},
"require-dev": {
- "phpunit/phpunit": "^8.5.13"
+ "symfony/property-access": "^6.4|^7.0",
+ "symfony/serializer": "^6.4|^7.0",
+ "symfony/var-dumper": "^6.4|^7.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.10-dev"
- }
- },
"autoload": {
"psr-4": {
- "Webmozart\\Assert\\": "src/"
- }
+ "Symfony\\Component\\VarExporter\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -9374,34 +2269,57 @@
],
"authors": [
{
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Assertions to validate method input/output with nice error messages.",
+ "description": "Allows exporting any serializable PHP data structure to plain PHP code",
+ "homepage": "https://symfony.com",
"keywords": [
- "assert",
- "check",
- "validate"
+ "clone",
+ "construct",
+ "export",
+ "hydrate",
+ "instantiate",
+ "lazy-loading",
+ "proxy",
+ "serialize"
],
"support": {
- "issues": "https://github.com/webmozarts/assert/issues",
- "source": "https://github.com/webmozarts/assert/tree/1.11.0"
+ "source": "https://github.com/symfony/var-exporter/tree/v7.0.7"
},
- "time": "2022-06-03T18:03:27+00:00"
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-04-18T09:29:19+00:00"
},
{
"name": "webmozart/glob",
- "version": "4.6.0",
+ "version": "4.7.0",
"source": {
"type": "git",
"url": "https://github.com/webmozarts/glob.git",
- "reference": "3c17f7dec3d9d0e87b575026011f2e75a56ed655"
+ "reference": "8a2842112d6916e61e0e15e316465b611f3abc17"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozarts/glob/zipball/3c17f7dec3d9d0e87b575026011f2e75a56ed655",
- "reference": "3c17f7dec3d9d0e87b575026011f2e75a56ed655",
+ "url": "https://api.github.com/repos/webmozarts/glob/zipball/8a2842112d6916e61e0e15e316465b611f3abc17",
+ "reference": "8a2842112d6916e61e0e15e316465b611f3abc17",
"shasum": ""
},
"require": {
@@ -9435,204 +2353,138 @@
"description": "A PHP implementation of Ant's glob.",
"support": {
"issues": "https://github.com/webmozarts/glob/issues",
- "source": "https://github.com/webmozarts/glob/tree/4.6.0"
+ "source": "https://github.com/webmozarts/glob/tree/4.7.0"
},
- "time": "2022-05-24T19:45:58+00:00"
+ "time": "2024-03-07T20:33:40+00:00"
},
{
- "name": "yiisoft/error-handler",
- "version": "2.1.1",
+ "name": "yiisoft/definitions",
+ "version": "3.3.0",
"source": {
"type": "git",
- "url": "https://github.com/yiisoft/error-handler.git",
- "reference": "6df1df9ba97f1db602221e206911c4daf35f05bb"
+ "url": "https://github.com/yiisoft/definitions.git",
+ "reference": "5cb53d07afab3336705a52ddc90c37237cc4b316"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/yiisoft/error-handler/zipball/6df1df9ba97f1db602221e206911c4daf35f05bb",
- "reference": "6df1df9ba97f1db602221e206911c4daf35f05bb",
+ "url": "https://api.github.com/repos/yiisoft/definitions/zipball/5cb53d07afab3336705a52ddc90c37237cc4b316",
+ "reference": "5cb53d07afab3336705a52ddc90c37237cc4b316",
"shasum": ""
},
"require": {
- "alexkart/curl-builder": "^1.0",
- "cebe/markdown": "^1.2",
- "ext-dom": "*",
- "ext-json": "*",
- "php": "^7.4|^8.0",
- "psr/container": "^1.0|^2.0",
- "psr/http-message": "^1.0",
- "psr/http-server-middleware": "^1.0",
- "psr/log": "^1.1|^2.0|^3.0",
- "yiisoft/friendly-exception": "^1.0",
- "yiisoft/http": "^1.2",
- "yiisoft/injector": "^1.0"
+ "php": "^8.0",
+ "psr/container": "^1.0|^2.0"
},
"require-dev": {
- "httpsoft/http-message": "^1.0.9",
+ "maglnet/composer-require-checker": "^4.2",
"phpunit/phpunit": "^9.5",
- "psr/http-server-handler": "^1.0",
- "roave/infection-static-analysis-plugin": "^1.16",
+ "rector/rector": "^1.0.0",
+ "roave/infection-static-analysis-plugin": "^1.18",
"spatie/phpunit-watcher": "^1.23",
- "vimeo/psalm": "^4.18",
- "yiisoft/test-support": "^1.3"
+ "vimeo/psalm": "^4.30|^5.21",
+ "yiisoft/test-support": "^1.4"
},
"type": "library",
- "extra": {
- "config-plugin-options": {
- "source-directory": "config"
- },
- "config-plugin": {
- "web": "web.php"
- }
- },
"autoload": {
"psr-4": {
- "Yiisoft\\ErrorHandler\\": "src"
+ "Yiisoft\\Definitions\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
- "description": "Yii Error Handling Library",
+ "description": "The package provides definition syntax",
"homepage": "https://www.yiiframework.com/",
"keywords": [
- "PSR-11",
- "error-handler",
- "psr-15",
- "psr-3",
- "psr-7",
- "yiisoft"
+ "definitions"
],
"support": {
"chat": "https://t.me/yii3en",
"forum": "https://www.yiiframework.com/forum/",
"irc": "irc://irc.freenode.net/yii",
- "issues": "https://github.com/yiisoft/error-handler/issues?state=open",
- "source": "https://github.com/yiisoft/error-handler",
+ "issues": "https://github.com/yiisoft/definitions/issues?state=open",
+ "source": "https://github.com/yiisoft/definitions",
"wiki": "https://www.yiiframework.com/wiki/"
},
"funding": [
{
- "url": "https://github.com/yiisoft",
+ "url": "https://github.com/sponsors/yiisoft",
"type": "github"
},
{
"url": "https://opencollective.com/yiisoft",
- "type": "open_collective"
+ "type": "opencollective"
}
],
- "time": "2023-01-26T09:22:57+00:00"
+ "time": "2024-03-16T13:31:21+00:00"
},
{
- "name": "yiisoft/friendly-exception",
- "version": "1.1.0",
+ "name": "yiisoft/di",
+ "version": "1.2.1",
"source": {
"type": "git",
- "url": "https://github.com/yiisoft/friendly-exception.git",
- "reference": "4b4a19edff251791e3c92d4d83435d2716351ff4"
+ "url": "https://github.com/yiisoft/di.git",
+ "reference": "a6d889f74030a381dad337f1bd1ea9de7341bc9b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/yiisoft/friendly-exception/zipball/4b4a19edff251791e3c92d4d83435d2716351ff4",
- "reference": "4b4a19edff251791e3c92d4d83435d2716351ff4",
+ "url": "https://api.github.com/repos/yiisoft/di/zipball/a6d889f74030a381dad337f1bd1ea9de7341bc9b",
+ "reference": "a6d889f74030a381dad337f1bd1ea9de7341bc9b",
"shasum": ""
},
"require": {
- "php": "^7.1|^8.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.4",
- "roave/infection-static-analysis-plugin": "^1.5",
- "spatie/phpunit-watcher": "^1.23",
- "vimeo/psalm": "^4.3"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Yiisoft\\FriendlyException\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "An interface for friendlier exception",
- "homepage": "http://www.yiiframework.com/",
- "keywords": [
- "error handling",
- "exception",
- "exceptions",
- "friendly"
- ],
- "support": {
- "forum": "http://www.yiiframework.com/forum/",
- "irc": "irc://irc.freenode.net/yii",
- "issues": "https://github.com/yiisoft/friendly-exception/issues?state=open",
- "source": "https://github.com/yiisoft/friendly-exception",
- "wiki": "http://www.yiiframework.com/wiki/"
- },
- "funding": [
- {
- "url": "https://github.com/yiisoft",
- "type": "github"
- },
- {
- "url": "https://opencollective.com/yiisoft",
- "type": "open_collective"
- }
- ],
- "time": "2021-10-26T21:43:25+00:00"
- },
- {
- "name": "yiisoft/http",
- "version": "1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/yiisoft/http.git",
- "reference": "7967b2c45dbf6af785dea4ea481af23da6d49c5d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/yiisoft/http/zipball/7967b2c45dbf6af785dea4ea481af23da6d49c5d",
- "reference": "7967b2c45dbf6af785dea4ea481af23da6d49c5d",
- "shasum": ""
+ "ext-mbstring": "*",
+ "php": "^8.0",
+ "psr/container": "^1.1|^2.0",
+ "yiisoft/definitions": "^3.0"
},
- "require": {
- "php": "^7.4|^8.0",
- "yiisoft/strings": "^2.0"
+ "provide": {
+ "psr/container-implementation": "1.0.0"
},
"require-dev": {
+ "league/container": "^4.2",
+ "maglnet/composer-require-checker": "^4.2",
+ "phpbench/phpbench": "^1.2.0",
"phpunit/phpunit": "^9.5",
- "roave/infection-static-analysis-plugin": "^1.10",
+ "rector/rector": "^0.14.3",
+ "roave/infection-static-analysis-plugin": "^1.25",
"spatie/phpunit-watcher": "^1.23",
- "vimeo/psalm": "^4.12"
+ "vimeo/psalm": "^4.29",
+ "yiisoft/injector": "^1.0",
+ "yiisoft/test-support": "^3.0"
+ },
+ "suggest": {
+ "phpbench/phpbench": "To run benchmarks.",
+ "yiisoft/injector": "^1.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Yiisoft\\Http\\": "src"
+ "Yiisoft\\Di\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
- "description": "Constants and PSR-7 PhpStorm meta for HTTP protocol headers, methods and statuses",
+ "description": "Yii DI container",
"homepage": "https://www.yiiframework.com/",
"keywords": [
- "header",
- "http",
- "method",
- "psr-17",
- "psr-7",
- "status"
+ "Autowiring",
+ "PSR-11",
+ "container",
+ "dependency",
+ "di",
+ "injection",
+ "injector"
],
"support": {
+ "chat": "https://t.me/yii3en",
"forum": "https://www.yiiframework.com/forum/",
"irc": "irc://irc.freenode.net/yii",
- "issues": "https://github.com/yiisoft/http/issues?state=open",
- "source": "https://github.com/yiisoft/http",
+ "issues": "https://github.com/yiisoft/di/issues?state=open",
+ "source": "https://github.com/yiisoft/di",
"wiki": "https://www.yiiframework.com/wiki/"
},
"funding": [
@@ -9645,59 +2497,57 @@
"type": "open_collective"
}
],
- "time": "2021-11-09T09:42:11+00:00"
+ "time": "2022-12-23T16:12:56+00:00"
},
{
- "name": "yiisoft/injector",
- "version": "1.1.0",
+ "name": "yiisoft/factory",
+ "version": "1.2.0",
"source": {
"type": "git",
- "url": "https://github.com/yiisoft/injector.git",
- "reference": "e78a0da15625c59cc0969985bfa05f2ea1b6ddea"
+ "url": "https://github.com/yiisoft/factory.git",
+ "reference": "4537a78ae1a3b49bd86e83d09f0772034e45f193"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/yiisoft/injector/zipball/e78a0da15625c59cc0969985bfa05f2ea1b6ddea",
- "reference": "e78a0da15625c59cc0969985bfa05f2ea1b6ddea",
+ "url": "https://api.github.com/repos/yiisoft/factory/zipball/4537a78ae1a3b49bd86e83d09f0772034e45f193",
+ "reference": "4537a78ae1a3b49bd86e83d09f0772034e45f193",
"shasum": ""
},
"require": {
- "php": "^7.4|^8.0",
- "psr/container": "^1.0|^2.0"
+ "php": "^8.0",
+ "psr/container": "^1.0|^2.0",
+ "yiisoft/definitions": "^1.0|^2.0|^3.0.1"
},
"require-dev": {
- "phpbench/phpbench": "^1.1",
+ "maglnet/composer-require-checker": "^4.2",
"phpunit/phpunit": "^9.5",
+ "rector/rector": "^0.18.0",
"roave/infection-static-analysis-plugin": "^1.16",
"spatie/phpunit-watcher": "^1.23",
- "vimeo/psalm": "^4.18",
- "yiisoft/test-support": "^1.2"
+ "vimeo/psalm": "^4.30|^5.4",
+ "yiisoft/test-support": "^1.3"
},
"type": "library",
"autoload": {
"psr-4": {
- "Yiisoft\\Injector\\": "src"
+ "Yiisoft\\Factory\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
- "description": "PSR-11 compatible injector. Executes a callable and makes an instances by injecting dependencies from a given DI container.",
+ "description": "Yii Factory",
"homepage": "https://www.yiiframework.com/",
"keywords": [
- "PSR-11",
- "dependency injection",
- "di",
- "injector",
- "reflection"
+ "factory"
],
"support": {
"chat": "https://t.me/yii3en",
"forum": "https://www.yiiframework.com/forum/",
"irc": "irc://irc.freenode.net/yii",
- "issues": "https://github.com/yiisoft/injector/issues?state=open",
- "source": "https://github.com/yiisoft/injector",
+ "issues": "https://github.com/yiisoft/factory/issues",
+ "source": "https://github.com/yiisoft/factory",
"wiki": "https://www.yiiframework.com/wiki/"
},
"funding": [
@@ -9710,83 +2560,102 @@
"type": "open_collective"
}
],
- "time": "2022-07-18T15:18:30+00:00"
- },
+ "time": "2023-12-03T05:59:14+00:00"
+ }
+ ],
+ "packages-dev": [
{
- "name": "yiisoft/strings",
- "version": "2.1.0",
+ "name": "symfony/var-dumper",
+ "version": "v7.0.7",
"source": {
"type": "git",
- "url": "https://github.com/yiisoft/strings.git",
- "reference": "714ebfbddf8a169194f0820adf0dd9f910363535"
+ "url": "https://github.com/symfony/var-dumper.git",
+ "reference": "d1627b66fd87c8b4d90cabe5671c29d575690924"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/yiisoft/strings/zipball/714ebfbddf8a169194f0820adf0dd9f910363535",
- "reference": "714ebfbddf8a169194f0820adf0dd9f910363535",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d1627b66fd87c8b4d90cabe5671c29d575690924",
+ "reference": "d1627b66fd87c8b4d90cabe5671c29d575690924",
"shasum": ""
},
"require": {
- "ext-mbstring": "*",
- "php": "^7.4|^8.0"
+ "php": ">=8.2",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/console": "<6.4"
},
"require-dev": {
- "phpunit/phpunit": "^9.5",
- "roave/infection-static-analysis-plugin": "^1.16",
- "spatie/phpunit-watcher": "^1.23",
- "vimeo/psalm": "^4.18"
+ "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": {
- "Yiisoft\\Strings\\": "src"
- }
+ "Symfony\\Component\\VarDumper\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
- "description": "Yii Strings Helper",
- "homepage": "https://www.yiiframework.com/",
+ "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": [
- "helper",
- "string",
- "yii"
+ "debug",
+ "dump"
],
"support": {
- "chat": "https://t.me/yii3en",
- "forum": "https://www.yiiframework.com/forum/",
- "irc": "irc://irc.freenode.net/yii",
- "issues": "https://github.com/yiisoft/strings/issues",
- "source": "https://github.com/yiisoft/strings",
- "wiki": "https://www.yiiframework.com/wiki/"
+ "source": "https://github.com/symfony/var-dumper/tree/v7.0.7"
},
"funding": [
{
- "url": "https://github.com/yiisoft",
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
"type": "github"
},
{
- "url": "https://opencollective.com/yiisoft",
- "type": "open_collective"
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "time": "2022-08-20T04:26:16+00:00"
+ "time": "2024-04-18T09:29:19+00:00"
}
],
"aliases": [],
"minimum-stability": "dev",
- "stability-flags": {
- "laminas/laminas-di": 20,
- "spiral/framework": 20,
- "vimeo/psalm": 20
- },
+ "stability-flags": [],
"prefer-stable": true,
"prefer-lowest": false,
"platform": {
- "php": ">=8.1",
- "ext-sockets": "*"
+ "php": "^8.3"
},
"platform-dev": [],
- "plugin-api-version": "2.3.0"
+ "plugin-api-version": "2.6.0"
}
diff --git a/phpbench.json b/phpbench.json
index 5001cbb..a2c3da9 100644
--- a/phpbench.json
+++ b/phpbench.json
@@ -1,4 +1,19 @@
{
- "$schema":"./vendor/phpbench/phpbench/phpbench.schema.json",
- "runner.bootstrap": "vendor/autoload.php"
-}
\ No newline at end of file
+ "$schema":"./vendor/phpbench/phpbench/phpbench.schema.json",
+ "runner.bootstrap": "vendor/autoload.php",
+ "runner.path": "app",
+ "runner.progress": "plain",
+ "runner.file_pattern": "*Bench.php",
+ "runner.php_config": {
+ "opcache.enable": 1,
+ "opcache.enable_cli": 1,
+ "opcache.jit_buffer_size": "0",
+ "xdebug.mode": "off"
+ },
+ "report.generators": {
+ "grouped": {
+ "extends": "aggregate",
+ "break": ["benchmark", "set"]
+ }
+ }
+}
diff --git a/phpunit.xml b/phpunit.xml
deleted file mode 100644
index 14b6e8b..0000000
--- a/phpunit.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
- app/src
-
-
-
-
- tests/Unit
-
-
- tests/Feature
-
-
-
diff --git a/psalm.xml b/psalm.xml
deleted file mode 100644
index a7dff04..0000000
--- a/psalm.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/storage/.gitignore b/storage/.gitignore
new file mode 100644
index 0000000..d6b7ef3
--- /dev/null
+++ b/storage/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/tests/App/TestKernel.php b/tests/App/TestKernel.php
deleted file mode 100644
index 8636d62..0000000
--- a/tests/App/TestKernel.php
+++ /dev/null
@@ -1,14 +0,0 @@
-bag = new InputBag($this->array = $this->getArray());
- }
-
- /**
- * @BeforeMethods("setUp")
- */
- public function benchSpiral(): void
- {
- $this->bag->get(self::ARR_PATH);
- }
-
- /**
- * @BeforeMethods("setUp")
- */
- public function benchSpiralWithObject(): void
- {
- (new InputBag($this->array))->get(self::ARR_PATH);
- }
-
- /**
- * @BeforeMethods("setUp")
- */
- public function benchLaravel(): void
- {
- Arr::get(
- $this->array,
- self::ARR_PATH,
- );
- }
-
- /**
- * @BeforeMethods("setUp")
- */
- public function benchYii(): void
- {
- ArrayHelper::getValueByPath(
- $this->array,
- self::ARR_PATH,
- );
- }
-
- private function getArray(): array
- {
- return [
- 'foo' => [
- 'bar' => [
- 'baz' => 'qux',
- ],
- 'quux' => [
- 'corge' => [
- 'grault' => [
- 'garply' => [
- 'waldo' => [
- 'fred' => 'plugh',
- ],
- 'xyzzy' => [
- 'quux' => [
- 'corge' => [
- 'grault' => [
- 'garply' => [
- 'waldo' => [
- 'fred' => 'plugh',
- ],
- 'xyzzy' => [
- 'quux' => [
- 'corge' => [
- 'grault' => [
- 'garply' => [
- 'waldo' => [
- 'fred' => 'plugh',
- ],
- 'xyzzy' => [
- 'quux' => [
- 'corge' => [
- 'grault' => [
- 'garply' => [
- 'waldo' => [
- 'fred' => 'plugh',
- ],
- 'xyzzy' => [
- 'thud' => 'Hello world!',
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- ],
- 'garply' => [
- 'waldo' => [
- 'fred' => 'plugh',
- ],
- 'xyzzy' => [
- 'thud' => 'thud',
- ],
- ],
- 'thud' => [
- 'thud' => [
- 'thud' => 'thud',
- ],
- ],
- ];
- }
-}
\ No newline at end of file
diff --git a/tests/Feature/.gitignore b/tests/Feature/.gitignore
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/TestCase.php b/tests/TestCase.php
deleted file mode 100644
index 0467e8f..0000000
--- a/tests/TestCase.php
+++ /dev/null
@@ -1,61 +0,0 @@
-beforeBooting(static function (ConfiguratorInterface $config): void {
- if (!$config->exists('session')) {
- return;
- }
-
- $config->modify('session', new Set('handler', null));
- });
-
- parent::setUp();
-
- $this->getContainer()->get(TranslatorInterface::class)->setLocale('en');
- }
-
- public function createAppInstance(Container $container = new Container()): TestableKernelInterface
- {
- return TestKernel::create(
- directories: $this->defineDirectories(
- $this->rootDirectory()
- ),
- exceptionHandler: Handler::class,
- container: $container
- );
- }
-
- protected function tearDown(): void
- {
- // Uncomment this line if you want to clean up runtime directory.
- $this->cleanUpRuntimeDirectory();
- }
-
- public function rootDirectory(): string
- {
- return __DIR__ . '/..';
- }
-
- public function defineDirectories(string $root): array
- {
- return [
- 'root' => $root,
- ];
- }
-}
diff --git a/tests/Unit/DemoTest.php b/tests/Unit/DemoTest.php
deleted file mode 100644
index 4d8d235..0000000
--- a/tests/Unit/DemoTest.php
+++ /dev/null
@@ -1,19 +0,0 @@
-assertTrue($expected);
- $this->assertFalse($actual);
- }
-}