diff --git a/README.md b/README.md
index c73c8f0..bad8867 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,101 @@
-# Keeper demo
+# Spiral Keeper Application Skeleton [![Latest Stable Version](https://poser.pugx.org/spiral/app-keeper/version)](https://packagist.org/packages/spiral/app-keeper)
-Install:
+
+
+Spiral Framework makes developing in PHP exciting again. It optimizes on the power of PHP to quickly develop business logic while uniquely leveraging Golang to craft an elegant infrastructure layer with native support for HTTP/2, GRPC, Queue, and more. Build faster, more efficient applications with this flexible and PSR compliant PHP7 framework (and have fun while you’re at it).
+
+[App Skeleton](https://github.com/spiral/app) ([CLI](https://github.com/spiral/app-cli), [GRPC](https://github.com/spiral/app-grpc)) | [**Documentation**](https://spiral.dev/docs) | [Twitter](https://twitter.com/spiralphp) | [CHANGELOG](/CHANGELOG.md) | [Contributing](https://github.com/spiral/guide/blob/master/contributing.md)
+
+
+
+Server Requirements
+--------
+Make sure that your server is configured with following PHP version and extensions:
+* PHP 7.2+, 64bit
+* *mb-string* extension
+* PDO Extension with desired database drivers (default SQLite)
+
+Application Bundle
+--------
+Application bundle includes the following components:
+* High-performance HTTP, HTTP/2 server based on [RoadRunner](https://roadrunner.dev)
+* Console commands via Symfony/Console
+* Translation support by Symfony/Translation
+* Queue support for AMQP, Beanstalk, Amazon SQS, in-Memory
+* Stempler template engine
+* Security, validation, filter models
+* PSR-7 HTTP pipeline, session, encrypted cookies
+* DBAL and migrations support
+* Monolog, Dotenv
+* Prometheus metrics
+* [Cycle DataMapper ORM](https://github.com/cycle)
+* Keeper Admin panel
+
+Installation
+--------
+```
+composer create-project spiral/app-keeper
+```
+
+> Application server will be downloaded automatically (`php-curl` and `php-zip` required).
+
+Once the application is installed you can ensure that it was configured properly by executing:
+
+```
+$ php app.php configure
+```
+
+Seed user accounts:
+
+```
+$ php app.php user:seed
+```
+
+Create super admin account:
+
+```
+$ php app.php user:create {First-Name} {Last-Name} {email-address} {password}
+```
+
+To start application server execute:
+
+```
+$ ./spiral serve -v -d
+```
+
+On Windows:
+
+```
+$ spiral.exe serve -v -d
+```
+
+Application will be available on `http://localhost:8080`. Keeper control panel available at `http://localhost:8080/keeper`.
+
+> Read more about application server configuration [here](https://roadrunner.dev/docs).
+
+Testing:
+--------
+To test an application:
+
+```bash
+$ ./vendor/bin/phpunit
+```
+
+Cloning:
+--------
+Make sure to properly configure project if you cloned the existing repository.
```bash
-$ composer install
+$ copy .env.sample .env
+$ php app.php encrypt:key -m .env
+$ php app.php configure -vv
$ php app.php migrate:init
$ php app.php migrate
-$ php app.php cycle
-$ php app.php configure
-$ php app.php user:seed
+$ ./vendor/bin/spiral get
```
+
+> Make sure to create super-admin account.
+
+License:
+--------
+MIT License (MIT). Please see [`LICENSE`](./LICENSE) for more information. Maintained by [Spiral Scout](https://spiralscout.com).
diff --git a/app/src/Command/User/AddCommand.php b/app/src/Command/User/AddCommand.php
deleted file mode 100644
index e8d6622..0000000
--- a/app/src/Command/User/AddCommand.php
+++ /dev/null
@@ -1,38 +0,0 @@
-firstName = 'Spiral';
- $user->lastName = 'Scout';
- $user->email = 'admin@spiralscout.com';
- $user->passwordHash = $this->passwords->hash('Password_01');
- $user->roles = 'super-admin';
-
- $this->entities->save($user);
- }
-}
diff --git a/app/src/Command/User/CreateCommand.php b/app/src/Command/User/CreateCommand.php
new file mode 100644
index 0000000..01b093e
--- /dev/null
+++ b/app/src/Command/User/CreateCommand.php
@@ -0,0 +1,45 @@
+firstName = $this->argument('firstName');
+ $user->lastName = $this->argument('lastName');
+ $user->email = $this->argument('email');
+ $user->passwordHash = $this->passwords->hash($this->argument('password'));
+ $user->roles = 'super-admin';
+
+ $this->entities->save($user);
+ }
+}
diff --git a/composer.json b/composer.json
index 7a17066..4a528ee 100644
--- a/composer.json
+++ b/composer.json
@@ -1,5 +1,5 @@
{
- "name": "spiral/app",
+ "name": "spiral/app-keeper",
"description": "Spiral Skeleton Application - Keeper",
"license": "MIT",
"authors": [
diff --git a/composer.lock b/composer.lock
deleted file mode 100644
index 890818a..0000000
--- a/composer.lock
+++ /dev/null
@@ -1,6955 +0,0 @@
-{
- "_readme": [
- "This file locks the dependencies of your project to a known state",
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
- "This file is @generated automatically"
- ],
- "content-hash": "f998d6a1b3195bb4d7de697bb69b4c40",
- "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"
- ],
- "time": "2019-01-31T20:38:55+00:00"
- },
- {
- "name": "codedungeon/php-cli-colors",
- "version": "1.11.0",
- "source": {
- "type": "git",
- "url": "https://github.com/mikeerickson/php-cli-colors.git",
- "reference": "9f60ac692cc790755dad47b01c1d607fe5f43b94"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mikeerickson/php-cli-colors/zipball/9f60ac692cc790755dad47b01c1d607fe5f43b94",
- "reference": "9f60ac692cc790755dad47b01c1d607fe5f43b94",
- "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": "PHP Package for using color output in CLI commands",
- "homepage": "https://github.com/mikeerickson/php-cli-colors",
- "keywords": [
- "color",
- "colors",
- "composer",
- "package",
- "php"
- ],
- "time": "2019-12-29T22:29:29+00:00"
- },
- {
- "name": "composer/semver",
- "version": "1.5.1",
- "source": {
- "type": "git",
- "url": "https://github.com/composer/semver.git",
- "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
- "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
- "shasum": ""
- },
- "require": {
- "php": "^5.3.2 || ^7.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.5 || ^5.0.5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.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"
- ],
- "time": "2020-01-13T12:06:48+00:00"
- },
- {
- "name": "composer/xdebug-handler",
- "version": "1.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/composer/xdebug-handler.git",
- "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/1ab9842d69e64fb3a01be6b656501032d1b78cb7",
- "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7",
- "shasum": ""
- },
- "require": {
- "php": "^5.3.2 || ^7.0 || ^8.0",
- "psr/log": "^1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
- },
- "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"
- ],
- "funding": [
- {
- "url": "https://packagist.com",
- "type": "custom"
- }
- ],
- "time": "2020-03-01T12:26:26+00:00"
- },
- {
- "name": "cycle/annotated",
- "version": "v2.0.5",
- "source": {
- "type": "git",
- "url": "https://github.com/cycle/annotated.git",
- "reference": "bdb0183d5cb22f766178300ab8454ffdfa994674"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cycle/annotated/zipball/bdb0183d5cb22f766178300ab8454ffdfa994674",
- "reference": "bdb0183d5cb22f766178300ab8454ffdfa994674",
- "shasum": ""
- },
- "require": {
- "cycle/schema-builder": "^1.0",
- "doctrine/annotations": "^1.7",
- "php": "^7.2",
- "spiral/tokenizer": "^2.1"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~8.0",
- "spiral/code-style": "^1.0",
- "spiral/debug": "^1.3"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Cycle\\Annotated\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "Cycle ORM Annotated Entities generator",
- "time": "2020-05-08T15:44:07+00:00"
- },
- {
- "name": "cycle/migrations",
- "version": "v1.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/cycle/migrations.git",
- "reference": "e248689180ef06978f3733a7f97bb4af7af4eb92"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cycle/migrations/zipball/e248689180ef06978f3733a7f97bb4af7af4eb92",
- "reference": "e248689180ef06978f3733a7f97bb4af7af4eb92",
- "shasum": ""
- },
- "require": {
- "cycle/orm": "^1.0",
- "cycle/schema-builder": "^1.0",
- "php": "^7.2",
- "spiral/migrations": "^2.0"
- },
- "require-dev": {
- "cycle/annotated": "^1.0",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0",
- "spiral/debug": "^1.3"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Cycle\\Migrations\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "Cycle ORM Migration generation",
- "time": "2020-01-14T10:29:33+00:00"
- },
- {
- "name": "cycle/orm",
- "version": "v1.2.7",
- "source": {
- "type": "git",
- "url": "https://github.com/cycle/orm.git",
- "reference": "83426cac9746746e138ea1da72859b55d33987b2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cycle/orm/zipball/83426cac9746746e138ea1da72859b55d33987b2",
- "reference": "83426cac9746746e138ea1da72859b55d33987b2",
- "shasum": ""
- },
- "require": {
- "doctrine/collections": "^1.5",
- "doctrine/inflector": "^1.3",
- "doctrine/instantiator": "^1.2",
- "ext-pdo": "*",
- "laminas/laminas-hydrator": "^2.4|^3.0",
- "php": "^7.2",
- "spiral/database": "^2.3"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~8.0",
- "ramsey/uuid": "^3.8",
- "spiral/code-style": "^1.0",
- "spiral/dumper": "^1.0",
- "spiral/tokenizer": "^2.1"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Cycle\\ORM\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "PHP DataMapper ORM and Data Modelling Engine",
- "time": "2020-04-26T14:17:24+00:00"
- },
- {
- "name": "cycle/proxy-factory",
- "version": "v1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/cycle/proxy-factory.git",
- "reference": "2345403f2c4a1fd0c7ce7849a6a67207512d59b7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cycle/proxy-factory/zipball/2345403f2c4a1fd0c7ce7849a6a67207512d59b7",
- "reference": "2345403f2c4a1fd0c7ce7849a6a67207512d59b7",
- "shasum": ""
- },
- "require": {
- "cycle/orm": "^1.1",
- "doctrine/instantiator": "^1.2",
- "ext-mbstring": "*",
- "nikic/php-parser": "^4.2",
- "php": "^7.2",
- "spiral/files": "^2.0"
- },
- "require-dev": {
- "cycle/annotated": "^1.0",
- "ext-pdo": "*",
- "phpunit/phpunit": "~7.0",
- "roave/security-advisories": "dev-master",
- "spiral/code-style": "^1.0"
- },
- "type": "module",
- "autoload": {
- "psr-4": {
- "Cycle\\ORM\\Promise\\": "src/Promise"
- },
- "files": [
- "src/functions/utils.php",
- "src/functions/expressions.php",
- "src/functions/version.php",
- "src/functions/injector.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "Proxy Factory Interface implementation for cycle ORM",
- "time": "2020-01-08T08:16:43+00:00"
- },
- {
- "name": "cycle/schema-builder",
- "version": "v1.1.4",
- "source": {
- "type": "git",
- "url": "https://github.com/cycle/schema-builder.git",
- "reference": "4a06ccaf74d19b8b98a13b37121a4feeae65fcff"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cycle/schema-builder/zipball/4a06ccaf74d19b8b98a13b37121a4feeae65fcff",
- "reference": "4a06ccaf74d19b8b98a13b37121a4feeae65fcff",
- "shasum": ""
- },
- "require": {
- "cycle/orm": "^1.0",
- "php": "^7.2"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~8.0",
- "spiral/code-style": "^1.0",
- "spiral/debug": "^1.3",
- "spiral/tokenizer": "^2.1"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Cycle\\Schema\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "Cycle ORM Schema Builder",
- "time": "2020-05-08T16:34:47+00:00"
- },
- {
- "name": "defuse/php-encryption",
- "version": "v2.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/defuse/php-encryption.git",
- "reference": "0f407c43b953d571421e0020ba92082ed5fb7620"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620",
- "reference": "0f407c43b953d571421e0020ba92082ed5fb7620",
- "shasum": ""
- },
- "require": {
- "ext-openssl": "*",
- "paragonie/random_compat": ">= 2",
- "php": ">=5.4.0"
- },
- "require-dev": {
- "nikic/php-parser": "^2.0|^3.0|^4.0",
- "phpunit/phpunit": "^4|^5"
- },
- "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"
- ],
- "time": "2018-07-24T23:27:56+00:00"
- },
- {
- "name": "doctrine/annotations",
- "version": "1.10.2",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/annotations.git",
- "reference": "b9d758e831c70751155c698c2f7df4665314a1cb"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/annotations/zipball/b9d758e831c70751155c698c2f7df4665314a1cb",
- "reference": "b9d758e831c70751155c698c2f7df4665314a1cb",
- "shasum": ""
- },
- "require": {
- "doctrine/lexer": "1.*",
- "ext-tokenizer": "*",
- "php": "^7.1"
- },
- "require-dev": {
- "doctrine/cache": "1.*",
- "phpunit/phpunit": "^7.5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.9.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
- }
- },
- "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": "Docblock Annotations Parser",
- "homepage": "http://www.doctrine-project.org",
- "keywords": [
- "annotations",
- "docblock",
- "parser"
- ],
- "time": "2020-04-20T09:18:32+00:00"
- },
- {
- "name": "doctrine/collections",
- "version": "1.6.4",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/collections.git",
- "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7",
- "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7",
- "shasum": ""
- },
- "require": {
- "php": "^7.1.3"
- },
- "require-dev": {
- "doctrine/coding-standard": "^6.0",
- "phpstan/phpstan-shim": "^0.9.2",
- "phpunit/phpunit": "^7.0",
- "vimeo/psalm": "^3.2.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.6.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
- "homepage": "https://www.doctrine-project.org/projects/collections.html",
- "keywords": [
- "array",
- "collections",
- "iterators",
- "php"
- ],
- "time": "2019-11-13T13:07:11+00:00"
- },
- {
- "name": "doctrine/inflector",
- "version": "1.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/inflector.git",
- "reference": "ab5de36233a1995f9c776c741b803eb8207aebef"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/ab5de36233a1995f9c776c741b803eb8207aebef",
- "reference": "ab5de36233a1995f9c776c741b803eb8207aebef",
- "shasum": ""
- },
- "require": {
- "php": "^7.2"
- },
- "require-dev": {
- "doctrine/coding-standard": "^7.0",
- "phpstan/phpstan": "^0.11",
- "phpstan/phpstan-phpunit": "^0.11",
- "phpstan/phpstan-strict-rules": "^0.11",
- "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
- "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"
- ],
- "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": "2020-05-06T11:01:57+00:00"
- },
- {
- "name": "doctrine/instantiator",
- "version": "1.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/instantiator.git",
- "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
- "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "require-dev": {
- "doctrine/coding-standard": "^6.0",
- "ext-pdo": "*",
- "ext-phar": "*",
- "phpbench/phpbench": "^0.13",
- "phpstan/phpstan-phpunit": "^0.11",
- "phpstan/phpstan-shim": "^0.11",
- "phpunit/phpunit": "^7.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.2.x-dev"
- }
- },
- "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": "http://ocramius.github.com/"
- }
- ],
- "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"
- ],
- "time": "2019-10-21T16:45:58+00:00"
- },
- {
- "name": "doctrine/lexer",
- "version": "1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/lexer.git",
- "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
- "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
- "shasum": ""
- },
- "require": {
- "php": "^7.2"
- },
- "require-dev": {
- "doctrine/coding-standard": "^6.0",
- "phpstan/phpstan": "^0.11.8",
- "phpunit/phpunit": "^8.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.2.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
- "homepage": "https://www.doctrine-project.org/projects/lexer.html",
- "keywords": [
- "annotations",
- "docblock",
- "lexer",
- "parser",
- "php"
- ],
- "time": "2019-10-30T14:39:59+00:00"
- },
- {
- "name": "friendsofphp/php-cs-fixer",
- "version": "v2.16.3",
- "source": {
- "type": "git",
- "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
- "reference": "83baf823a33a1cbd5416c8626935cf3f843c10b0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/83baf823a33a1cbd5416c8626935cf3f843c10b0",
- "reference": "83baf823a33a1cbd5416c8626935cf3f843c10b0",
- "shasum": ""
- },
- "require": {
- "composer/semver": "^1.4",
- "composer/xdebug-handler": "^1.2",
- "doctrine/annotations": "^1.2",
- "ext-json": "*",
- "ext-tokenizer": "*",
- "php": "^5.6 || ^7.0",
- "php-cs-fixer/diff": "^1.3",
- "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0",
- "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
- "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
- "symfony/finder": "^3.0 || ^4.0 || ^5.0",
- "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
- "symfony/polyfill-php70": "^1.0",
- "symfony/polyfill-php72": "^1.4",
- "symfony/process": "^3.0 || ^4.0 || ^5.0",
- "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
- },
- "require-dev": {
- "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
- "justinrainbow/json-schema": "^5.0",
- "keradus/cli-executor": "^1.2",
- "mikey179/vfsstream": "^1.6",
- "php-coveralls/php-coveralls": "^2.1",
- "php-cs-fixer/accessible-object": "^1.0",
- "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1",
- "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1",
- "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1",
- "phpunitgoodpractices/traits": "^1.8",
- "symfony/phpunit-bridge": "^4.3 || ^5.0",
- "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
- },
- "suggest": {
- "ext-dom": "For handling output formats in XML",
- "ext-mbstring": "For handling non-UTF8 characters in cache signature.",
- "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
- "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
- "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
- },
- "bin": [
- "php-cs-fixer"
- ],
- "type": "application",
- "autoload": {
- "psr-4": {
- "PhpCsFixer\\": "src/"
- },
- "classmap": [
- "tests/Test/AbstractFixerTestCase.php",
- "tests/Test/AbstractIntegrationCaseFactory.php",
- "tests/Test/AbstractIntegrationTestCase.php",
- "tests/Test/Assert/AssertTokensTrait.php",
- "tests/Test/IntegrationCase.php",
- "tests/Test/IntegrationCaseFactory.php",
- "tests/Test/IntegrationCaseFactoryInterface.php",
- "tests/Test/InternalIntegrationCaseFactory.php",
- "tests/Test/IsIdenticalConstraint.php",
- "tests/TestCase.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Dariusz Rumiński",
- "email": "dariusz.ruminski@gmail.com"
- }
- ],
- "description": "A tool to automatically fix PHP code style",
- "funding": [
- {
- "url": "https://github.com/keradus",
- "type": "github"
- }
- ],
- "time": "2020-04-15T18:51:10+00:00"
- },
- {
- "name": "fzaninotto/faker",
- "version": "v1.9.1",
- "source": {
- "type": "git",
- "url": "https://github.com/fzaninotto/Faker.git",
- "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
- "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
- "shasum": ""
- },
- "require": {
- "php": "^5.3.3 || ^7.0"
- },
- "require-dev": {
- "ext-intl": "*",
- "phpunit/phpunit": "^4.8.35 || ^5.7",
- "squizlabs/php_codesniffer": "^2.9.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.9-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Faker\\": "src/Faker/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "François Zaninotto"
- }
- ],
- "description": "Faker is a PHP library that generates fake data for you.",
- "keywords": [
- "data",
- "faker",
- "fixtures"
- ],
- "time": "2019-12-12T13:22:17+00:00"
- },
- {
- "name": "laminas/laminas-diactoros",
- "version": "2.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/laminas/laminas-diactoros.git",
- "reference": "5ab185dba63ec655a2380c97711b09adc7061f89"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/5ab185dba63ec655a2380c97711b09adc7061f89",
- "reference": "5ab185dba63ec655a2380c97711b09adc7061f89",
- "shasum": ""
- },
- "require": {
- "laminas/laminas-zendframework-bridge": "^1.0",
- "php": "^7.1",
- "psr/http-factory": "^1.0",
- "psr/http-message": "^1.0"
- },
- "conflict": {
- "phpspec/prophecy": "<1.9.0"
- },
- "provide": {
- "psr/http-factory-implementation": "1.0",
- "psr/http-message-implementation": "1.0"
- },
- "replace": {
- "zendframework/zend-diactoros": "^2.2.1"
- },
- "require-dev": {
- "ext-curl": "*",
- "ext-dom": "*",
- "ext-libxml": "*",
- "http-interop/http-factory-tests": "^0.5.0",
- "laminas/laminas-coding-standard": "~1.0.0",
- "php-http/psr7-integration-tests": "^1.0",
- "phpunit/phpunit": "^7.5.18"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.3.x-dev",
- "dev-develop": "2.4.x-dev"
- },
- "laminas": {
- "config-provider": "Laminas\\Diactoros\\ConfigProvider",
- "module": "Laminas\\Diactoros"
- }
- },
- "autoload": {
- "files": [
- "src/functions/create_uploaded_file.php",
- "src/functions/marshal_headers_from_sapi.php",
- "src/functions/marshal_method_from_sapi.php",
- "src/functions/marshal_protocol_version_from_sapi.php",
- "src/functions/marshal_uri_from_sapi.php",
- "src/functions/normalize_server.php",
- "src/functions/normalize_uploaded_files.php",
- "src/functions/parse_cookie_header.php",
- "src/functions/create_uploaded_file.legacy.php",
- "src/functions/marshal_headers_from_sapi.legacy.php",
- "src/functions/marshal_method_from_sapi.legacy.php",
- "src/functions/marshal_protocol_version_from_sapi.legacy.php",
- "src/functions/marshal_uri_from_sapi.legacy.php",
- "src/functions/normalize_server.legacy.php",
- "src/functions/normalize_uploaded_files.legacy.php",
- "src/functions/parse_cookie_header.legacy.php"
- ],
- "psr-4": {
- "Laminas\\Diactoros\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "PSR HTTP Message implementations",
- "homepage": "https://laminas.dev",
- "keywords": [
- "http",
- "laminas",
- "psr",
- "psr-7"
- ],
- "funding": [
- {
- "url": "https://funding.communitybridge.org/projects/laminas-project",
- "type": "community_bridge"
- }
- ],
- "time": "2020-04-27T17:07:01+00:00"
- },
- {
- "name": "laminas/laminas-hydrator",
- "version": "3.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/laminas/laminas-hydrator.git",
- "reference": "5c418d6e37ad363bef5ce1c8a72388243d6c7950"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/laminas/laminas-hydrator/zipball/5c418d6e37ad363bef5ce1c8a72388243d6c7950",
- "reference": "5c418d6e37ad363bef5ce1c8a72388243d6c7950",
- "shasum": ""
- },
- "require": {
- "laminas/laminas-stdlib": "^3.2.1",
- "laminas/laminas-zendframework-bridge": "^1.0",
- "php": "^7.2"
- },
- "replace": {
- "zendframework/zend-hydrator": "self.version"
- },
- "require-dev": {
- "laminas/laminas-coding-standard": "~1.0.0",
- "laminas/laminas-eventmanager": "^3.2.1",
- "laminas/laminas-modulemanager": "^2.8",
- "laminas/laminas-serializer": "^2.9",
- "laminas/laminas-servicemanager": "^3.3.2",
- "phpspec/prophecy": "^1.7.5",
- "phpstan/phpstan": "^0.10.5",
- "phpunit/phpunit": "^7.5"
- },
- "suggest": {
- "laminas/laminas-eventmanager": "^3.2, to support aggregate hydrator usage",
- "laminas/laminas-serializer": "^2.9, to use the SerializableStrategy",
- "laminas/laminas-servicemanager": "^3.3, to support hydrator plugin manager usage"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-release-2.4": "2.4.x-dev",
- "dev-master": "3.0.x-dev",
- "dev-develop": "3.1.x-dev"
- },
- "laminas": {
- "component": "Laminas\\Hydrator",
- "config-provider": "Laminas\\Hydrator\\ConfigProvider"
- }
- },
- "autoload": {
- "psr-4": {
- "Laminas\\Hydrator\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "Serialize objects to arrays, and vice versa",
- "homepage": "https://laminas.dev",
- "keywords": [
- "hydrator",
- "laminas"
- ],
- "time": "2019-12-31T17:06:44+00:00"
- },
- {
- "name": "laminas/laminas-stdlib",
- "version": "3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/laminas/laminas-stdlib.git",
- "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
- "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
- "shasum": ""
- },
- "require": {
- "laminas/laminas-zendframework-bridge": "^1.0",
- "php": "^5.6 || ^7.0"
- },
- "replace": {
- "zendframework/zend-stdlib": "self.version"
- },
- "require-dev": {
- "laminas/laminas-coding-standard": "~1.0.0",
- "phpbench/phpbench": "^0.13",
- "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.2.x-dev",
- "dev-develop": "3.3.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Laminas\\Stdlib\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "SPL extensions, array utilities, error handlers, and more",
- "homepage": "https://laminas.dev",
- "keywords": [
- "laminas",
- "stdlib"
- ],
- "time": "2019-12-31T17:51:15+00:00"
- },
- {
- "name": "laminas/laminas-zendframework-bridge",
- "version": "1.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
- "reference": "bfbbdb6c998d50dbf69d2187cb78a5f1fa36e1e9"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/bfbbdb6c998d50dbf69d2187cb78a5f1fa36e1e9",
- "reference": "bfbbdb6c998d50dbf69d2187cb78a5f1fa36e1e9",
- "shasum": ""
- },
- "require": {
- "php": "^5.6 || ^7.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
- "squizlabs/php_codesniffer": "^3.5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev",
- "dev-develop": "1.1.x-dev"
- },
- "laminas": {
- "module": "Laminas\\ZendFrameworkBridge"
- }
- },
- "autoload": {
- "files": [
- "src/autoload.php"
- ],
- "psr-4": {
- "Laminas\\ZendFrameworkBridge\\": "src//"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "Alias legacy ZF class names to Laminas Project equivalents.",
- "keywords": [
- "ZendFramework",
- "autoloading",
- "laminas",
- "zf"
- ],
- "funding": [
- {
- "url": "https://funding.communitybridge.org/projects/laminas-project",
- "type": "community_bridge"
- }
- ],
- "time": "2020-04-03T16:01:00+00:00"
- },
- {
- "name": "monolog/monolog",
- "version": "1.25.3",
- "source": {
- "type": "git",
- "url": "https://github.com/Seldaek/monolog.git",
- "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1",
- "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0",
- "psr/log": "~1.0"
- },
- "provide": {
- "psr/log-implementation": "1.0.0"
- },
- "require-dev": {
- "aws/aws-sdk-php": "^2.4.9 || ^3.0",
- "doctrine/couchdb": "~1.0@dev",
- "graylog2/gelf-php": "~1.0",
- "jakub-onderka/php-parallel-lint": "0.9",
- "php-amqplib/php-amqplib": "~2.4",
- "php-console/php-console": "^3.1.3",
- "phpunit/phpunit": "~4.5",
- "phpunit/phpunit-mock-objects": "2.3.0",
- "ruflin/elastica": ">=0.90 <3.0",
- "sentry/sentry": "^0.13",
- "swiftmailer/swiftmailer": "^5.3|^6.0"
- },
- "suggest": {
- "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
- "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
- "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
- "ext-mongo": "Allow sending log messages to a MongoDB server",
- "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
- "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
- "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
- "php-console/php-console": "Allow sending log messages to Google Chrome",
- "rollbar/rollbar": "Allow sending log messages to Rollbar",
- "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
- "sentry/sentry": "Allow sending log messages to a Sentry server"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Monolog\\": "src/Monolog"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
- }
- ],
- "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
- "homepage": "http://github.com/Seldaek/monolog",
- "keywords": [
- "log",
- "logging",
- "psr-3"
- ],
- "time": "2019-12-20T14:15:16+00:00"
- },
- {
- "name": "myclabs/deep-copy",
- "version": "1.9.5",
- "source": {
- "type": "git",
- "url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
- "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "replace": {
- "myclabs/deep-copy": "self.version"
- },
- "require-dev": {
- "doctrine/collections": "^1.0",
- "doctrine/common": "^2.6",
- "phpunit/phpunit": "^7.1"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "DeepCopy\\": "src/DeepCopy/"
- },
- "files": [
- "src/DeepCopy/deep_copy.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "Create deep copies (clones) of your objects",
- "keywords": [
- "clone",
- "copy",
- "duplicate",
- "object",
- "object graph"
- ],
- "time": "2020-01-17T21:11:47+00:00"
- },
- {
- "name": "nikic/php-parser",
- "version": "v4.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
- "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
- "shasum": ""
- },
- "require": {
- "ext-tokenizer": "*",
- "php": ">=7.0"
- },
- "require-dev": {
- "ircmaxell/php-yacc": "0.0.5",
- "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
- },
- "bin": [
- "bin/php-parse"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.3-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "PhpParser\\": "lib/PhpParser"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Nikita Popov"
- }
- ],
- "description": "A PHP parser written in PHP",
- "keywords": [
- "parser",
- "php"
- ],
- "time": "2020-04-10T16:34:50+00:00"
- },
- {
- "name": "nyholm/psr7",
- "version": "1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/Nyholm/psr7.git",
- "reference": "55ff6b76573f5b242554c9775792bd59fb52e11c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Nyholm/psr7/zipball/55ff6b76573f5b242554c9775792bd59fb52e11c",
- "reference": "55ff6b76573f5b242554c9775792bd59fb52e11c",
- "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": "dev-master",
- "php-http/psr7-integration-tests": "dev-master",
- "phpunit/phpunit": "^7.5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-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": "http://tnyholm.se",
- "keywords": [
- "psr-17",
- "psr-7"
- ],
- "time": "2019-09-05T13:24:16+00:00"
- },
- {
- "name": "paragonie/random_compat",
- "version": "v9.99.99",
- "source": {
- "type": "git",
- "url": "https://github.com/paragonie/random_compat.git",
- "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
- "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
- "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"
- ],
- "time": "2018-07-02T15:55:56+00:00"
- },
- {
- "name": "php-cs-fixer/diff",
- "version": "v1.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/PHP-CS-Fixer/diff.git",
- "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756",
- "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756",
- "shasum": ""
- },
- "require": {
- "php": "^5.6 || ^7.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^5.7.23 || ^6.4.3",
- "symfony/process": "^3.3"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "SpacePossum"
- }
- ],
- "description": "sebastian/diff v2 backport support for PHP5.6",
- "homepage": "https://github.com/PHP-CS-Fixer",
- "keywords": [
- "diff"
- ],
- "time": "2018-02-15T16:58:55+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"
- ],
- "time": "2015-12-19T14:08:53+00:00"
- },
- {
- "name": "phpoption/phpoption",
- "version": "1.7.3",
- "source": {
- "type": "git",
- "url": "https://github.com/schmittjoh/php-option.git",
- "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
- "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
- "shasum": ""
- },
- "require": {
- "php": "^5.5.9 || ^7.0 || ^8.0"
- },
- "require-dev": {
- "bamarni/composer-bin-plugin": "^1.3",
- "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.7-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"
- },
- {
- "name": "Graham Campbell",
- "email": "graham@alt-three.com"
- }
- ],
- "description": "Option Type for PHP",
- "keywords": [
- "language",
- "option",
- "php",
- "type"
- ],
- "time": "2020-03-21T18:07:53+00:00"
- },
- {
- "name": "psr/container",
- "version": "1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/container.git",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Container\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://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"
- ],
- "time": "2017-02-14T16:28:37+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"
- ],
- "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"
- ],
- "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"
- ],
- "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"
- ],
- "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"
- ],
- "time": "2018-10-30T17:12:04+00:00"
- },
- {
- "name": "psr/log",
- "version": "1.1.3",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/log.git",
- "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
- "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Log\\": "Psr/Log/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Common interface for logging libraries",
- "homepage": "https://github.com/php-fig/log",
- "keywords": [
- "log",
- "psr",
- "psr-3"
- ],
- "time": "2020-03-23T09:12:05+00:00"
- },
- {
- "name": "spiral/annotated-routes",
- "version": "v1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/annotated-routes.git",
- "reference": "3691e262521216504228472a96077ade319d9b74"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/annotated-routes/zipball/3691e262521216504228472a96077ade319d9b74",
- "reference": "3691e262521216504228472a96077ade319d9b74",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/annotations": "^2.0",
- "spiral/router": "^1.4"
- },
- "require-dev": {
- "laminas/laminas-diactoros": "^2.3",
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~8.0",
- "spiral/code-style": "^1.0",
- "spiral/console": "^1.3",
- "spiral/framework": "^2.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Router\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "Annotated routes for Spiral Framework",
- "time": "2020-05-07T07:53:41+00:00"
- },
- {
- "name": "spiral/annotations",
- "version": "v2.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/annotations.git",
- "reference": "ee7ad49636712cd1a14acae6ab6bb732442dfe96"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/annotations/zipball/ee7ad49636712cd1a14acae6ab6bb732442dfe96",
- "reference": "ee7ad49636712cd1a14acae6ab6bb732442dfe96",
- "shasum": ""
- },
- "require": {
- "doctrine/annotations": "^1.7",
- "php": "^7.1|^8.0",
- "spiral/tokenizer": "^2.1"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "squizlabs/php_codesniffer": "^3.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Annotations\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "description": "Annotations parser using strict node grammar",
- "time": "2019-09-13T10:14:27+00:00"
- },
- {
- "name": "spiral/auth",
- "version": "v1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/auth.git",
- "reference": "06414906de78878d58987a000127a63afb84d17c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/auth/zipball/06414906de78878d58987a000127a63afb84d17c",
- "reference": "06414906de78878d58987a000127a63afb84d17c",
- "shasum": ""
- },
- "require": {
- "php": "^7.2"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Auth\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Common Authentication Interfaces",
- "time": "2019-10-23T10:53:57+00:00"
- },
- {
- "name": "spiral/auth-http",
- "version": "v1.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/auth-http.git",
- "reference": "b0f534adb7d9583c3c7710151157ab3380e19a23"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/auth-http/zipball/b0f534adb7d9583c3c7710151157ab3380e19a23",
- "reference": "b0f534adb7d9583c3c7710151157ab3380e19a23",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "php": "^7.2",
- "psr/http-message": "^1.0",
- "psr/http-server-middleware": "^1.0",
- "spiral/auth": "^1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0",
- "spiral/cookies": "^1.1",
- "spiral/debug": "^1.3",
- "spiral/http": "^1.2",
- "zendframework/zend-diactoros": "^1.8"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Auth\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Authorization component with set of authentication middlewares and providers",
- "time": "2020-04-13T16:48:54+00:00"
- },
- {
- "name": "spiral/boot",
- "version": "v1.2.6",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/boot.git",
- "reference": "74ec95b3d306717d1a22f8619e844f4e46192fd4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/boot/zipball/74ec95b3d306717d1a22f8619e844f4e46192fd4",
- "reference": "74ec95b3d306717d1a22f8619e844f4e46192fd4",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/config": "^1.0",
- "spiral/core": "^1.0",
- "spiral/debug": "^1.3",
- "spiral/exceptions": "^1.0",
- "spiral/files": "^2.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "functions.php"
- ],
- "psr-4": {
- "Spiral\\Boot\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Environment Bootloader and Dispatch Manager",
- "time": "2020-04-07T10:00:40+00:00"
- },
- {
- "name": "spiral/code-style",
- "version": "v1.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/code-style.git",
- "reference": "5068a92fb4026346a3c74ac5bf9edc261547fb5b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/code-style/zipball/5068a92fb4026346a3c74ac5bf9edc261547fb5b",
- "reference": "5068a92fb4026346a3c74ac5bf9edc261547fb5b",
- "shasum": ""
- },
- "require": {
- "friendsofphp/php-cs-fixer": "^2.15",
- "php": "^7.2",
- "squizlabs/php_codesniffer": "^3.5"
- },
- "require-dev": {
- "phpunit/phpunit": "^8.4"
- },
- "bin": [
- "bin/spiral-cs"
- ],
- "type": "library",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Aleksandr Novikov",
- "email": "aleksandr.novikov@spiralscout.com"
- }
- ],
- "description": "Code style and static analysis tools rulesets collection",
- "homepage": "https://github.com/spiral/code-style",
- "time": "2019-10-11T15:29:14+00:00"
- },
- {
- "name": "spiral/composer-publish-plugin",
- "version": "v1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/composer-publish-plugin.git",
- "reference": "340d216ee38aa165b40902d07fc1bbfb7ef300ee"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/composer-publish-plugin/zipball/340d216ee38aa165b40902d07fc1bbfb7ef300ee",
- "reference": "340d216ee38aa165b40902d07fc1bbfb7ef300ee",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^1.1",
- "php": "^7.1",
- "spiral/code-style": "^1.0"
- },
- "require-dev": {
- "composer/composer": "^1.7",
- "phpunit/phpunit": "~7.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"
- }
- ],
- "time": "2020-04-24T12:16:55+00:00"
- },
- {
- "name": "spiral/config",
- "version": "v1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/config.git",
- "reference": "2bd179bc6f93ad70860991e6185055feec30220d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/config/zipball/2bd179bc6f93ad70860991e6185055feec30220d",
- "reference": "2bd179bc6f93ad70860991e6185055feec30220d",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "php": "^7.2",
- "spiral/core": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Config\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Config injector and configuration mutator",
- "time": "2019-12-09T12:35:41+00:00"
- },
- {
- "name": "spiral/console",
- "version": "v1.3.3",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/console.git",
- "reference": "b83190115cbaefcf846b679a5e75f7abc7f990d1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/console/zipball/b83190115cbaefcf846b679a5e75f7abc7f990d1",
- "reference": "b83190115cbaefcf846b679a5e75f7abc7f990d1",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/core": "^1.0",
- "symfony/console": "^2.5.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Console\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Console Core, Auto-Discovery, Command Sequencing",
- "time": "2020-03-13T10:05:16+00:00"
- },
- {
- "name": "spiral/cookies",
- "version": "v1.1.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/cookies.git",
- "reference": "fae286d060dc1dc1ad8c0020fe0e8aa2c824a316"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/cookies/zipball/fae286d060dc1dc1ad8c0020fe0e8aa2c824a316",
- "reference": "fae286d060dc1dc1ad8c0020fe0e8aa2c824a316",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "psr/http-server-middleware": "^1.0",
- "spiral/encrypter": "^1.1"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0",
- "spiral/http": "^1.1",
- "zendframework/zend-diactoros": "^1.8"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Cookies\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Spiral Framework: Secure Cookie middleware",
- "time": "2020-03-21T13:49:54+00:00"
- },
- {
- "name": "spiral/core",
- "version": "v1.4.4",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/core.git",
- "reference": "86ffeac422f2f368a890ccab71cf6a8b20668176"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/core/zipball/86ffeac422f2f368a890ccab71cf6a8b20668176",
- "reference": "86ffeac422f2f368a890ccab71cf6a8b20668176",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "psr/container": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Core\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Spiral Core: IoC container, IoC scopes, factory, memory, configuration interfaces",
- "time": "2019-12-27T08:47:26+00:00"
- },
- {
- "name": "spiral/csrf",
- "version": "v1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/csrf.git",
- "reference": "b9a7236f3ace016806c0440a37d9ab7c4c46e72f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/csrf/zipball/b9a7236f3ace016806c0440a37d9ab7c4c46e72f",
- "reference": "b9a7236f3ace016806c0440a37d9ab7c4c46e72f",
- "shasum": ""
- },
- "require": {
- "php": "^7.1",
- "psr/http-server-middleware": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/http": "^1.1",
- "zendframework/zend-diactoros": "^1.8"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Csrf\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Spiral Framework: CSRF Middleware",
- "time": "2019-06-07T11:21:43+00:00"
- },
- {
- "name": "spiral/data-grid",
- "version": "v1.2.4",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/data-grid.git",
- "reference": "8e24ba91f79a7650c17931cb4d3464e0c6ce04ee"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/data-grid/zipball/8e24ba91f79a7650c17931cb4d3464e0c6ce04ee",
- "reference": "8e24ba91f79a7650c17931cb4d3464e0c6ce04ee",
- "shasum": ""
- },
- "require": {
- "php": "^7.2"
- },
- "require-dev": {
- "phpunit/phpunit": "^8.0",
- "ramsey/uuid": "^3.9",
- "spiral/code-style": "^1.0"
- },
- "type": "module",
- "autoload": {
- "psr-4": {
- "Spiral\\DataGrid\\": "src/DataGrid/"
- },
- "files": [
- "src/functions/array.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Valentin Vintsukevich (vvval)",
- "email": "valentin@spiralscout.com"
- },
- {
- "name": "Anton Tsitou (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
- }
- ],
- "description": "Data Grid specification builder",
- "time": "2020-04-10T11:19:23+00:00"
- },
- {
- "name": "spiral/data-grid-bridge",
- "version": "v1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/data-grid-bridge.git",
- "reference": "34e717e47c9c0bc83837212928109f4fedcdfc65"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/data-grid-bridge/zipball/34e717e47c9c0bc83837212928109f4fedcdfc65",
- "reference": "34e717e47c9c0bc83837212928109f4fedcdfc65",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "php": "^7.2",
- "spiral/boot": "^1.0",
- "spiral/data-grid": "^1.0",
- "spiral/http": "^1.2"
- },
- "require-dev": {
- "cycle/orm": "^1.1",
- "doctrine/annotations": "^1.10",
- "phpunit/phpunit": "^8.0",
- "spiral/code-style": "^1.0",
- "spiral/hmvc": "^2.0"
- },
- "type": "module",
- "autoload": {
- "psr-4": {
- "Spiral\\DataGrid\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
- }
- ],
- "description": "Data Grid specification builder adapter for Spiral Framework",
- "time": "2020-04-29T12:48:04+00:00"
- },
- {
- "name": "spiral/database",
- "version": "v2.7.14",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/database.git",
- "reference": "771039cbbe3985b5629c581138c7044c4ce02064"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/database/zipball/771039cbbe3985b5629c581138c7044c4ce02064",
- "reference": "771039cbbe3985b5629c581138c7044c4ce02064",
- "shasum": ""
- },
- "require": {
- "ext-pdo": "*",
- "php": "^7.2",
- "spiral/core": "^1.1",
- "spiral/logger": "^1.0",
- "spiral/pagination": "^2.2"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~8.0",
- "spiral/code-style": "^1.0",
- "spiral/dumper": "^1.0",
- "spiral/tokenizer": "^2.1"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Database\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "DBAL, schema introspection, migration and pagination",
- "time": "2020-04-23T12:41:59+00:00"
- },
- {
- "name": "spiral/debug",
- "version": "v1.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/debug.git",
- "reference": "6e147ee7487389b090c1335be6ed160def231e5e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/debug/zipball/6e147ee7487389b090c1335be6ed160def231e5e",
- "reference": "6e147ee7487389b090c1335be6ed160def231e5e",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/logger": "^1.1"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Debug\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Debug Toolkit: Log factory interface, variable dumper, benchmarker",
- "time": "2019-11-08T08:55:40+00:00"
- },
- {
- "name": "spiral/dotenv-bridge",
- "version": "v1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/dotenv-bridge.git",
- "reference": "d9ab3b2eb56c41816212142a758e9459a8cc6bdd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/dotenv-bridge/zipball/d9ab3b2eb56c41816212142a758e9459a8cc6bdd",
- "reference": "d9ab3b2eb56c41816212142a758e9459a8cc6bdd",
- "shasum": ""
- },
- "require": {
- "php": "^7.1",
- "spiral/boot": "^1.0",
- "vlucas/phpdotenv": "^3.3"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\DotEnv\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Spiral Framework: DotEnv Loader",
- "time": "2019-10-29T11:51:14+00:00"
- },
- {
- "name": "spiral/dumper",
- "version": "v1.1.7",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/dumper.git",
- "reference": "1360b115b1c5c6950cd9079a1cd773d693cd68bc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/dumper/zipball/1360b115b1c5c6950cd9079a1cd773d693cd68bc",
- "reference": "1360b115b1c5c6950cd9079a1cd773d693cd68bc",
- "shasum": ""
- },
- "require": {
- "codedungeon/php-cli-colors": "~1.0",
- "php": "^7.2",
- "psr/log": "^1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "functions.php"
- ],
- "psr-4": {
- "Spiral\\Debug\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Colorful variable dumper",
- "time": "2019-11-07T20:24:16+00:00"
- },
- {
- "name": "spiral/encrypter",
- "version": "v1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/encrypter.git",
- "reference": "fefeae297fb05021f60fd5d12f1416d881cba3a8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/encrypter/zipball/fefeae297fb05021f60fd5d12f1416d881cba3a8",
- "reference": "fefeae297fb05021f60fd5d12f1416d881cba3a8",
- "shasum": ""
- },
- "require": {
- "defuse/php-encryption": "^2.2",
- "ext-json": "*",
- "php": "^7.2",
- "spiral/core": "^1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Encrypter\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Encrypter Component",
- "time": "2019-11-02T19:57:28+00:00"
- },
- {
- "name": "spiral/exceptions",
- "version": "v1.2.2",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/exceptions.git",
- "reference": "749dfb6afef735014be093648fa3909f0b7136c2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/exceptions/zipball/749dfb6afef735014be093648fa3909f0b7136c2",
- "reference": "749dfb6afef735014be093648fa3909f0b7136c2",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "ext-mbstring": "*",
- "php": "^7.2",
- "spiral/debug": "^1.0",
- "spiral/dumper": "^1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Exceptions\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Exceptions Toolkit: exception and error handler, CLI and HTML renderer",
- "time": "2019-11-08T10:25:03+00:00"
- },
- {
- "name": "spiral/files",
- "version": "v2.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/files.git",
- "reference": "c847078b83a60fce80ff4660fd6fdb81493c0dc6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/files/zipball/c847078b83a60fce80ff4660fd6fdb81493c0dc6",
- "reference": "c847078b83a60fce80ff4660fd6fdb81493c0dc6",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Files\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "File Toolkit: atomic file manager",
- "time": "2019-04-30T11:27:51+00:00"
- },
- {
- "name": "spiral/filters",
- "version": "v1.3.3",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/filters.git",
- "reference": "e55ae436a570b9fc0f484245150a4cbf95288c56"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/filters/zipball/e55ae436a570b9fc0f484245150a4cbf95288c56",
- "reference": "e55ae436a570b9fc0f484245150a4cbf95288c56",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/core": "^1.0",
- "spiral/models": "^2.0",
- "spiral/translator": "^1.0",
- "spiral/validation": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Filters\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Deep Structural Validation, Data Mapper, Inheritance",
- "time": "2019-11-05T11:15:56+00:00"
- },
- {
- "name": "spiral/framework",
- "version": "2.4.16",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/framework.git",
- "reference": "8ce59b05cb875db0d410d66cacc3acfe2ed6cf4a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/framework/zipball/8ce59b05cb875db0d410d66cacc3acfe2ed6cf4a",
- "reference": "8ce59b05cb875db0d410d66cacc3acfe2ed6cf4a",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "ext-mbstring": "*",
- "php": "^7.2",
- "spiral/boot": "^1.1",
- "spiral/composer-publish-plugin": "^1.0",
- "spiral/tokenizer": "^2.0"
- },
- "require-dev": {
- "cycle/annotated": "^2.0",
- "cycle/migrations": "^1.0",
- "cycle/orm": "^1.0",
- "cycle/proxy-factory": "^1.0",
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~8.0",
- "roave/security-advisories": "dev-master",
- "spiral/auth": "^1.0",
- "spiral/auth-http": "^1.0",
- "spiral/broadcast": "^2.0",
- "spiral/broadcast-ws": "^1.0",
- "spiral/code-style": "^1.0",
- "spiral/console": "^1.0",
- "spiral/cookies": "^1.0",
- "spiral/csrf": "^1.0",
- "spiral/database": "^2.4",
- "spiral/debug": "^1.1",
- "spiral/encrypter": "^1.0",
- "spiral/filters": "^1.0",
- "spiral/http": "^1.0",
- "spiral/jobs": "^2.0",
- "spiral/logger": "^1.0",
- "spiral/migrations": "^2.0",
- "spiral/models": "^2.0",
- "spiral/php-grpc": "^1.0",
- "spiral/roadrunner": "^1.2",
- "spiral/router": "^1.0",
- "spiral/security": "^2.0",
- "spiral/session": "^1.1",
- "spiral/snapshots": "^1.0",
- "spiral/translator": "^1.2",
- "spiral/validation": "^1.4.3",
- "spiral/views": "^1.0"
- },
- "bin": [
- "bin/spiral"
- ],
- "type": "library",
- "autoload": {
- "files": [
- "functions.php"
- ],
- "psr-4": {
- "Spiral\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Spiral, High-Performance PHP/Go Framework",
- "time": "2020-05-05T16:38:13+00:00"
- },
- {
- "name": "spiral/goridge",
- "version": "2.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/goridge.git",
- "reference": "f1be906877b0bbe203c76bb313ed7c05b664b937"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/goridge/zipball/f1be906877b0bbe203c76bb313ed7c05b664b937",
- "reference": "f1be906877b0bbe203c76bb313ed7c05b664b937",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "php": ">=7.2"
- },
- "require-dev": {
- "phpunit/phpunit": "~8.0",
- "spiral/code-style": "^1.0"
- },
- "type": "goridge",
- "autoload": {
- "psr-4": {
- "Spiral\\Goridge\\": "src/"
- },
- "files": [
- "src/functions.php"
- ]
- },
- "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",
- "time": "2020-05-06T08:14:24+00:00"
- },
- {
- "name": "spiral/helpers",
- "version": "v1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/helpers.git",
- "reference": "fc77c677db4e79ad093c20f27748e18cc54c5668"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/helpers/zipball/fc77c677db4e79ad093c20f27748e18cc54c5668",
- "reference": "fc77c677db4e79ad093c20f27748e18cc54c5668",
- "shasum": ""
- },
- "require": {
- "cocur/slugify": "^3.1",
- "php": "^7.1"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "functions.php"
- ],
- "psr-4": {
- "Spiral\\Helpers\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Spiral, Helpers Set",
- "time": "2019-04-30T11:39:10+00:00"
- },
- {
- "name": "spiral/hmvc",
- "version": "v2.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/hmvc.git",
- "reference": "37f7ea734cfe632c82f7313765e8692889237727"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/hmvc/zipball/37f7ea734cfe632c82f7313765e8692889237727",
- "reference": "37f7ea734cfe632c82f7313765e8692889237727",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/core": "^1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Core\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "HMVC Core and Controllers",
- "time": "2019-11-01T06:39:34+00:00"
- },
- {
- "name": "spiral/http",
- "version": "v1.2.4",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/http.git",
- "reference": "d0ae0d1a501b1d979701c035497d5df20e66f387"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/http/zipball/d0ae0d1a501b1d979701c035497d5df20e66f387",
- "reference": "d0ae0d1a501b1d979701c035497d5df20e66f387",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "ext-mbstring": "*",
- "php": "^7.2",
- "psr/http-factory": "^1.0",
- "psr/http-message": "^1.0",
- "psr/http-server-middleware": "^1.0",
- "spiral/core": "^1.0",
- "spiral/files": "^2.0",
- "spiral/streams": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0",
- "zendframework/zend-diactoros": "^1.8"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Http\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "HTTP Request pipeline",
- "time": "2019-12-02T10:12:07+00:00"
- },
- {
- "name": "spiral/jobs",
- "version": "v2.1.4",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/jobs.git",
- "reference": "f4f63c603dcc0b01ca2169feb726293ee93e756b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/jobs/zipball/f4f63c603dcc0b01ca2169feb726293ee93e756b",
- "reference": "f4f63c603dcc0b01ca2169feb726293ee93e756b",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "php": "^7.2",
- "spiral/roadrunner": "^1.1"
- },
- "require-dev": {
- "doctrine/inflector": "^1.3",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0",
- "spiral/core": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Jobs\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Spiral: Jobs Jobs and Queue",
- "time": "2020-03-23T15:52:32+00:00"
- },
- {
- "name": "spiral/keeper",
- "version": "v0.5.3a",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/keeper.git",
- "reference": "e8da1301ccb9d708db4eb0567115b6c11a98a45a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/keeper/zipball/e8da1301ccb9d708db4eb0567115b6c11a98a45a",
- "reference": "e8da1301ccb9d708db4eb0567115b6c11a98a45a",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/framework": "^2.0",
- "spiral/router": "^1.1",
- "spiral/security": "^2.1"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~8.0",
- "spiral/annotations": "^2.0",
- "spiral/auth-http": "^1.0",
- "spiral/code-style": "^1.0",
- "spiral/helpers": "^1.0",
- "spiral/stempler-bridge": "^1.0",
- "spiral/toolkit": "^v1.1"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Keeper\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "Keeper - Admin panel and UI toolkit",
- "time": "2020-05-08T17:41:36+00:00"
- },
- {
- "name": "spiral/logger",
- "version": "v1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/logger.git",
- "reference": "d693b5f8259a25f20893ed14045aea4a7438dfda"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/logger/zipball/d693b5f8259a25f20893ed14045aea4a7438dfda",
- "reference": "d693b5f8259a25f20893ed14045aea4a7438dfda",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "psr/log": "^1.0",
- "spiral/core": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Logger\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "LogFactory and global log listeners",
- "time": "2019-11-13T06:29:56+00:00"
- },
- {
- "name": "spiral/migrations",
- "version": "v2.0.11",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/migrations.git",
- "reference": "fde5ec331c70db6a439751f8770258b66b36e1d7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/migrations/zipball/fde5ec331c70db6a439751f8770258b66b36e1d7",
- "reference": "fde5ec331c70db6a439751f8770258b66b36e1d7",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/core": "^1.1",
- "spiral/database": "^2.4",
- "spiral/files": "^2.0",
- "spiral/reactor": "^2.0",
- "spiral/tokenizer": "^2.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~8.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Migrations\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Database migrations, migration scaffolding",
- "time": "2020-05-08T16:47:23+00:00"
- },
- {
- "name": "spiral/models",
- "version": "v2.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/models.git",
- "reference": "ebddd7212c6e7312e3af0d190d2cbe74ab599332"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/models/zipball/ebddd7212c6e7312e3af0d190d2cbe74ab599332",
- "reference": "ebddd7212c6e7312e3af0d190d2cbe74ab599332",
- "shasum": ""
- },
- "require": {
- "php": "^7.2"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "^7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Models\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "DataEntity models",
- "time": "2019-11-04T14:00:29+00:00"
- },
- {
- "name": "spiral/monolog-bridge",
- "version": "v1.1.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/monolog-bridge.git",
- "reference": "9ba43feb0c2332a4274a71b58d5f8d8b008e5240"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/monolog-bridge/zipball/9ba43feb0c2332a4274a71b58d5f8d8b008e5240",
- "reference": "9ba43feb0c2332a4274a71b58d5f8d8b008e5240",
- "shasum": ""
- },
- "require": {
- "monolog/monolog": "^1.23",
- "php": "^7.2",
- "spiral/boot": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Monolog\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "LogFactory integration based on Monolog package",
- "time": "2019-11-29T13:39:49+00:00"
- },
- {
- "name": "spiral/nyholm-bridge",
- "version": "v1.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/nyholm-bridge.git",
- "reference": "d16590dfa844ea9d65ddaa68baf8e1a171e34a7b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/nyholm-bridge/zipball/d16590dfa844ea9d65ddaa68baf8e1a171e34a7b",
- "reference": "d16590dfa844ea9d65ddaa68baf8e1a171e34a7b",
- "shasum": ""
- },
- "require": {
- "nyholm/psr7": "^1.1",
- "php": "^7.1",
- "spiral/framework": "^2.0",
- "spiral/http": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Nyholm\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Spiral Framework: Nyholm PSR-7/PSR-17 bridge",
- "time": "2019-12-27T09:22:10+00:00"
- },
- {
- "name": "spiral/pagination",
- "version": "v2.2.2",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/pagination.git",
- "reference": "c2ccf0c3c38fc6cdb2e547685008898dc5804e6f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/pagination/zipball/c2ccf0c3c38fc6cdb2e547685008898dc5804e6f",
- "reference": "c2ccf0c3c38fc6cdb2e547685008898dc5804e6f",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Pagination\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Common pagination interfaces",
- "time": "2019-04-30T11:36:56+00:00"
- },
- {
- "name": "spiral/prototype",
- "version": "v1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/prototype.git",
- "reference": "09a86309402ad71cf7cf087a415ec70234824d36"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/prototype/zipball/09a86309402ad71cf7cf087a415ec70234824d36",
- "reference": "09a86309402ad71cf7cf087a415ec70234824d36",
- "shasum": ""
- },
- "require": {
- "doctrine/inflector": "^1.3",
- "ext-json": "*",
- "nikic/php-parser": "^4.1",
- "php": "^7.2",
- "spiral/annotations": "^2.0",
- "spiral/console": "^1.1",
- "spiral/framework": "^2.0"
- },
- "require-dev": {
- "cycle/orm": "^1.1",
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0",
- "spiral/debug": "^1.3"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Prototype\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Automatic dependency injection",
- "time": "2020-05-08T15:51:25+00:00"
- },
- {
- "name": "spiral/reactor",
- "version": "v2.2.4",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/reactor.git",
- "reference": "8d60a02dc58144a726471d16caba6870b883cdb5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/reactor/zipball/8d60a02dc58144a726471d16caba6870b883cdb5",
- "reference": "8d60a02dc58144a726471d16caba6870b883cdb5",
- "shasum": ""
- },
- "require": {
- "doctrine/inflector": "^1.3",
- "php": "^7.2",
- "spiral/code-style": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "psr/container": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Reactor\\": "src/",
- "Spiral\\Tests\\Reactor\\": "tests/Reactor/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Reactor: Code Scaffolding",
- "time": "2020-05-08T16:23:43+00:00"
- },
- {
- "name": "spiral/roadrunner",
- "version": "v1.8.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/roadrunner.git",
- "reference": "4d7dff992d7aef6775744f91ce2766d164f4a5da"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/roadrunner/zipball/4d7dff992d7aef6775744f91ce2766d164f4a5da",
- "reference": "4d7dff992d7aef6775744f91ce2766d164f4a5da",
- "shasum": ""
- },
- "require": {
- "ext-curl": "*",
- "ext-json": "*",
- "laminas/laminas-diactoros": "^1.3 || ^2.0",
- "php": "^7.2",
- "psr/http-factory": "^1.0",
- "psr/http-message": "^1.0",
- "spiral/goridge": "^2.4",
- "symfony/console": "^2.5.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
- },
- "require-dev": {
- "phpstan/phpstan": "~0.12"
- },
- "bin": [
- "bin/rr"
- ],
- "type": "server",
- "autoload": {
- "psr-4": {
- "Spiral\\RoadRunner\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- },
- {
- "name": "RoadRunner Community",
- "homepage": "https://github.com/spiral/roadrunner/graphs/contributors"
- }
- ],
- "description": "High-performance PHP application server, load-balancer and process manager written in Golang",
- "time": "2020-05-05T14:59:13+00:00"
- },
- {
- "name": "spiral/router",
- "version": "v1.4.6",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/router.git",
- "reference": "7b116299833ce76ff17c0ceb3af6854e455345d3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/router/zipball/7b116299833ce76ff17c0ceb3af6854e455345d3",
- "reference": "7b116299833ce76ff17c0ceb3af6854e455345d3",
- "shasum": ""
- },
- "require": {
- "cocur/slugify": "^3.1",
- "doctrine/inflector": "^1.3",
- "ext-json": "*",
- "php": "^7.2",
- "spiral/core": "^1.0",
- "spiral/hmvc": "^2.0",
- "spiral/http": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0",
- "zendframework/zend-diactoros": "^1.8"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Router\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Routes, RESTFul, URI generation, Adaptive Patterns",
- "time": "2020-05-04T10:55:31+00:00"
- },
- {
- "name": "spiral/scaffolder",
- "version": "v2.3.5",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/scaffolder.git",
- "reference": "510211485fe33d7fc8b313cf7cba27af27a201d8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/scaffolder/zipball/510211485fe33d7fc8b313cf7cba27af27a201d8",
- "reference": "510211485fe33d7fc8b313cf7cba27af27a201d8",
- "shasum": ""
- },
- "require": {
- "cocur/slugify": "^3.2",
- "php": "^7.2",
- "spiral/reactor": "^2.2.2"
- },
- "require-dev": {
- "cycle/annotated": "^2.0",
- "cycle/orm": "^1.1",
- "phpunit/phpunit": "^8.2",
- "roave/security-advisories": "dev-master",
- "spiral/boot": "^1.1",
- "spiral/code-style": "^1.0",
- "spiral/console": "^1.2",
- "spiral/core": "^1.3",
- "spiral/filters": "^1.2",
- "spiral/http": "^1.2",
- "spiral/jobs": "^2.0",
- "spiral/migrations": "^2.0",
- "spiral/prototype": "^1.0"
- },
- "type": "module",
- "autoload": {
- "psr-4": {
- "Spiral\\Scaffolder\\": "src/"
- },
- "files": [
- "functions.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- },
- {
- "name": "Valentin Vintsukevich (vvval)",
- "email": "valentin@spiralscout.com"
- }
- ],
- "description": "Spiral, Code Scaffolding module",
- "time": "2020-05-05T08:49:37+00:00"
- },
- {
- "name": "spiral/security",
- "version": "v2.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/security.git",
- "reference": "54356af0d9563ffb08a0ef269fb2a65210db9483"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/security/zipball/54356af0d9563ffb08a0ef269fb2a65210db9483",
- "reference": "54356af0d9563ffb08a0ef269fb2a65210db9483",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/core": "^1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Security\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Spiral, RBAC security layer",
- "time": "2019-10-12T10:50:49+00:00"
- },
- {
- "name": "spiral/session",
- "version": "v1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/session.git",
- "reference": "8c4b095f25f921f4275c38e604afabcc149232fd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/session/zipball/8c4b095f25f921f4275c38e604afabcc149232fd",
- "reference": "8c4b095f25f921f4275c38e604afabcc149232fd",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/core": "^1.0",
- "spiral/files": "^2.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Session\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Secure sessions over native PHP handlers",
- "time": "2019-10-11T13:08:30+00:00"
- },
- {
- "name": "spiral/snapshots",
- "version": "v1.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/snapshots.git",
- "reference": "92c3e267073c012d97abf9fab95aca72f7115f97"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/snapshots/zipball/92c3e267073c012d97abf9fab95aca72f7115f97",
- "reference": "92c3e267073c012d97abf9fab95aca72f7115f97",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Snapshots\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Exception Snapshot Manager",
- "time": "2019-04-23T14:20:30+00:00"
- },
- {
- "name": "spiral/stempler",
- "version": "v2.2.9",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/stempler.git",
- "reference": "72d22fc397a6ebfacbe60d64fcfa0977bf047c9b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/stempler/zipball/72d22fc397a6ebfacbe60d64fcfa0977bf047c9b",
- "reference": "72d22fc397a6ebfacbe60d64fcfa0977bf047c9b",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "myclabs/deep-copy": "^1.9",
- "php": "^7.2"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0",
- "spiral/dumper": "^1.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "functions.php"
- ],
- "psr-4": {
- "Spiral\\Stempler\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Stempler, HTML markup processor and template engine framework",
- "time": "2020-05-07T14:21:46+00:00"
- },
- {
- "name": "spiral/stempler-bridge",
- "version": "v1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/stempler-bridge.git",
- "reference": "9a84c5acd7b30416ddf753ee4e38cbd13a47b996"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/stempler-bridge/zipball/9a84c5acd7b30416ddf753ee4e38cbd13a47b996",
- "reference": "9a84c5acd7b30416ddf753ee4e38cbd13a47b996",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/framework": "^2.0",
- "spiral/stempler": "^2.0",
- "spiral/views": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0",
- "spiral/dumper": "^1.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "functions.php"
- ],
- "psr-4": {
- "Spiral\\Stempler\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Spiral Framework: Stempler Adapter",
- "time": "2020-04-14T14:13:35+00:00"
- },
- {
- "name": "spiral/streams",
- "version": "v1.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/streams.git",
- "reference": "3caefe12cd2a4bcbccd65841884dc0330df44d97"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/streams/zipball/3caefe12cd2a4bcbccd65841884dc0330df44d97",
- "reference": "3caefe12cd2a4bcbccd65841884dc0330df44d97",
- "shasum": ""
- },
- "require": {
- "php": "^7.1",
- "psr/http-message": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/files": "^2.0",
- "zendframework/zend-diactoros": "^1.8"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Streams\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "PSR-7 Stream Wrappers",
- "time": "2019-04-30T11:29:47+00:00"
- },
- {
- "name": "spiral/tokenizer",
- "version": "v2.1.8",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/tokenizer.git",
- "reference": "5387797621402f469b240d5c0121a317fb57155e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/tokenizer/zipball/5387797621402f469b240d5c0121a317fb57155e",
- "reference": "5387797621402f469b240d5c0121a317fb57155e",
- "shasum": ""
- },
- "require": {
- "php": "^7.1",
- "spiral/core": "^1.0",
- "spiral/logger": "^1.0",
- "symfony/finder": "^4.1|^5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~7.0",
- "squizlabs/php_codesniffer": "^3.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Tokenizer\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Static Analysis: Class and Invocation locators",
- "time": "2019-12-11T19:29:38+00:00"
- },
- {
- "name": "spiral/toolkit",
- "version": "v1.1.14",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/toolkit.git",
- "reference": "a96505799eadd3f939a8dfdfce9b9dc756a351c2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/toolkit/zipball/a96505799eadd3f939a8dfdfce9b9dc756a351c2",
- "reference": "a96505799eadd3f939a8dfdfce9b9dc756a351c2",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/stempler-bridge": "^1.0"
- },
- "type": "library",
- "extra": {
- "release-url": "https://github.com/spiral/toolkit/releases/download/{tag}/{file}",
- "publish": {
- "release(toolkit.zip):@public/toolkit/": "replace:readonly",
- "release(autocomplete.zip):@public/toolkit/autocomplete/": "replace:readonly",
- "release(qrcode.zip):@public/toolkit/qrcode/": "replace:readonly",
- "release(keeper.zip):@public/keeper/": "replace:readonly"
- }
- },
- "autoload": {
- "psr-4": {
- "Spiral\\Toolkit\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Form serialization toolkit for Spiral Framework",
- "time": "2020-05-08T12:47:08+00:00"
- },
- {
- "name": "spiral/translator",
- "version": "v1.3.1",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/translator.git",
- "reference": "8cacaa77ef0c3d2bdbafe0385b354acc7e339c67"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/translator/zipball/8cacaa77ef0c3d2bdbafe0385b354acc7e339c67",
- "reference": "8cacaa77ef0c3d2bdbafe0385b354acc7e339c67",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/core": "^1.0",
- "spiral/logger": "^1.0",
- "spiral/tokenizer": "^2.0",
- "symfony/translation": "^4.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "functions.php"
- ],
- "psr-4": {
- "Spiral\\Translator\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Translator, Static Analysis and Auto-Indexation",
- "time": "2019-11-06T09:32:16+00:00"
- },
- {
- "name": "spiral/validation",
- "version": "v1.4.3",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/validation.git",
- "reference": "7c1c9c136c7ddbd89ea58fc4c680b086884fd04c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/validation/zipball/7c1c9c136c7ddbd89ea58fc4c680b086884fd04c",
- "reference": "7c1c9c136c7ddbd89ea58fc4c680b086884fd04c",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "php": "^7.2",
- "spiral/core": "^1.0",
- "spiral/files": "^2.0",
- "spiral/streams": "^1.0",
- "spiral/translator": "^1.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0",
- "zendframework/zend-diactoros": "^1.8"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Validation\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Anton Titov / Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "Nested validation, Checkers, Conditional Validation",
- "time": "2020-04-14T07:07:02+00:00"
- },
- {
- "name": "spiral/views",
- "version": "v1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/spiral/views.git",
- "reference": "051a13c66a3bba09a12205d6b943b460d657611d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/spiral/views/zipball/051a13c66a3bba09a12205d6b943b460d657611d",
- "reference": "051a13c66a3bba09a12205d6b943b460d657611d",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "spiral/core": "^1.0",
- "spiral/files": "^2.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.1",
- "phpunit/phpunit": "~7.0",
- "spiral/code-style": "^1.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Spiral\\Views\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Wolfy-J",
- "email": "wolfy.jd@gmail.com"
- }
- ],
- "description": "View Manager and Rendering Engine selector",
- "time": "2019-10-16T11:20:17+00:00"
- },
- {
- "name": "squizlabs/php_codesniffer",
- "version": "3.5.5",
- "source": {
- "type": "git",
- "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
- "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/73e2e7f57d958e7228fce50dc0c61f58f017f9f6",
- "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6",
- "shasum": ""
- },
- "require": {
- "ext-simplexml": "*",
- "ext-tokenizer": "*",
- "ext-xmlwriter": "*",
- "php": ">=5.4.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
- },
- "bin": [
- "bin/phpcs",
- "bin/phpcbf"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.x-dev"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Greg Sherwood",
- "role": "lead"
- }
- ],
- "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
- "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
- "keywords": [
- "phpcs",
- "standards"
- ],
- "time": "2020-04-17T01:09:41+00:00"
- },
- {
- "name": "symfony/console",
- "version": "v5.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/console.git",
- "reference": "5fa1caadc8cdaa17bcfb25219f3b53fe294a9935"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/5fa1caadc8cdaa17bcfb25219f3b53fe294a9935",
- "reference": "5fa1caadc8cdaa17bcfb25219f3b53fe294a9935",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php73": "^1.8",
- "symfony/service-contracts": "^1.1|^2"
- },
- "conflict": {
- "symfony/dependency-injection": "<4.4",
- "symfony/event-dispatcher": "<4.4",
- "symfony/lock": "<4.4",
- "symfony/process": "<4.4"
- },
- "provide": {
- "psr/log-implementation": "1.0"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "^4.4|^5.0",
- "symfony/dependency-injection": "^4.4|^5.0",
- "symfony/event-dispatcher": "^4.4|^5.0",
- "symfony/lock": "^4.4|^5.0",
- "symfony/process": "^4.4|^5.0",
- "symfony/var-dumper": "^4.4|^5.0"
- },
- "suggest": {
- "psr/log": "For using the console logger",
- "symfony/event-dispatcher": "",
- "symfony/lock": "",
- "symfony/process": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "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": "Symfony Console Component",
- "homepage": "https://symfony.com",
- "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": "2020-03-30T11:42:42+00:00"
- },
- {
- "name": "symfony/event-dispatcher",
- "version": "v5.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "24f40d95385774ed5c71dbf014edd047e2f2f3dc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/24f40d95385774ed5c71dbf014edd047e2f2f3dc",
- "reference": "24f40d95385774ed5c71dbf014edd047e2f2f3dc",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5",
- "symfony/event-dispatcher-contracts": "^2"
- },
- "conflict": {
- "symfony/dependency-injection": "<4.4"
- },
- "provide": {
- "psr/event-dispatcher-implementation": "1.0",
- "symfony/event-dispatcher-implementation": "2.0"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "^4.4|^5.0",
- "symfony/dependency-injection": "^4.4|^5.0",
- "symfony/expression-language": "^4.4|^5.0",
- "symfony/http-foundation": "^4.4|^5.0",
- "symfony/service-contracts": "^1.1|^2",
- "symfony/stopwatch": "^4.4|^5.0"
- },
- "suggest": {
- "symfony/dependency-injection": "",
- "symfony/http-kernel": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "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": "Symfony EventDispatcher Component",
- "homepage": "https://symfony.com",
- "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": "2020-03-27T16:56:45+00:00"
- },
- {
- "name": "symfony/event-dispatcher-contracts",
- "version": "v2.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/event-dispatcher-contracts.git",
- "reference": "af23c2584d4577d54661c434446fb8fbed6025dd"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/af23c2584d4577d54661c434446fb8fbed6025dd",
- "reference": "af23c2584d4577d54661c434446fb8fbed6025dd",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5",
- "psr/event-dispatcher": "^1"
- },
- "suggest": {
- "symfony/event-dispatcher-implementation": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Contracts\\EventDispatcher\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Generic abstractions related to dispatching event",
- "homepage": "https://symfony.com",
- "keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
- ],
- "time": "2019-11-18T17:27:11+00:00"
- },
- {
- "name": "symfony/filesystem",
- "version": "v5.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/filesystem.git",
- "reference": "7cd0dafc4353a0f62e307df90b48466379c8cc91"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/7cd0dafc4353a0f62e307df90b48466379c8cc91",
- "reference": "7cd0dafc4353a0f62e307df90b48466379c8cc91",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5",
- "symfony/polyfill-ctype": "~1.8"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Filesystem\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony Filesystem Component",
- "homepage": "https://symfony.com",
- "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": "2020-04-12T14:40:17+00:00"
- },
- {
- "name": "symfony/finder",
- "version": "v5.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/finder.git",
- "reference": "600a52c29afc0d1caa74acbec8d3095ca7e9910d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/600a52c29afc0d1caa74acbec8d3095ca7e9910d",
- "reference": "600a52c29afc0d1caa74acbec8d3095ca7e9910d",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "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": "Symfony Finder Component",
- "homepage": "https://symfony.com",
- "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": "2020-03-27T16:56:45+00:00"
- },
- {
- "name": "symfony/options-resolver",
- "version": "v5.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/options-resolver.git",
- "reference": "3707e3caeff2b797c0bfaadd5eba723dd44e6bf1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/options-resolver/zipball/3707e3caeff2b797c0bfaadd5eba723dd44e6bf1",
- "reference": "3707e3caeff2b797c0bfaadd5eba723dd44e6bf1",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\OptionsResolver\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony OptionsResolver Component",
- "homepage": "https://symfony.com",
- "keywords": [
- "config",
- "configuration",
- "options"
- ],
- "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": "2020-04-06T10:40:56+00:00"
- },
- {
- "name": "symfony/polyfill-ctype",
- "version": "v1.15.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/4719fa9c18b0464d399f1a63bf624b42b6fa8d14",
- "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3"
- },
- "suggest": {
- "ext-ctype": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.15-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Ctype\\": ""
- },
- "files": [
- "bootstrap.php"
- ]
- },
- "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"
- ],
- "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": "2020-02-27T09:26:54+00:00"
- },
- {
- "name": "symfony/polyfill-mbstring",
- "version": "v1.15.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/81ffd3a9c6d707be22e3012b827de1c9775fc5ac",
- "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3"
- },
- "suggest": {
- "ext-mbstring": "For best performance"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.15-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
- },
- "files": [
- "bootstrap.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": "Symfony polyfill for the Mbstring extension",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "mbstring",
- "polyfill",
- "portable",
- "shim"
- ],
- "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": "2020-03-09T19:04:49+00:00"
- },
- {
- "name": "symfony/polyfill-php70",
- "version": "v1.15.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php70.git",
- "reference": "2a18e37a489803559284416df58c71ccebe50bf0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/2a18e37a489803559284416df58c71ccebe50bf0",
- "reference": "2a18e37a489803559284416df58c71ccebe50bf0",
- "shasum": ""
- },
- "require": {
- "paragonie/random_compat": "~1.0|~2.0|~9.99",
- "php": ">=5.3.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.15-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Php70\\": ""
- },
- "files": [
- "bootstrap.php"
- ],
- "classmap": [
- "Resources/stubs"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "time": "2020-02-27T09:26:54+00:00"
- },
- {
- "name": "symfony/polyfill-php72",
- "version": "v1.15.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "37b0976c78b94856543260ce09b460a7bc852747"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/37b0976c78b94856543260ce09b460a7bc852747",
- "reference": "37b0976c78b94856543260ce09b460a7bc852747",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.15-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Php72\\": ""
- },
- "files": [
- "bootstrap.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": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "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": "2020-02-27T09:26:54+00:00"
- },
- {
- "name": "symfony/polyfill-php73",
- "version": "v1.15.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php73.git",
- "reference": "0f27e9f464ea3da33cbe7ca3bdf4eb66def9d0f7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f27e9f464ea3da33cbe7ca3bdf4eb66def9d0f7",
- "reference": "0f27e9f464ea3da33cbe7ca3bdf4eb66def9d0f7",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.15-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Php73\\": ""
- },
- "files": [
- "bootstrap.php"
- ],
- "classmap": [
- "Resources/stubs"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "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": "2020-02-27T09:26:54+00:00"
- },
- {
- "name": "symfony/process",
- "version": "v5.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "3179f68dff5bad14d38c4114a1dab98030801fd7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/3179f68dff5bad14d38c4114a1dab98030801fd7",
- "reference": "3179f68dff5bad14d38c4114a1dab98030801fd7",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Process\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony Process Component",
- "homepage": "https://symfony.com",
- "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": "2020-04-15T15:59:10+00:00"
- },
- {
- "name": "symfony/service-contracts",
- "version": "v2.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/service-contracts.git",
- "reference": "144c5e51266b281231e947b51223ba14acf1a749"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
- "reference": "144c5e51266b281231e947b51223ba14acf1a749",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5",
- "psr/container": "^1.0"
- },
- "suggest": {
- "symfony/service-implementation": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Contracts\\Service\\": ""
- }
- },
- "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"
- ],
- "time": "2019-11-18T17:27:11+00:00"
- },
- {
- "name": "symfony/stopwatch",
- "version": "v5.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/stopwatch.git",
- "reference": "a1d86d30d4522423afc998f32404efa34fcf5a73"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/a1d86d30d4522423afc998f32404efa34fcf5a73",
- "reference": "a1d86d30d4522423afc998f32404efa34fcf5a73",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5",
- "symfony/service-contracts": "^1.0|^2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Stopwatch\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony Stopwatch Component",
- "homepage": "https://symfony.com",
- "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": "2020-03-27T16:56:45+00:00"
- },
- {
- "name": "symfony/translation",
- "version": "v4.4.8",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/translation.git",
- "reference": "8272bbd2b7e220ef812eba2a2b30068a5c64b191"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/8272bbd2b7e220ef812eba2a2b30068a5c64b191",
- "reference": "8272bbd2b7e220ef812eba2a2b30068a5c64b191",
- "shasum": ""
- },
- "require": {
- "php": "^7.1.3",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/translation-contracts": "^1.1.6|^2"
- },
- "conflict": {
- "symfony/config": "<3.4",
- "symfony/dependency-injection": "<3.4",
- "symfony/http-kernel": "<4.4",
- "symfony/yaml": "<3.4"
- },
- "provide": {
- "symfony/translation-implementation": "1.0"
- },
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "^3.4|^4.0|^5.0",
- "symfony/console": "^3.4|^4.0|^5.0",
- "symfony/dependency-injection": "^3.4|^4.0|^5.0",
- "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
- "symfony/http-kernel": "^4.4",
- "symfony/intl": "^3.4|^4.0|^5.0",
- "symfony/service-contracts": "^1.1.2|^2",
- "symfony/yaml": "^3.4|^4.0|^5.0"
- },
- "suggest": {
- "psr/log-implementation": "To use logging capability in translator",
- "symfony/config": "",
- "symfony/yaml": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.4-dev"
- }
- },
- "autoload": {
- "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": "Symfony Translation Component",
- "homepage": "https://symfony.com",
- "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": "2020-04-12T16:45:36+00:00"
- },
- {
- "name": "symfony/translation-contracts",
- "version": "v2.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/translation-contracts.git",
- "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed",
- "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed",
- "shasum": ""
- },
- "require": {
- "php": "^7.2.5"
- },
- "suggest": {
- "symfony/translation-implementation": ""
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Contracts\\Translation\\": ""
- }
- },
- "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"
- ],
- "time": "2019-11-18T17:27:11+00:00"
- },
- {
- "name": "vlucas/phpdotenv",
- "version": "v3.6.4",
- "source": {
- "type": "git",
- "url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "10d3f853fdf1f3a6b3c7ea0c4620d2f699713db5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/10d3f853fdf1f3a6b3c7ea0c4620d2f699713db5",
- "reference": "10d3f853fdf1f3a6b3c7ea0c4620d2f699713db5",
- "shasum": ""
- },
- "require": {
- "php": "^5.4 || ^7.0 || ^8.0",
- "phpoption/phpoption": "^1.5",
- "symfony/polyfill-ctype": "^1.9"
- },
- "require-dev": {
- "ext-filter": "*",
- "ext-pcre": "*",
- "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
- },
- "suggest": {
- "ext-filter": "Required to use the boolean validator.",
- "ext-pcre": "Required to use most of the library."
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.6-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Dotenv\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Graham Campbell",
- "email": "graham@alt-three.com",
- "homepage": "https://gjcampbell.co.uk/"
- },
- {
- "name": "Vance Lucas",
- "email": "vance@vancelucas.com",
- "homepage": "https://vancelucas.com/"
- }
- ],
- "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
- "keywords": [
- "dotenv",
- "env",
- "environment"
- ],
- "funding": [
- {
- "url": "https://github.com/GrahamCampbell",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
- "type": "tidelift"
- }
- ],
- "time": "2020-05-02T13:46:13+00:00"
- }
- ],
- "packages-dev": [
- {
- "name": "phar-io/manifest",
- "version": "1.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/phar-io/manifest.git",
- "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
- "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-phar": "*",
- "phar-io/version": "^2.0",
- "php": "^5.6 || ^7.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.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)",
- "time": "2018-07-08T19:23:20+00:00"
- },
- {
- "name": "phar-io/version",
- "version": "2.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/phar-io/version.git",
- "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
- "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
- "shasum": ""
- },
- "require": {
- "php": "^5.6 || ^7.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",
- "time": "2018-07-08T19:19:57+00:00"
- },
- {
- "name": "phpdocumentor/reflection-common",
- "version": "2.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
- "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
- "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "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"
- ],
- "time": "2020-04-27T09:25:28+00:00"
- },
- {
- "name": "phpdocumentor/reflection-docblock",
- "version": "5.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
- "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
- "shasum": ""
- },
- "require": {
- "ext-filter": "^7.1",
- "php": "^7.2",
- "phpdocumentor/reflection-common": "^2.0",
- "phpdocumentor/type-resolver": "^1.0",
- "webmozart/assert": "^1"
- },
- "require-dev": {
- "doctrine/instantiator": "^1",
- "mockery/mockery": "^1"
- },
- "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.",
- "time": "2020-02-22T12:28:44+00:00"
- },
- {
- "name": "phpdocumentor/type-resolver",
- "version": "1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "7462d5f123dfc080dfdf26897032a6513644fc95"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95",
- "reference": "7462d5f123dfc080dfdf26897032a6513644fc95",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "phpdocumentor/reflection-common": "^2.0"
- },
- "require-dev": {
- "ext-tokenizer": "^7.2",
- "mockery/mockery": "~1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "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",
- "time": "2020-02-18T18:59:58+00:00"
- },
- {
- "name": "phpspec/prophecy",
- "version": "v1.10.3",
- "source": {
- "type": "git",
- "url": "https://github.com/phpspec/prophecy.git",
- "reference": "451c3cd1418cf640de218914901e51b064abb093"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
- "reference": "451c3cd1418cf640de218914901e51b064abb093",
- "shasum": ""
- },
- "require": {
- "doctrine/instantiator": "^1.0.2",
- "php": "^5.3|^7.0",
- "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
- "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
- "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
- },
- "require-dev": {
- "phpspec/phpspec": "^2.5 || ^3.2",
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.10.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Prophecy\\": "src/Prophecy"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Konstantin Kudryashov",
- "email": "ever.zet@gmail.com",
- "homepage": "http://everzet.com"
- },
- {
- "name": "Marcello Duarte",
- "email": "marcello.duarte@gmail.com"
- }
- ],
- "description": "Highly opinionated mocking framework for PHP 5.3+",
- "homepage": "https://github.com/phpspec/prophecy",
- "keywords": [
- "Double",
- "Dummy",
- "fake",
- "mock",
- "spy",
- "stub"
- ],
- "time": "2020-03-05T15:02:03+00:00"
- },
- {
- "name": "phpunit/php-code-coverage",
- "version": "7.0.10",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
- "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-xmlwriter": "*",
- "php": "^7.2",
- "phpunit/php-file-iterator": "^2.0.2",
- "phpunit/php-text-template": "^1.2.1",
- "phpunit/php-token-stream": "^3.1.1",
- "sebastian/code-unit-reverse-lookup": "^1.0.1",
- "sebastian/environment": "^4.2.2",
- "sebastian/version": "^2.0.1",
- "theseer/tokenizer": "^1.1.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^8.2.2"
- },
- "suggest": {
- "ext-xdebug": "^2.7.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "7.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "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"
- ],
- "time": "2019-11-20T13:55:58+00:00"
- },
- {
- "name": "phpunit/php-file-iterator",
- "version": "2.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "050bedf145a257b1ff02746c31894800e5122946"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
- "reference": "050bedf145a257b1ff02746c31894800e5122946",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.1"
- },
- "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": "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"
- ],
- "time": "2018-09-13T20:33:42+00:00"
- },
- {
- "name": "phpunit/php-text-template",
- "version": "1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
- "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
- "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3"
- },
- "type": "library",
- "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"
- ],
- "time": "2015-06-21T13:50:34+00:00"
- },
- {
- "name": "phpunit/php-timer",
- "version": "2.1.2",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
- "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.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": "Utility class for timing",
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
- "keywords": [
- "timer"
- ],
- "time": "2019-06-07T04:22:29+00:00"
- },
- {
- "name": "phpunit/php-token-stream",
- "version": "3.1.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-token-stream.git",
- "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
- "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
- "shasum": ""
- },
- "require": {
- "ext-tokenizer": "*",
- "php": "^7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.0"
- },
- "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"
- }
- ],
- "description": "Wrapper around PHP's tokenizer extension.",
- "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
- "keywords": [
- "tokenizer"
- ],
- "time": "2019-09-17T06:23:10+00:00"
- },
- {
- "name": "phpunit/phpunit",
- "version": "8.5.4",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "8474e22d7d642f665084ba5ec780626cbd1efd23"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8474e22d7d642f665084ba5ec780626cbd1efd23",
- "reference": "8474e22d7d642f665084ba5ec780626cbd1efd23",
- "shasum": ""
- },
- "require": {
- "doctrine/instantiator": "^1.2.0",
- "ext-dom": "*",
- "ext-json": "*",
- "ext-libxml": "*",
- "ext-mbstring": "*",
- "ext-xml": "*",
- "ext-xmlwriter": "*",
- "myclabs/deep-copy": "^1.9.1",
- "phar-io/manifest": "^1.0.3",
- "phar-io/version": "^2.0.1",
- "php": "^7.2",
- "phpspec/prophecy": "^1.8.1",
- "phpunit/php-code-coverage": "^7.0.7",
- "phpunit/php-file-iterator": "^2.0.2",
- "phpunit/php-text-template": "^1.2.1",
- "phpunit/php-timer": "^2.1.2",
- "sebastian/comparator": "^3.0.2",
- "sebastian/diff": "^3.0.2",
- "sebastian/environment": "^4.2.2",
- "sebastian/exporter": "^3.1.1",
- "sebastian/global-state": "^3.0.0",
- "sebastian/object-enumerator": "^3.0.3",
- "sebastian/resource-operations": "^2.0.1",
- "sebastian/type": "^1.1.3",
- "sebastian/version": "^2.0.1"
- },
- "require-dev": {
- "ext-pdo": "*"
- },
- "suggest": {
- "ext-soap": "*",
- "ext-xdebug": "*",
- "phpunit/php-invoker": "^2.0.0"
- },
- "bin": [
- "phpunit"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "8.5-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": "The PHP Unit Testing framework.",
- "homepage": "https://phpunit.de/",
- "keywords": [
- "phpunit",
- "testing",
- "xunit"
- ],
- "funding": [
- {
- "url": "https://phpunit.de/donate.html",
- "type": "custom"
- },
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-04-23T04:39:42+00:00"
- },
- {
- "name": "sebastian/code-unit-reverse-lookup",
- "version": "1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
- "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
- "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
- "shasum": ""
- },
- "require": {
- "php": "^5.6 || ^7.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^5.7 || ^6.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-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/",
- "time": "2017-03-04T06:30:41+00:00"
- },
- {
- "name": "sebastian/comparator",
- "version": "3.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
- "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
- "shasum": ""
- },
- "require": {
- "php": "^7.1",
- "sebastian/diff": "^3.0",
- "sebastian/exporter": "^3.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.1"
- },
- "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": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
- },
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@2bepublished.at"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Provides the functionality to compare PHP values for equality",
- "homepage": "https://github.com/sebastianbergmann/comparator",
- "keywords": [
- "comparator",
- "compare",
- "equality"
- ],
- "time": "2018-07-12T15:12:46+00:00"
- },
- {
- "name": "sebastian/diff",
- "version": "3.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
- "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.5 || ^8.0",
- "symfony/process": "^2 || ^3.3 || ^4"
- },
- "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": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Diff implementation",
- "homepage": "https://github.com/sebastianbergmann/diff",
- "keywords": [
- "diff",
- "udiff",
- "unidiff",
- "unified diff"
- ],
- "time": "2019-02-04T06:01:07+00:00"
- },
- {
- "name": "sebastian/environment",
- "version": "4.2.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
- "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.5"
- },
- "suggest": {
- "ext-posix": "*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.2-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Provides functionality to handle HHVM/PHP environments",
- "homepage": "http://www.github.com/sebastianbergmann/environment",
- "keywords": [
- "Xdebug",
- "environment",
- "hhvm"
- ],
- "time": "2019-11-20T08:46:58+00:00"
- },
- {
- "name": "sebastian/exporter",
- "version": "3.1.2",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
- "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
- "shasum": ""
- },
- "require": {
- "php": "^7.0",
- "sebastian/recursion-context": "^3.0"
- },
- "require-dev": {
- "ext-mbstring": "*",
- "phpunit/phpunit": "^6.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.1.x-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": "http://www.github.com/sebastianbergmann/exporter",
- "keywords": [
- "export",
- "exporter"
- ],
- "time": "2019-09-14T09:02:43+00:00"
- },
- {
- "name": "sebastian/global-state",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
- "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
- "shasum": ""
- },
- "require": {
- "php": "^7.2",
- "sebastian/object-reflector": "^1.1.1",
- "sebastian/recursion-context": "^3.0"
- },
- "require-dev": {
- "ext-dom": "*",
- "phpunit/phpunit": "^8.0"
- },
- "suggest": {
- "ext-uopz": "*"
- },
- "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": "Snapshotting of global state",
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
- "keywords": [
- "global state"
- ],
- "time": "2019-02-01T05:30:01+00:00"
- },
- {
- "name": "sebastian/object-enumerator",
- "version": "3.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/object-enumerator.git",
- "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
- "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
- "shasum": ""
- },
- "require": {
- "php": "^7.0",
- "sebastian/object-reflector": "^1.1.1",
- "sebastian/recursion-context": "^3.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0.x-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/",
- "time": "2017-08-03T12:35:26+00:00"
- },
- {
- "name": "sebastian/object-reflector",
- "version": "1.1.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/object-reflector.git",
- "reference": "773f97c67f28de00d397be301821b06708fca0be"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
- "reference": "773f97c67f28de00d397be301821b06708fca0be",
- "shasum": ""
- },
- "require": {
- "php": "^7.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1-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/",
- "time": "2017-03-29T09:07:27+00:00"
- },
- {
- "name": "sebastian/recursion-context",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
- "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
- "shasum": ""
- },
- "require": {
- "php": "^7.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0.x-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
- }
- ],
- "description": "Provides functionality to recursively process PHP variables",
- "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
- "time": "2017-03-03T06:23:57+00:00"
- },
- {
- "name": "sebastian/resource-operations",
- "version": "2.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/resource-operations.git",
- "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
- "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
- "shasum": ""
- },
- "require": {
- "php": "^7.1"
- },
- "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": "Provides a list of PHP built-in functions that operate on resources",
- "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
- "time": "2018-10-04T04:07:39+00:00"
- },
- {
- "name": "sebastian/type",
- "version": "1.1.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/type.git",
- "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
- "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
- "shasum": ""
- },
- "require": {
- "php": "^7.2"
- },
- "require-dev": {
- "phpunit/phpunit": "^8.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Collection of value objects that represent the types of the PHP type system",
- "homepage": "https://github.com/sebastianbergmann/type",
- "time": "2019-07-02T08:10:15+00:00"
- },
- {
- "name": "sebastian/version",
- "version": "2.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/version.git",
- "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
- "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
- "shasum": ""
- },
- "require": {
- "php": ">=5.6"
- },
- "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": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
- "homepage": "https://github.com/sebastianbergmann/version",
- "time": "2016-10-03T07:35:21+00:00"
- },
- {
- "name": "theseer/tokenizer",
- "version": "1.1.3",
- "source": {
- "type": "git",
- "url": "https://github.com/theseer/tokenizer.git",
- "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
- "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-tokenizer": "*",
- "ext-xmlwriter": "*",
- "php": "^7.0"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
- }
- ],
- "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
- "time": "2019-06-13T22:48:21+00:00"
- },
- {
- "name": "webmozart/assert",
- "version": "1.8.0",
- "source": {
- "type": "git",
- "url": "https://github.com/webmozart/assert.git",
- "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
- "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
- "shasum": ""
- },
- "require": {
- "php": "^5.3.3 || ^7.0",
- "symfony/polyfill-ctype": "^1.8"
- },
- "conflict": {
- "vimeo/psalm": "<3.9.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.8.36 || ^7.5.13"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Webmozart\\Assert\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
- }
- ],
- "description": "Assertions to validate method input/output with nice error messages.",
- "keywords": [
- "assert",
- "check",
- "validate"
- ],
- "time": "2020-04-18T12:12:48+00:00"
- }
- ],
- "aliases": [],
- "minimum-stability": "stable",
- "stability-flags": {
- "spiral/keeper": 15
- },
- "prefer-stable": false,
- "prefer-lowest": false,
- "platform": {
- "php": ">=7.2"
- },
- "platform-dev": [],
- "plugin-api-version": "1.1.0"
-}