TelegramApiServer/composer.lock

4141 lines
152 KiB
Plaintext
Raw Normal View History

2019-01-23 13:30:58 +01:00
{
"_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"
],
2020-11-28 23:50:49 +01:00
"content-hash": "b43ec2deacbaeba571816b501d79e0b0",
2019-01-23 13:30:58 +01:00
"packages": [
{
"name": "amphp/amp",
2020-11-04 09:29:22 +01:00
"version": "v2.5.1",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/amp.git",
2020-11-04 09:29:22 +01:00
"reference": "ecdc3c476b3ccff02f8e5d5bcc04f7ccfd18751c"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2020-11-04 09:29:22 +01:00
"url": "https://api.github.com/repos/amphp/amp/zipball/ecdc3c476b3ccff02f8e5d5bcc04f7ccfd18751c",
"reference": "ecdc3c476b3ccff02f8e5d5bcc04f7ccfd18751c",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
"php": ">=7"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
2019-01-23 13:30:58 +01:00
"amphp/phpunit-util": "^1",
2019-06-05 23:48:26 +02:00
"ext-json": "*",
"jetbrains/phpstorm-stubs": "^2019.3",
2019-11-08 23:30:12 +01:00
"phpunit/phpunit": "^6.0.9 | ^7",
2020-08-07 00:48:32 +02:00
"psalm/phar": "^3.11@dev",
"react/promise": "^2"
2019-01-23 13:30:58 +01:00
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
2019-01-23 13:30:58 +01:00
}
},
"autoload": {
"psr-4": {
"Amp\\": "lib"
},
"files": [
"lib/functions.php",
"lib/Internal/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
2019-08-15 22:17:49 +02:00
},
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
2019-01-23 13:30:58 +01:00
}
],
"description": "A non-blocking concurrency framework for PHP applications.",
"homepage": "http://amphp.org/amp",
"keywords": [
"async",
"asynchronous",
"awaitable",
"concurrency",
"event",
"event-loop",
"future",
"non-blocking",
"promise"
],
2020-10-31 23:09:44 +01:00
"support": {
"irc": "irc://irc.freenode.org/amphp",
"issues": "https://github.com/amphp/amp/issues",
2020-11-04 09:29:22 +01:00
"source": "https://github.com/amphp/amp/tree/v2.5.1"
2020-10-31 23:09:44 +01:00
},
2020-08-07 00:48:32 +02:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
2020-11-04 09:29:22 +01:00
"time": "2020-11-03T16:23:45+00:00"
2019-01-23 13:30:58 +01:00
},
{
"name": "amphp/byte-stream",
2020-08-07 00:48:32 +02:00
"version": "v1.8.0",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/byte-stream.git",
2020-08-07 00:48:32 +02:00
"reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2020-08-07 00:48:32 +02:00
"url": "https://api.github.com/repos/amphp/byte-stream/zipball/f0c20cf598a958ba2aa8c6e5a71c697d652c7088",
"reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
2020-08-07 00:48:32 +02:00
"amphp/amp": "^2",
"php": ">=7.1"
2019-01-23 13:30:58 +01:00
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
2020-08-07 00:48:32 +02:00
"amphp/phpunit-util": "^1.4",
2019-01-23 13:30:58 +01:00
"friendsofphp/php-cs-fixer": "^2.3",
"jetbrains/phpstorm-stubs": "^2019.3",
"phpunit/phpunit": "^6 || ^7 || ^8",
2020-08-07 00:48:32 +02:00
"psalm/phar": "^3.11.4"
2019-01-23 13:30:58 +01:00
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
2019-01-23 13:30:58 +01:00
"autoload": {
"psr-4": {
"Amp\\ByteStream\\": "lib"
},
"files": [
"lib/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
2019-08-15 22:17:49 +02:00
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
2019-01-23 13:30:58 +01:00
}
],
"description": "A stream abstraction to make working with non-blocking I/O simple.",
"homepage": "http://amphp.org/byte-stream",
"keywords": [
"amp",
"amphp",
"async",
"io",
"non-blocking",
"stream"
],
2020-10-31 23:09:44 +01:00
"support": {
"irc": "irc://irc.freenode.org/amphp",
"issues": "https://github.com/amphp/byte-stream/issues",
"source": "https://github.com/amphp/byte-stream/tree/master"
},
2020-08-07 00:48:32 +02:00
"time": "2020-06-29T18:35:05+00:00"
2019-01-23 13:30:58 +01:00
},
{
"name": "amphp/cache",
2020-07-01 21:28:54 +02:00
"version": "v1.4.0",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/cache.git",
2020-07-01 21:28:54 +02:00
"reference": "e7bccc526fc2a555d59e6ee8380eeb39a95c0835"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2020-07-01 21:28:54 +02:00
"url": "https://api.github.com/repos/amphp/cache/zipball/e7bccc526fc2a555d59e6ee8380eeb39a95c0835",
"reference": "e7bccc526fc2a555d59e6ee8380eeb39a95c0835",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
2020-07-01 21:28:54 +02:00
"amphp/serialization": "^1",
"amphp/sync": "^1.2",
"php": ">=7.1"
},
"conflict": {
"amphp/file": "<0.2 || >=2"
2019-01-23 13:30:58 +01:00
},
"require-dev": {
2020-07-01 21:28:54 +02:00
"amphp/file": "^1",
2019-11-08 23:30:12 +01:00
"amphp/php-cs-fixer-config": "dev-master",
2020-07-01 21:28:54 +02:00
"amphp/phpunit-util": "^1.1",
"phpunit/phpunit": "^6 | ^7 | ^8 | ^9",
"vimeo/psalm": "^3.11@dev"
2019-01-23 13:30:58 +01:00
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Cache\\": "lib"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
}
],
"description": "A promise-aware caching API for Amp.",
"homepage": "https://github.com/amphp/cache",
2020-10-31 23:09:44 +01:00
"support": {
"irc": "irc://irc.freenode.org/amphp",
"issues": "https://github.com/amphp/cache/issues",
"source": "https://github.com/amphp/cache/tree/v1.4.0"
},
2020-07-01 21:28:54 +02:00
"time": "2020-04-19T16:10:08+00:00"
2019-01-23 13:30:58 +01:00
},
{
"name": "amphp/dns",
2020-08-07 00:48:32 +02:00
"version": "v1.2.3",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/dns.git",
2020-08-07 00:48:32 +02:00
"reference": "852292532294d7972c729a96b49756d781f7c59d"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2020-08-07 00:48:32 +02:00
"url": "https://api.github.com/repos/amphp/dns/zipball/852292532294d7972c729a96b49756d781f7c59d",
"reference": "852292532294d7972c729a96b49756d781f7c59d",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"amphp/byte-stream": "^1.1",
"amphp/cache": "^1.2",
"amphp/parser": "^1",
"amphp/windows-registry": "^0.3",
"daverandom/libdns": "^2.0.1",
"ext-filter": "*",
2019-12-25 23:51:20 +01:00
"ext-json": "*",
2019-01-23 13:30:58 +01:00
"php": ">=7.0"
},
"require-dev": {
2019-02-04 21:19:11 +01:00
"amphp/php-cs-fixer-config": "dev-master",
2019-01-23 13:30:58 +01:00
"amphp/phpunit-util": "^1",
2020-07-01 21:28:54 +02:00
"phpunit/phpunit": "^6 || ^7 || ^8 || ^9"
2019-01-23 13:30:58 +01:00
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Dns\\": "lib"
},
"files": [
"lib/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
2019-12-25 23:51:20 +01:00
"name": "Chris Wright",
"email": "addr@daverandom.com"
2019-01-23 13:30:58 +01:00
},
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
2019-12-25 23:51:20 +01:00
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
2019-01-23 13:30:58 +01:00
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"description": "Async DNS resolution for Amp.",
"homepage": "https://github.com/amphp/dns",
"keywords": [
"amp",
"amphp",
"async",
"client",
"dns",
"resolve"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/dns/issues",
"source": "https://github.com/amphp/dns/tree/v1.2.3"
},
2020-08-07 00:48:32 +02:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
"time": "2020-07-21T19:04:57+00:00"
2019-12-25 23:51:20 +01:00
},
{
"name": "amphp/file",
2020-07-14 21:25:00 +02:00
"version": "v1.0.2",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/file.git",
2020-07-14 21:25:00 +02:00
"reference": "54dcef2a3e38f445ae78ea44ff12c95738e46420"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
2020-07-14 21:25:00 +02:00
"url": "https://api.github.com/repos/amphp/file/zipball/54dcef2a3e38f445ae78ea44ff12c95738e46420",
"reference": "54dcef2a3e38f445ae78ea44ff12c95738e46420",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2.2",
"amphp/byte-stream": "^1.6.1",
"amphp/parallel": "^1.2",
"php": ">=7.1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1",
2020-07-14 21:25:00 +02:00
"ext-eio": "^2",
"ext-uv": "^0.3 || ^0.2",
2019-12-25 23:51:20 +01:00
"phpunit/phpunit": "^8 || ^7"
},
"type": "library",
2020-07-14 21:25:00 +02:00
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
2019-12-25 23:51:20 +01:00
"autoload": {
"psr-4": {
"Amp\\File\\": "src"
},
"files": [
"src/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"description": "Allows non-blocking access to the filesystem for Amp.",
"homepage": "https://github.com/amphp/file",
"keywords": [
"amp",
"amphp",
"async",
"disk",
"file",
"filesystem",
"io",
"non-blocking",
"static"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/file/issues",
"source": "https://github.com/amphp/file/tree/v1.0.2"
},
2020-07-14 21:25:00 +02:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
"time": "2020-07-14T15:15:32+00:00"
2019-01-23 13:30:58 +01:00
},
{
2019-12-03 23:14:46 +01:00
"name": "amphp/hpack",
2020-01-12 20:25:12 +01:00
"version": "v3.1.0",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
2019-12-03 23:14:46 +01:00
"url": "https://github.com/amphp/hpack.git",
2020-01-12 20:25:12 +01:00
"reference": "0dcd35f9a8d9fc04d5fb8af0aeb109d4474cfad8"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2020-01-12 20:25:12 +01:00
"url": "https://api.github.com/repos/amphp/hpack/zipball/0dcd35f9a8d9fc04d5fb8af0aeb109d4474cfad8",
"reference": "0dcd35f9a8d9fc04d5fb8af0aeb109d4474cfad8",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
2020-01-05 23:24:59 +01:00
"php": ">=7.1"
2019-01-23 13:30:58 +01:00
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
2019-12-03 23:14:46 +01:00
"http2jp/hpack-test-case": "^1",
2020-01-05 23:24:59 +01:00
"phpunit/phpunit": "^6 | ^7"
2019-01-23 13:30:58 +01:00
},
"type": "library",
"autoload": {
"psr-4": {
2019-12-03 23:14:46 +01:00
"Amp\\Http\\": "src"
}
2019-01-23 13:30:58 +01:00
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
2019-12-03 23:14:46 +01:00
{
"name": "Bob Weinand"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
2019-01-23 13:30:58 +01:00
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
2019-12-03 23:14:46 +01:00
"description": "HTTP/2 HPack implementation.",
"homepage": "https://github.com/amphp/hpack",
2019-01-23 13:30:58 +01:00
"keywords": [
2019-12-03 23:14:46 +01:00
"headers",
"hpack",
"http-2"
2019-01-23 13:30:58 +01:00
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/hpack/issues",
"source": "https://github.com/amphp/hpack/tree/v3.1.0"
},
2020-01-12 20:25:12 +01:00
"time": "2020-01-11T19:33:14+00:00"
},
2019-02-03 19:17:38 +01:00
{
"name": "amphp/http",
2020-11-28 23:50:49 +01:00
"version": "v1.6.3",
2019-02-03 19:17:38 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/http.git",
2020-11-28 23:50:49 +01:00
"reference": "e2b75561011a9596e4574cc867e07a706d56394b"
2019-02-03 19:17:38 +01:00
},
"dist": {
"type": "zip",
2020-11-28 23:50:49 +01:00
"url": "https://api.github.com/repos/amphp/http/zipball/e2b75561011a9596e4574cc867e07a706d56394b",
"reference": "e2b75561011a9596e4574cc867e07a706d56394b",
2019-02-03 19:17:38 +01:00
"shasum": ""
},
2019-02-13 22:54:37 +01:00
"require": {
2020-01-05 23:24:59 +01:00
"amphp/hpack": "^3",
"php": ">=7.1"
2019-02-13 22:54:37 +01:00
},
2019-02-03 19:17:38 +01:00
"require-dev": {
2019-02-13 22:54:37 +01:00
"amphp/php-cs-fixer-config": "dev-master",
2020-01-05 23:24:59 +01:00
"phpunit/phpunit": "^7 || ^6.5"
2019-02-03 19:17:38 +01:00
},
"type": "library",
2020-01-15 23:50:12 +01:00
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
2019-02-03 19:17:38 +01:00
"autoload": {
"psr-4": {
"Amp\\Http\\": "src"
},
"files": [
"src/functions.php"
]
2019-02-03 19:17:38 +01:00
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"description": "Basic HTTP primitives which can be shared by servers and clients.",
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/http/issues",
2020-11-28 23:50:49 +01:00
"source": "https://github.com/amphp/http/tree/v1.6.3"
2020-10-31 23:09:44 +01:00
},
2020-09-12 19:54:41 +02:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
2020-11-28 23:50:49 +01:00
"time": "2020-11-28T17:04:34+00:00"
2019-02-03 19:17:38 +01:00
},
2019-12-25 23:51:20 +01:00
{
"name": "amphp/http-client",
2020-11-28 23:50:49 +01:00
"version": "v4.5.3",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/http-client.git",
2020-11-28 23:50:49 +01:00
"reference": "5f34c35e194b0f7b7fe07a3097f794e24f49cb0f"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
2020-11-28 23:50:49 +01:00
"url": "https://api.github.com/repos/amphp/http-client/zipball/5f34c35e194b0f7b7fe07a3097f794e24f49cb0f",
"reference": "5f34c35e194b0f7b7fe07a3097f794e24f49cb0f",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2.4",
"amphp/byte-stream": "^1.6",
2020-01-05 23:24:59 +01:00
"amphp/hpack": "^3",
2020-01-19 04:17:14 +01:00
"amphp/http": "^1.6",
2019-12-25 23:51:20 +01:00
"amphp/socket": "^1",
"amphp/sync": "^1.3",
"league/uri": "^6",
"php": ">=7.2",
"psr/http-message": "^1"
},
"conflict": {
2020-05-20 22:17:00 +02:00
"amphp/file": "<0.2"
2019-12-25 23:51:20 +01:00
},
"require-dev": {
"amphp/file": "^1 || ^0.3 || ^0.2",
2020-05-20 22:17:00 +02:00
"amphp/http-server": "^2",
2019-12-25 23:51:20 +01:00
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1",
"amphp/react-adapter": "^2.1",
"clue/socks-react": "^1.0",
2019-12-25 23:51:20 +01:00
"ext-json": "*",
2020-03-22 13:37:10 +01:00
"kelunik/link-header-rfc5988": "^1.0",
2020-05-20 22:17:00 +02:00
"laminas/laminas-diactoros": "^2.3",
"phpunit/phpunit": "^7 || ^8 || ^9",
"vimeo/psalm": "^3.9@dev"
2019-12-25 23:51:20 +01:00
},
"suggest": {
"amphp/file": "Required for file request bodies and HTTP archive logging",
2020-01-05 23:24:59 +01:00
"ext-json": "Required for logging HTTP archives",
"ext-zlib": "Allows using compression for response bodies."
2019-12-25 23:51:20 +01:00
},
"type": "library",
2020-01-19 04:17:14 +01:00
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
},
2019-12-25 23:51:20 +01:00
"autoload": {
"psr-4": {
"Amp\\Http\\Client\\": "src"
2020-05-20 22:17:00 +02:00
},
"files": [
"src/Internal/functions.php"
]
2019-12-25 23:51:20 +01:00
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@gmail.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"description": "Asynchronous concurrent HTTP/2 and HTTP/1.1 client built on the Amp concurrency framework",
"homepage": "https://github.com/amphp/http-client",
"keywords": [
"async",
"client",
"concurrent",
"http",
"non-blocking",
"rest"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/http-client/issues",
2020-11-28 23:50:49 +01:00
"source": "https://github.com/amphp/http-client/tree/v4.5.3"
2020-10-31 23:09:44 +01:00
},
2020-07-14 21:25:00 +02:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
2020-11-28 23:50:49 +01:00
"time": "2020-11-22T20:45:00+00:00"
2019-12-25 23:51:20 +01:00
},
{
"name": "amphp/http-client-cookies",
"version": "v1.0.0",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/http-client-cookies.git",
"reference": "06f32a7d208e20a0ce9f9ee42f7132f65d31724d"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/amphp/http-client-cookies/zipball/06f32a7d208e20a0ce9f9ee42f7132f65d31724d",
"reference": "06f32a7d208e20a0ce9f9ee42f7132f65d31724d",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2.3",
"amphp/dns": "^1.2",
2019-12-25 23:51:20 +01:00
"amphp/http": "^1.5",
"amphp/http-client": "^4",
"amphp/sync": "^1.3",
"ext-filter": "*",
"php": ">=7.2",
"psr/http-message": "^1.0"
2019-12-25 23:51:20 +01:00
},
"conflict": {
"amphp/file": "<1 || >=2"
},
"require-dev": {
"amphp/file": "^1",
"amphp/http-server": "dev-master",
2019-12-25 23:51:20 +01:00
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1",
"amphp/socket": "^1",
2019-12-25 23:51:20 +01:00
"friendsofphp/php-cs-fixer": "^2.3",
"phpunit/phpunit": "^7 || ^8"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Http\\Client\\Cookie\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@gmail.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"description": "Automatic cookie handling for Amp's HTTP client.",
"homepage": "https://github.com/amphp/http-client-cookies",
"keywords": [
"async",
"client",
"cookie",
"cookies",
"http"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/http-client-cookies/issues",
"source": "https://github.com/amphp/http-client-cookies/tree/master"
},
"time": "2019-12-21T17:05:53+00:00"
2019-12-25 23:51:20 +01:00
},
2019-01-23 13:30:58 +01:00
{
2019-12-03 23:14:46 +01:00
"name": "amphp/http-server",
2020-07-01 21:28:54 +02:00
"version": "v2.1.0",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
2019-12-03 23:14:46 +01:00
"url": "https://github.com/amphp/http-server.git",
2020-07-01 21:28:54 +02:00
"reference": "30063e245559095ff99a320b88a8a88ff719cc6e"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2020-07-01 21:28:54 +02:00
"url": "https://api.github.com/repos/amphp/http-server/zipball/30063e245559095ff99a320b88a8a88ff719cc6e",
"reference": "30063e245559095ff99a320b88a8a88ff719cc6e",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
2019-12-03 23:14:46 +01:00
"amphp/byte-stream": "^1.3",
2020-01-05 23:24:59 +01:00
"amphp/hpack": "^3",
2020-02-24 23:40:55 +01:00
"amphp/http": "^1.6",
2019-12-25 23:51:20 +01:00
"amphp/socket": "^1",
"cash/lrucache": "^1",
"league/uri": "^6",
"php": ">=7.2",
2019-12-03 23:14:46 +01:00
"psr/http-message": "^1",
"psr/log": "^1"
2019-01-23 13:30:58 +01:00
},
"require-dev": {
2020-01-05 23:24:59 +01:00
"amphp/http-client": "^4",
2019-12-03 23:14:46 +01:00
"amphp/log": "^1",
2019-01-23 13:30:58 +01:00
"amphp/php-cs-fixer-config": "dev-master",
2019-12-25 23:51:20 +01:00
"amphp/phpunit-util": "^1.1",
2019-12-03 23:14:46 +01:00
"infection/infection": "^0.9.2",
2019-12-25 23:51:20 +01:00
"league/uri-components": "^2",
"monolog/monolog": "^2 || ^1.23",
"phpunit/phpunit": "^8 || ^7"
2019-01-23 13:30:58 +01:00
},
2019-12-03 23:14:46 +01:00
"suggest": {
"ext-zlib": "Allows GZip compression of response bodies"
},
2019-01-23 13:30:58 +01:00
"type": "library",
2020-07-01 21:28:54 +02:00
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
2019-01-23 13:30:58 +01:00
"autoload": {
"psr-4": {
2019-12-03 23:14:46 +01:00
"Amp\\Http\\Server\\": "src"
2019-01-23 13:30:58 +01:00
},
"files": [
2019-12-03 23:14:46 +01:00
"src/Middleware/functions.php",
"src/functions.php"
2019-01-23 13:30:58 +01:00
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
2019-12-03 23:14:46 +01:00
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Bob Weinand"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
2019-01-23 13:30:58 +01:00
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
2019-12-03 23:14:46 +01:00
"description": "A non-blocking HTTP application server for PHP based on Amp.",
"homepage": "https://github.com/amphp/http-server",
2019-01-23 13:30:58 +01:00
"keywords": [
2019-12-03 23:14:46 +01:00
"amp",
"amphp",
2019-01-23 13:30:58 +01:00
"async",
2019-12-03 23:14:46 +01:00
"http",
"non-blocking",
"server"
2019-01-23 13:30:58 +01:00
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/http-server/issues",
"source": "https://github.com/amphp/http-server/tree/master"
},
2020-07-01 21:28:54 +02:00
"time": "2020-06-20T14:40:33+00:00"
2019-12-25 23:51:20 +01:00
},
2020-02-08 01:53:17 +01:00
{
"name": "amphp/http-server-form-parser",
2020-03-28 16:23:27 +01:00
"version": "v1.1.4",
2020-02-08 01:53:17 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/http-server-form-parser.git",
2020-03-28 16:23:27 +01:00
"reference": "657d945ebc4d5a3b1ea7b1d25c52fb2fdb118f1d"
2020-02-08 01:53:17 +01:00
},
"dist": {
"type": "zip",
2020-03-28 16:23:27 +01:00
"url": "https://api.github.com/repos/amphp/http-server-form-parser/zipball/657d945ebc4d5a3b1ea7b1d25c52fb2fdb118f1d",
"reference": "657d945ebc4d5a3b1ea7b1d25c52fb2fdb118f1d",
2020-02-08 01:53:17 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"amphp/byte-stream": "^1.3",
"amphp/http": "^1",
"amphp/http-server": "^2 || ^1 || ^0.8",
2020-03-28 16:23:27 +01:00
"php": ">=7.1"
2020-02-08 01:53:17 +01:00
},
"require-dev": {
2020-03-28 16:23:27 +01:00
"amphp/log": "^1.0",
2020-02-08 01:53:17 +01:00
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1.2",
2020-03-28 16:23:27 +01:00
"phpunit/phpunit": "^9 || ^8 || ^7 || ^6"
2020-02-08 01:53:17 +01:00
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Http\\Server\\FormParser\\": "src"
},
"files": [
"src/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Bob Weinand"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"description": "A form parser for Amp's HTTP parser.",
"homepage": "https://github.com/amphp/http-server-form-parser",
"keywords": [
"amp",
"amphp",
"async",
"form",
"http",
"non-blocking"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/http-server-form-parser/issues",
"source": "https://github.com/amphp/http-server-form-parser/tree/master"
},
2020-03-28 16:23:27 +01:00
"time": "2020-03-24T20:17:15+00:00"
2020-02-08 01:53:17 +01:00
},
2020-01-12 20:25:12 +01:00
{
"name": "amphp/http-server-router",
"version": "v1.0.2",
"source": {
"type": "git",
"url": "https://github.com/amphp/http-server-router.git",
"reference": "c6a1731f3833f3a4b4e4cd633889eb14b5ef635b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/amphp/http-server-router/zipball/c6a1731f3833f3a4b4e4cd633889eb14b5ef635b",
"reference": "c6a1731f3833f3a4b4e4cd633889eb14b5ef635b",
"shasum": ""
},
"require": {
"amphp/http": "^1",
"amphp/http-server": "^2 || ^1 || ^0.8",
"cash/lrucache": "^1",
"nikic/fast-route": "^1"
},
"require-dev": {
"amphp/log": "^1",
"amphp/phpunit-util": "^1",
"friendsofphp/php-cs-fixer": "^2.3",
"league/uri-schemes": "^1.1",
"phpunit/phpunit": "^6"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Http\\Server\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Bob Weinand"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"description": "Router responder for Amp's HTTP server.",
"homepage": "https://github.com/amphp/http-server-router",
"keywords": [
"http",
"router",
"server"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/http-server-router/issues",
"source": "https://github.com/amphp/http-server-router/tree/v1.0.2"
},
2020-01-12 20:25:12 +01:00
"time": "2019-08-21T15:51:20+00:00"
},
2020-06-17 22:44:49 +02:00
{
"name": "amphp/log",
"version": "v1.1.0",
"source": {
"type": "git",
"url": "https://github.com/amphp/log.git",
"reference": "25dcd3b58622bd22ffa7129288edb85e0c17081a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/amphp/log/zipball/25dcd3b58622bd22ffa7129288edb85e0c17081a",
"reference": "25dcd3b58622bd22ffa7129288edb85e0c17081a",
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"amphp/byte-stream": "^1.3",
"monolog/monolog": "^2 || ^1.23",
"php": ">=7.1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1",
"phpunit/phpunit": "^8 || ^7"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Log\\": "src"
},
"files": [
"src/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"description": "Non-blocking logging for PHP based on Amp and Monolog.",
"homepage": "https://github.com/amphp/log",
"keywords": [
"amp",
"amphp",
"async",
"log",
"logger",
"logging",
"non-blocking"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/log/issues",
"source": "https://github.com/amphp/log/tree/master"
},
2020-06-17 22:44:49 +02:00
"time": "2019-09-04T15:31:40+00:00"
},
2020-05-09 00:49:53 +02:00
{
"name": "amphp/mysql",
2020-11-28 23:50:49 +01:00
"version": "v2.1.0",
2020-05-09 00:49:53 +02:00
"source": {
"type": "git",
"url": "https://github.com/amphp/mysql.git",
"reference": "03c69546c07cacf4cb09790e77f0777e9d3ae7f7"
2020-05-09 00:49:53 +02:00
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/amphp/mysql/zipball/03c69546c07cacf4cb09790e77f0777e9d3ae7f7",
"reference": "03c69546c07cacf4cb09790e77f0777e9d3ae7f7",
2020-05-09 00:49:53 +02:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"amphp/socket": "^1",
"amphp/sql": "^1",
"amphp/sql-common": "^1",
"php": ">=7.1"
},
"require-dev": {
"amphp/file": "^2 || ^1 || ^0.3.5",
2020-05-09 00:49:53 +02:00
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1.2",
"amphp/process": "^1",
2020-05-09 00:49:53 +02:00
"ext-openssl": "*",
"phpbench/phpbench": "^0.13.0",
"phpunit/phpunit": "^9 || ^8 || ^7"
2020-05-09 00:49:53 +02:00
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Mysql\\": "src"
},
"files": [
"src/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"description": "Asynchronous MySQL client for PHP based on Amp.",
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/mysql/issues",
2020-11-28 23:50:49 +01:00
"source": "https://github.com/amphp/mysql/tree/v2.1.0"
2020-10-31 23:09:44 +01:00
},
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
"time": "2020-11-10T05:46:55+00:00"
2020-05-09 00:49:53 +02:00
},
2019-12-25 23:51:20 +01:00
{
"name": "amphp/parallel",
"version": "v1.4.0",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/parallel.git",
"reference": "2c1039bf7ca137eae4d954b14c09a7535d7d4e1c"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/amphp/parallel/zipball/2c1039bf7ca137eae4d954b14c09a7535d7d4e1c",
"reference": "2c1039bf7ca137eae4d954b14c09a7535d7d4e1c",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
2020-02-24 23:40:55 +01:00
"amphp/byte-stream": "^1.6.1",
2019-12-25 23:51:20 +01:00
"amphp/parser": "^1",
"amphp/process": "^1",
"amphp/serialization": "^1",
2020-02-24 23:40:55 +01:00
"amphp/sync": "^1.0.1",
"php": ">=7.1"
2019-12-25 23:51:20 +01:00
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
2020-02-24 23:40:55 +01:00
"amphp/phpunit-util": "^1.1",
"phpunit/phpunit": "^8 || ^7"
2019-12-25 23:51:20 +01:00
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Parallel\\": "lib"
},
"files": [
2020-02-24 23:40:55 +01:00
"lib/Context/functions.php",
"lib/Sync/functions.php",
2019-12-25 23:51:20 +01:00
"lib/Worker/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
2020-02-24 23:40:55 +01:00
},
{
"name": "Stephen Coakley",
"email": "me@stephencoakley.com"
2019-12-25 23:51:20 +01:00
}
],
"description": "Parallel processing component for Amp.",
"homepage": "https://github.com/amphp/parallel",
"keywords": [
"async",
"asynchronous",
"concurrent",
"multi-processing",
"multi-threading"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/parallel/issues",
"source": "https://github.com/amphp/parallel/tree/master"
},
"time": "2020-04-27T15:12:37+00:00"
2019-01-23 13:30:58 +01:00
},
{
"name": "amphp/parser",
"version": "v1.0.0",
"source": {
"type": "git",
"url": "https://github.com/amphp/parser.git",
"reference": "f83e68f03d5b8e8e0365b8792985a7f341c57ae1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/amphp/parser/zipball/f83e68f03d5b8e8e0365b8792985a7f341c57ae1",
"reference": "f83e68f03d5b8e8e0365b8792985a7f341c57ae1",
"shasum": ""
},
"require": {
"php": ">=7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.3",
"phpunit/phpunit": "^6"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Parser\\": "lib"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"description": "A generator parser to make streaming parsers simple.",
"homepage": "https://github.com/amphp/parser",
"keywords": [
"async",
"non-blocking",
"parser",
"stream"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/parser/issues",
"source": "https://github.com/amphp/parser/tree/is-valid"
},
2019-01-23 13:30:58 +01:00
"time": "2017-06-06T05:29:10+00:00"
},
2020-08-07 00:48:32 +02:00
{
"name": "amphp/postgres",
2020-08-14 20:40:48 +02:00
"version": "v1.3.1",
2020-08-07 00:48:32 +02:00
"source": {
"type": "git",
"url": "https://github.com/amphp/postgres.git",
2020-08-14 20:40:48 +02:00
"reference": "b027714d024dd1471d0a2282ad79800eef1cb408"
2020-08-07 00:48:32 +02:00
},
"dist": {
"type": "zip",
2020-08-14 20:40:48 +02:00
"url": "https://api.github.com/repos/amphp/postgres/zipball/b027714d024dd1471d0a2282ad79800eef1cb408",
"reference": "b027714d024dd1471d0a2282ad79800eef1cb408",
2020-08-07 00:48:32 +02:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"amphp/sql": "^1",
"amphp/sql-common": "^1",
"php": "^7.1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1.2",
"ext-pgsql": "*",
"ext-pq": "*",
"phpunit/phpunit": "^8 | ^7"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Postgres\\": "src"
},
"files": [
"src/functions.php",
"src/Internal/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"description": "Asynchronous PostgreSQL client for Amp.",
"homepage": "http://amphp.org",
"keywords": [
"async",
"asynchronous",
"database",
"db",
"pgsql",
"postgre",
"postgresql"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/postgres/issues",
"source": "https://github.com/amphp/postgres/tree/master"
},
2020-08-07 00:48:32 +02:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
2020-08-14 20:40:48 +02:00
"time": "2020-08-11T15:49:51+00:00"
2020-08-07 00:48:32 +02:00
},
2019-01-23 13:30:58 +01:00
{
"name": "amphp/process",
2019-03-05 15:28:32 +01:00
"version": "v1.1.0",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/process.git",
2019-03-05 15:28:32 +01:00
"reference": "355b1e561b01c16ab3d78fada1ad47ccc96df70e"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2019-03-05 15:28:32 +01:00
"url": "https://api.github.com/repos/amphp/process/zipball/355b1e561b01c16ab3d78fada1ad47ccc96df70e",
"reference": "355b1e561b01c16ab3d78fada1ad47ccc96df70e",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"amphp/byte-stream": "^1.4",
"php": ">=7"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1",
"phpunit/phpunit": "^6"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Process\\": "lib"
},
"files": [
2019-03-05 15:28:32 +01:00
"lib/functions.php"
2019-01-23 13:30:58 +01:00
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"description": "Asynchronous process manager.",
"homepage": "https://github.com/amphp/process",
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/process/issues",
"source": "https://github.com/amphp/process/tree/master"
},
2019-03-05 15:28:32 +01:00
"time": "2019-02-26T16:33:03+00:00"
2019-01-23 13:30:58 +01:00
},
2020-09-12 19:54:41 +02:00
{
"name": "amphp/redis",
"version": "v1.0.4",
"source": {
"type": "git",
"url": "https://github.com/amphp/redis.git",
"reference": "9f973427779b1fd824a9b9c2a9d051ab10eb0f2c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/amphp/redis/zipball/9f973427779b1fd824a9b9c2a9d051ab10eb0f2c",
"reference": "9f973427779b1fd824a9b9c2a9d051ab10eb0f2c",
"shasum": ""
},
"require": {
"amphp/amp": "^2.2.1",
"amphp/cache": "^1.2.1",
"amphp/socket": "^1",
"amphp/sync": "^1.1",
"league/uri-parser": "^1.4",
"php": ">=7.1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1.2",
"phpunit/phpunit": "^7 | ^8"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Redis\\": "src"
},
"files": [
"src/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"description": "A non-blocking Redis client for Amp.",
"homepage": "https://github.com/amphp/redis",
"keywords": [
"amp",
"amphp",
"async",
"client",
"redis"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/redis/issues",
"source": "https://github.com/amphp/redis/tree/master"
},
2020-09-12 19:54:41 +02:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
"time": "2020-07-27T20:54:30+00:00"
},
{
"name": "amphp/serialization",
"version": "v1.0.0",
"source": {
"type": "git",
"url": "https://github.com/amphp/serialization.git",
"reference": "693e77b2fb0b266c3c7d622317f881de44ae94a1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/amphp/serialization/zipball/693e77b2fb0b266c3c7d622317f881de44ae94a1",
"reference": "693e77b2fb0b266c3c7d622317f881de44ae94a1",
"shasum": ""
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"phpunit/phpunit": "^9 || ^8 || ^7"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Serialization\\": "src"
},
"files": [
"src/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"description": "Serialization tools for IPC and data storage in PHP.",
"homepage": "https://github.com/amphp/serialization",
"keywords": [
"async",
"asynchronous",
"serialization",
"serialize"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/serialization/issues",
"source": "https://github.com/amphp/serialization/tree/master"
},
"time": "2020-03-25T21:39:07+00:00"
},
2019-01-23 13:30:58 +01:00
{
"name": "amphp/socket",
2020-07-01 21:28:54 +02:00
"version": "v1.1.3",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/socket.git",
2020-07-01 21:28:54 +02:00
"reference": "b9064b98742d12f8f438eaf73369bdd7d8446331"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2020-07-01 21:28:54 +02:00
"url": "https://api.github.com/repos/amphp/socket/zipball/b9064b98742d12f8f438eaf73369bdd7d8446331",
"reference": "b9064b98742d12f8f438eaf73369bdd7d8446331",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
2019-12-25 23:51:20 +01:00
"amphp/byte-stream": "^1.6",
"amphp/dns": "^1 || ^0.9",
"ext-openssl": "*",
"kelunik/certificate": "^1.1",
"league/uri-parser": "^1.4",
"php": ">=7.1"
2019-01-23 13:30:58 +01:00
},
"require-dev": {
2019-12-25 23:51:20 +01:00
"amphp/php-cs-fixer-config": "dev-master",
2019-01-23 13:30:58 +01:00
"amphp/phpunit-util": "^1",
2020-07-01 21:28:54 +02:00
"phpunit/phpunit": "^6 || ^7 || ^8",
"vimeo/psalm": "^3.9@dev"
2019-01-23 13:30:58 +01:00
},
"type": "library",
2020-03-03 22:56:41 +01:00
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
2019-01-23 13:30:58 +01:00
"autoload": {
"psr-4": {
"Amp\\Socket\\": "src"
},
"files": [
"src/functions.php",
"src/Internal/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@gmail.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
2019-01-23 13:30:58 +01:00
}
],
"description": "Async socket connection / server tools for Amp.",
"homepage": "https://github.com/amphp/socket",
"keywords": [
"amp",
"async",
"encryption",
"non-blocking",
"sockets",
"tcp",
"tls"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/socket/issues",
"source": "https://github.com/amphp/socket/tree/master"
},
2020-07-01 21:28:54 +02:00
"time": "2020-06-25T18:55:28+00:00"
2019-12-25 23:51:20 +01:00
},
2020-05-09 00:49:53 +02:00
{
"name": "amphp/sql",
"version": "v1.0.1",
"source": {
"type": "git",
"url": "https://github.com/amphp/sql.git",
"reference": "0445ac35623a18105efeac93364288434430a4d8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/amphp/sql/zipball/0445ac35623a18105efeac93364288434430a4d8",
"reference": "0445ac35623a18105efeac93364288434430a4d8",
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"php": ">=7"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1",
"phpunit/phpunit": "^6"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Sql\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"description": "Asynchronous SQL client for Amp.",
"homepage": "http://amphp.org",
"keywords": [
"async",
"asynchronous",
"database",
"db",
"sql"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/sql/issues",
"source": "https://github.com/amphp/sql/tree/v1.0.1"
},
2020-05-09 00:49:53 +02:00
"time": "2019-09-26T16:23:02+00:00"
},
{
"name": "amphp/sql-common",
2020-11-28 23:50:49 +01:00
"version": "v1.1.2",
2020-05-09 00:49:53 +02:00
"source": {
"type": "git",
"url": "https://github.com/amphp/sql-common.git",
2020-11-28 23:50:49 +01:00
"reference": "1c3b86970373d2ae00482300cae1442d4e9bd782"
2020-05-09 00:49:53 +02:00
},
"dist": {
"type": "zip",
2020-11-28 23:50:49 +01:00
"url": "https://api.github.com/repos/amphp/sql-common/zipball/1c3b86970373d2ae00482300cae1442d4e9bd782",
"reference": "1c3b86970373d2ae00482300cae1442d4e9bd782",
2020-05-09 00:49:53 +02:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"amphp/sql": "^1",
"php": ">=7"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.3",
"phpunit/phpunit": "^6 || ^7 || ^8 || ^9"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Sql\\Common\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"description": "Common classes for non-blocking SQL implementations.",
"homepage": "http://amphp.org",
"keywords": [
"async",
"asynchronous",
"database",
"db",
"sql"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/sql-common/issues",
2020-11-28 23:50:49 +01:00
"source": "https://github.com/amphp/sql-common/tree/v1.1.2"
2020-10-31 23:09:44 +01:00
},
2020-11-28 23:50:49 +01:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
"time": "2020-11-09T23:11:50+00:00"
2020-05-09 00:49:53 +02:00
},
2019-12-25 23:51:20 +01:00
{
"name": "amphp/sync",
"version": "v1.4.0",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/sync.git",
"reference": "613047ac54c025aa800a9cde5b05c3add7327ed4"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/amphp/sync/zipball/613047ac54c025aa800a9cde5b05c3add7327ed4",
"reference": "613047ac54c025aa800a9cde5b05c3add7327ed4",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
2019-12-31 23:44:44 +01:00
"amphp/amp": "^2.2",
"php": ">=7.1"
2019-12-25 23:51:20 +01:00
},
"require-dev": {
2019-12-31 23:44:44 +01:00
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1",
"phpunit/phpunit": "^9 || ^8 || ^7"
2019-12-25 23:51:20 +01:00
},
"type": "library",
"autoload": {
"psr-4": {
2019-12-31 23:44:44 +01:00
"Amp\\Sync\\": "src"
2019-12-25 23:51:20 +01:00
},
"files": [
"src/functions.php",
"src/ConcurrentIterator/functions.php"
2019-12-25 23:51:20 +01:00
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Stephen Coakley",
"email": "me@stephencoakley.com"
}
],
"description": "Mutex, Semaphore, and other synchronization tools for Amp.",
"homepage": "https://github.com/amphp/sync",
"keywords": [
"async",
"asynchronous",
"mutex",
"semaphore",
"synchronization"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/sync/issues",
"source": "https://github.com/amphp/sync/tree/v1.4.0"
},
"time": "2020-05-07T18:57:50+00:00"
2019-12-25 23:51:20 +01:00
},
{
"name": "amphp/websocket",
2020-11-28 23:50:49 +01:00
"version": "v1.0.1",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/websocket.git",
2020-11-28 23:50:49 +01:00
"reference": "6752ecfcb4deba23b95ab3fbd0d427326fcac564"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
2020-11-28 23:50:49 +01:00
"url": "https://api.github.com/repos/amphp/websocket/zipball/6752ecfcb4deba23b95ab3fbd0d427326fcac564",
"reference": "6752ecfcb4deba23b95ab3fbd0d427326fcac564",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2.2",
2019-12-25 23:51:20 +01:00
"amphp/byte-stream": "^1.6.1",
"amphp/socket": "^1",
"cash/lrucache": "^1",
"php": ">=7.1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1.2",
2020-07-01 21:28:54 +02:00
"phpunit/phpunit": "^8 || ^7",
"vimeo/psalm": "^3.11@dev"
2019-12-25 23:51:20 +01:00
},
"suggest": {
"ext-zlib": "Required for compression"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Websocket\\": "src"
},
"files": [
"src/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
2019-12-25 23:51:20 +01:00
}
],
"description": "Shared code for websocket servers and clients.",
"homepage": "https://github.com/amphp/websocket",
2019-12-25 23:51:20 +01:00
"keywords": [
"amp",
"amphp",
"async",
"http",
"non-blocking",
"websocket"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/websocket/issues",
2020-11-28 23:50:49 +01:00
"source": "https://github.com/amphp/websocket/tree/v1.0.1"
2020-10-31 23:09:44 +01:00
},
2020-11-28 23:50:49 +01:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
"time": "2020-11-13T05:54:54+00:00"
2019-12-25 23:51:20 +01:00
},
{
"name": "amphp/websocket-client",
2020-10-04 19:50:10 +02:00
"version": "v1.0.0",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/websocket-client.git",
2020-10-04 19:50:10 +02:00
"reference": "173b54137cdcd4288702f615f05c1029e613ba37"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
2020-10-04 19:50:10 +02:00
"url": "https://api.github.com/repos/amphp/websocket-client/zipball/173b54137cdcd4288702f615f05c1029e613ba37",
"reference": "173b54137cdcd4288702f615f05c1029e613ba37",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2.2",
"amphp/http": "^1.3",
"amphp/http-client": "^4",
"amphp/socket": "^1",
"amphp/websocket": "^1",
"league/uri": "^6",
"php": ">=7.2",
"psr/http-message": "^1"
},
"require-dev": {
"amphp/http-server": "^2",
2019-12-25 23:51:20 +01:00
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.1",
2020-07-01 21:28:54 +02:00
"amphp/websocket-server": "dev-master as 2.0-rc4",
2019-12-25 23:51:20 +01:00
"phpunit/phpunit": "^8 || ^7",
2020-07-01 21:28:54 +02:00
"psr/log": "^1",
"vimeo/psalm": "^3.11@dev"
2019-12-25 23:51:20 +01:00
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Websocket\\Client\\": "src"
},
"files": [
"src/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"description": "Async WebSocket client for PHP based on Amp.",
"keywords": [
"amp",
"amphp",
"async",
"client",
"http",
"non-blocking",
"websocket"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/websocket-client/issues",
"source": "https://github.com/amphp/websocket-client/tree/v1.0.0"
},
2020-10-04 19:50:10 +02:00
"time": "2020-07-05T17:36:04+00:00"
2019-12-25 23:51:20 +01:00
},
2020-01-12 20:25:12 +01:00
{
"name": "amphp/websocket-server",
2020-07-01 21:28:54 +02:00
"version": "dev-master",
2020-01-12 20:25:12 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/websocket-server.git",
2020-07-14 21:25:00 +02:00
"reference": "f5e27858f2b9a37e909a3d96b50ab3420842e5b1"
2020-01-12 20:25:12 +01:00
},
"dist": {
"type": "zip",
2020-07-14 21:25:00 +02:00
"url": "https://api.github.com/repos/amphp/websocket-server/zipball/f5e27858f2b9a37e909a3d96b50ab3420842e5b1",
"reference": "f5e27858f2b9a37e909a3d96b50ab3420842e5b1",
2020-01-12 20:25:12 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2.2",
"amphp/byte-stream": "^1.6.1",
"amphp/http": "^1.3",
"amphp/http-server": "^2",
"amphp/socket": "^1",
"amphp/websocket": "^1",
2020-02-24 23:40:55 +01:00
"php": ">=7.2"
2020-01-12 20:25:12 +01:00
},
"require-dev": {
"amphp/http-client": "^4",
"amphp/http-server-router": "^1.0.2",
"amphp/http-server-static-content": "^1.0.4",
"amphp/log": "^1",
"amphp/php-cs-fixer-config": "dev-master",
2020-02-24 23:40:55 +01:00
"amphp/phpunit-util": "^1.3",
2020-01-12 20:25:12 +01:00
"league/climate": "^3",
2020-07-01 21:28:54 +02:00
"phpunit/phpunit": "^9 || ^8 || ^7",
"vimeo/psalm": "^3.11@dev"
2020-01-12 20:25:12 +01:00
},
"suggest": {
"ext-zlib": "Required for compression"
},
2020-10-31 23:09:44 +01:00
"default-branch": true,
2020-01-12 20:25:12 +01:00
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Websocket\\Server\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Bob Weinand"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"description": "Websocket server for Amp's HTTP server.",
"homepage": "https://github.com/amphp/websocket-server",
"keywords": [
"http",
"server",
"websocket"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/websocket-server/issues",
"source": "https://github.com/amphp/websocket-server/tree/master"
},
2020-07-14 21:25:00 +02:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
"time": "2020-07-08T17:10:06+00:00"
2020-01-12 20:25:12 +01:00
},
2019-12-25 23:51:20 +01:00
{
"name": "amphp/windows-registry",
2020-07-14 21:25:00 +02:00
"version": "v0.3.3",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
"url": "https://github.com/amphp/windows-registry.git",
2020-07-14 21:25:00 +02:00
"reference": "0f56438b9197e224325e88f305346f0221df1f71"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
2020-07-14 21:25:00 +02:00
"url": "https://api.github.com/repos/amphp/windows-registry/zipball/0f56438b9197e224325e88f305346f0221df1f71",
"reference": "0f56438b9197e224325e88f305346f0221df1f71",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"amphp/byte-stream": "^1.4",
"amphp/process": "^1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\WindowsRegistry\\": "lib"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"description": "Windows Registry Reader.",
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/amphp/windows-registry/issues",
"source": "https://github.com/amphp/windows-registry/tree/master"
},
2020-07-14 21:25:00 +02:00
"funding": [
{
"url": "https://github.com/amphp",
"type": "github"
}
],
"time": "2020-07-10T16:13:29+00:00"
2019-12-25 23:51:20 +01:00
},
{
"name": "cash/lrucache",
"version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/cash/LRUCache.git",
"reference": "4fa4c6834cec59690b43526c4da41d6153026289"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/cash/LRUCache/zipball/4fa4c6834cec59690b43526c4da41d6153026289",
"reference": "4fa4c6834cec59690b43526c4da41d6153026289",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"type": "library",
"autoload": {
"psr-0": {
"cash": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Cash Costello",
"email": "cash.costello@gmail.com"
}
],
"description": "An efficient memory-based Least Recently Used (LRU) cache",
"homepage": "https://github.com/cash/LRUCache",
"keywords": [
"cache",
"lru"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/cash/LRUCache/issues",
"source": "https://github.com/cash/LRUCache/tree/1.0.0"
},
2019-12-25 23:51:20 +01:00
"time": "2013-09-20T18:59:12+00:00"
},
{
"name": "danog/dns-over-https",
"version": "0.2.6",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
"url": "https://github.com/danog/dns-over-https.git",
"reference": "a288be1f4fdd4ce9838e98bfa96407fcfdd099b3"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/danog/dns-over-https/zipball/a288be1f4fdd4ce9838e98bfa96407fcfdd099b3",
"reference": "a288be1f4fdd4ce9838e98bfa96407fcfdd099b3",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"amphp/cache": "^1",
"amphp/dns": "^1",
2019-12-25 23:51:20 +01:00
"amphp/http-client": "^4",
"amphp/parser": "^1",
"danog/libdns-json": "^0.1",
"daverandom/libdns": "^2.0.1",
"ext-filter": "*",
"ext-json": "*",
"php": ">=7.0"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1",
"phpunit/phpunit": "^6"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\DoH\\": "lib"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
},
{
"name": "Chris Wright",
"email": "addr@daverandom.com"
},
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"description": "Async DNS-over-HTTPS resolution for Amp.",
"homepage": "https://github.com/danog/dns-over-https",
"keywords": [
"amp",
"amphp",
"async",
"client",
"dns",
"dns-over-https",
"doh",
"https",
"resolve"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/danog/dns-over-https/issues",
"source": "https://github.com/danog/dns-over-https/tree/0.2.6"
},
"time": "2019-12-27T14:35:55+00:00"
2019-12-25 23:51:20 +01:00
},
2020-03-09 00:42:17 +01:00
{
"name": "danog/ipc",
2020-09-27 22:04:52 +02:00
"version": "0.1.5",
2020-03-09 00:42:17 +01:00
"source": {
"type": "git",
"url": "https://github.com/danog/ipc.git",
2020-09-27 22:04:52 +02:00
"reference": "5388fa0ab42250f0c96fdaffae46a7724a9457f4"
2020-03-09 00:42:17 +01:00
},
"dist": {
"type": "zip",
2020-09-27 22:04:52 +02:00
"url": "https://api.github.com/repos/danog/ipc/zipball/5388fa0ab42250f0c96fdaffae46a7724a9457f4",
"reference": "5388fa0ab42250f0c96fdaffae46a7724a9457f4",
2020-03-09 00:42:17 +01:00
"shasum": ""
},
"require": {
"amphp/byte-stream": "^1",
"amphp/parser": "^1",
"php": ">=7.1"
},
"require-dev": {
"amphp/amp": "^2.4",
"amphp/parallel": "^1.3",
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.3",
"phpunit/phpunit": "^7 | ^8 | ^9"
},
"type": "library",
"autoload": {
"psr-4": {
"Amp\\Ipc\\": "lib"
},
"files": [
"lib/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Stephen Coakley",
"email": "me@stephencoakley.com"
}
],
"description": "IPC component for Amp.",
"homepage": "https://github.com/danog/ipc",
"keywords": [
"async",
"asynchronous",
"concurrent",
"multi-processing",
"multi-threading"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/danog/ipc/issues",
"source": "https://github.com/danog/ipc/tree/0.1.5"
},
2020-09-27 22:04:52 +02:00
"time": "2020-09-25T14:50:16+00:00"
2020-03-09 00:42:17 +01:00
},
2019-12-25 23:51:20 +01:00
{
"name": "danog/libdns-json",
"version": "0.1.1",
"source": {
"type": "git",
"url": "https://github.com/danog/LibDNSJson.git",
"reference": "7d5e07815d57afa64ef7cdbe1a65fbead9a3e7bd"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/danog/LibDNSJson/zipball/7d5e07815d57afa64ef7cdbe1a65fbead9a3e7bd",
"reference": "7d5e07815d57afa64ef7cdbe1a65fbead9a3e7bd",
"shasum": ""
},
"require": {
"daverandom/libdns": "^2.0.1",
"ext-json": "*",
"php": ">=7.0"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"phpunit/phpunit": "^6"
},
"type": "library",
"autoload": {
"psr-4": {
"danog\\LibDNSJson\\": "lib"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Chris Wright",
"email": "addr@daverandom.com"
},
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
"description": "Encoder/decoder for google's JSON DNS message format based on libdns",
"homepage": "https://github.com/danog/libdns-json",
"keywords": [
"dns",
"dns-over-https",
"doh",
"https",
"json",
"libdns",
"message"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/danog/LibDNSJson/issues",
"source": "https://github.com/danog/LibDNSJson/tree/master"
},
2019-12-25 23:51:20 +01:00
"time": "2019-07-14T14:59:51+00:00"
},
2020-08-07 00:48:32 +02:00
{
"name": "danog/loop",
"version": "0.1.0",
"source": {
"type": "git",
"url": "https://github.com/danog/loop.git",
"reference": "b008a45f2f192ce085e87bd2f4c6e3cf8a29bf7c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/danog/loop/zipball/b008a45f2f192ce085e87bd2f4c6e3cf8a29bf7c",
"reference": "b008a45f2f192ce085e87bd2f4c6e3cf8a29bf7c",
"shasum": ""
},
"require": {
"amphp/amp": "^2",
"php": ">=7.1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1.3",
"phpunit/phpunit": "^7 | ^8 | ^9",
"vimeo/psalm": "dev-master"
},
"type": "library",
"autoload": {
"psr-4": {
"danog\\Loop\\": "lib"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
"description": "Loop abstraction for AMPHP.",
"homepage": "https://github.com/danog/loop",
"keywords": [
"async",
"asynchronous",
"concurrent",
"multi-processing",
"multi-threading"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/danog/loop/issues",
"source": "https://github.com/danog/loop/tree/0.1.0"
},
2020-08-07 00:48:32 +02:00
"funding": [
{
"url": "https://github.com/danog",
"type": "github"
}
],
"time": "2020-07-24T17:32:12+00:00"
},
2019-12-25 23:51:20 +01:00
{
"name": "danog/madelineproto",
2020-10-08 01:19:05 +02:00
"version": "dev-master",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
2020-09-12 19:54:41 +02:00
"url": "https://github.com/danog/MadelineProto.git",
2020-11-28 23:50:49 +01:00
"reference": "00150a10453950ed7b26b5ea36258fc278640c01"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
2020-11-28 23:50:49 +01:00
"url": "https://api.github.com/repos/danog/MadelineProto/zipball/00150a10453950ed7b26b5ea36258fc278640c01",
"reference": "00150a10453950ed7b26b5ea36258fc278640c01",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
2020-01-19 16:24:14 +01:00
"amphp/amp": "^2",
2019-12-25 23:51:20 +01:00
"amphp/byte-stream": "^1",
"amphp/dns": "^1",
2019-12-25 23:51:20 +01:00
"amphp/file": "^1",
"amphp/http-client": "^4",
"amphp/http-client-cookies": "^1",
2020-06-17 22:44:49 +02:00
"amphp/log": "^1.1",
2020-11-28 23:50:49 +01:00
"amphp/mysql": "^2",
2020-08-07 00:48:32 +02:00
"amphp/postgres": "^1.2",
2020-09-12 19:54:41 +02:00
"amphp/redis": "^1.0",
2019-12-25 23:51:20 +01:00
"amphp/socket": "^1",
2020-10-04 19:50:10 +02:00
"amphp/websocket-client": "^1.0",
2019-12-25 23:51:20 +01:00
"danog/dns-over-https": "^0.2",
2020-03-09 00:42:17 +01:00
"danog/ipc": "^0.1",
2020-08-07 00:48:32 +02:00
"danog/loop": "^0.1.0",
2019-12-25 23:51:20 +01:00
"danog/magicalserializer": "^1.0",
"danog/primemodule": "^1",
2020-02-06 00:54:46 +01:00
"danog/tg-file-decoder": "^0.1",
2020-08-10 23:35:08 +02:00
"danog/tgseclib": "^3",
2019-12-25 23:51:20 +01:00
"erusev/parsedown": "^1.7",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-zlib": "*",
2020-03-03 22:56:41 +01:00
"league/uri": "^6",
2020-03-09 00:42:17 +01:00
"php": ">=7.4.0",
2020-10-03 00:50:48 +02:00
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php80": "^1.18"
2019-12-25 23:51:20 +01:00
},
"conflict": {
2020-10-03 00:50:48 +02:00
"ext-pthreads": "*",
2019-12-25 23:51:20 +01:00
"krakjoe/pthreads-polyfill": "*"
},
"require-dev": {
2020-02-10 00:04:36 +01:00
"amphp/http": "^1.6",
"amphp/http-server": "dev-master",
2019-12-25 23:51:20 +01:00
"amphp/php-cs-fixer-config": "dev-master",
"danog/7to5": "^1",
"danog/7to70": "^1",
2020-10-19 16:46:47 +02:00
"danog/phpdoc": "^0.1.7",
2019-12-25 23:51:20 +01:00
"ennexa/amp-update-cache": "dev-master",
"ext-ctype": "*",
2020-07-14 21:25:00 +02:00
"friendsofphp/php-cs-fixer": "^2.16",
2020-10-08 01:19:05 +02:00
"phpdocumentor/reflection-docblock": "^5.2",
2020-03-22 13:37:10 +01:00
"phpstan/phpstan": "^0.12.14",
2020-10-19 16:46:47 +02:00
"phpunit/phpunit": "^9",
2020-03-09 00:42:17 +01:00
"vimeo/psalm": "dev-master",
2019-12-25 23:51:20 +01:00
"vlucas/phpdotenv": "^3"
},
"suggest": {
"ext-libtgvoip": "Install the php-libtgvoip extension to make phone calls (https://github.com/danog/php-libtgvoip)"
},
2020-10-31 23:09:44 +01:00
"default-branch": true,
2019-12-25 23:51:20 +01:00
"type": "project",
"autoload": {
"psr-4": {
"danog\\MadelineProto\\": "src/danog/MadelineProto"
},
"files": [
"src/BigIntegor.php",
"src/YieldReturnValue.php",
2020-07-14 21:25:00 +02:00
"src/danog/MadelineProto/Ipc/Runner/entry.php",
2019-12-25 23:51:20 +01:00
"src/polyfill.php"
]
},
2020-09-12 19:54:41 +02:00
"notification-url": "https://packagist.org/downloads/",
2019-12-25 23:51:20 +01:00
"license": [
"AGPL-3.0-only"
],
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
"description": "PHP implementation of telegram's MTProto protocol.",
"homepage": "https://docs.madelineproto.xyz",
2019-12-25 23:51:20 +01:00
"keywords": [
"GB",
2020-09-12 19:54:41 +02:00
"Messenger",
2019-12-25 23:51:20 +01:00
"audio",
"bytes",
"client",
"files",
"mtproto",
2020-09-12 19:54:41 +02:00
"php",
2019-12-25 23:51:20 +01:00
"protocol",
"stickers",
"telegram",
"video"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/danog/MadelineProto/issues",
"source": "https://github.com/danog/MadelineProto/tree/master"
},
2020-06-17 22:44:49 +02:00
"funding": [
{
2020-09-12 19:54:41 +02:00
"url": "https://github.com/danog",
"type": "github"
2020-06-17 22:44:49 +02:00
}
],
2020-11-28 23:50:49 +01:00
"time": "2020-11-28T22:42:48+00:00"
2019-12-25 23:51:20 +01:00
},
{
"name": "danog/magicalserializer",
"version": "1.0",
"source": {
"type": "git",
"url": "https://github.com/danog/MagicalSerializer.git",
"reference": "87b6ed05a86021e9364f31133089bb83980d5e24"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/danog/MagicalSerializer/zipball/87b6ed05a86021e9364f31133089bb83980d5e24",
"reference": "87b6ed05a86021e9364f31133089bb83980d5e24",
"shasum": ""
},
"type": "library",
"autoload": {
"psr-0": {
"danog\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"AGPL-3.0-only"
],
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
"description": "Serialize Volatile, Threaded or any other internal PHP class!",
"homepage": "https://daniil.it/MagicalSerializer",
"keywords": [
"pthreads",
"serializable",
"serialize",
"threading",
"volatile"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/danog/MagicalSerializer/issues",
"source": "https://github.com/danog/MagicalSerializer/tree/master"
},
2019-12-25 23:51:20 +01:00
"time": "2018-02-20T10:35:49+00:00"
},
{
"name": "danog/primemodule",
"version": "1.0.3",
"source": {
"type": "git",
"url": "https://github.com/danog/PrimeModule.git",
"reference": "a18918c4092d6d8696521b05a59a3cdb5cdc061e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/danog/PrimeModule/zipball/a18918c4092d6d8696521b05a59a3cdb5cdc061e",
"reference": "a18918c4092d6d8696521b05a59a3cdb5cdc061e",
"shasum": ""
},
"suggest": {
"ext-primemodule": "Install the native C++ extension for extremely fast factorization (https://github.com/danog/PrimeModule-ext)"
},
"type": "library",
"autoload": {
"psr-0": {
"danog\\": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"AGPL-3.0-only"
],
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
"description": "Prime module capable of doing prime factorization of huge numbers very quickly.\"",
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/danog/PrimeModule/issues",
"source": "https://github.com/danog/PrimeModule/tree/1.0.3"
},
2019-12-25 23:51:20 +01:00
"time": "2018-03-21T10:47:51+00:00"
2019-01-23 13:30:58 +01:00
},
2020-02-06 00:54:46 +01:00
{
"name": "danog/tg-file-decoder",
2020-10-07 02:00:50 +02:00
"version": "0.1.4",
2020-02-06 00:54:46 +01:00
"source": {
"type": "git",
"url": "https://github.com/danog/tg-file-decoder.git",
2020-10-07 02:00:50 +02:00
"reference": "36fca79a3d610c8d1c6dce57124e5e5e47d4ca50"
2020-02-06 00:54:46 +01:00
},
"dist": {
"type": "zip",
2020-10-07 02:00:50 +02:00
"url": "https://api.github.com/repos/danog/tg-file-decoder/zipball/36fca79a3d610c8d1c6dce57124e5e5e47d4ca50",
"reference": "36fca79a3d610c8d1c6dce57124e5e5e47d4ca50",
2020-02-06 00:54:46 +01:00
"shasum": ""
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"amphp/php-cs-fixer-config": "dev-master",
"phpunit/phpunit": "^8|^6"
},
"type": "project",
"autoload": {
"psr-4": {
"danog\\Decoder\\": "src/"
},
"files": [
"src/type.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
2020-02-06 23:18:21 +01:00
"AGPL-3.0-only"
2020-02-06 00:54:46 +01:00
],
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
"description": "Decode Telegram bot API file IDs",
"keywords": [
"audio",
"bot api",
"file ID",
"files",
"mtproto",
"stickers",
"telegram",
"video"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/danog/tg-file-decoder/issues",
"source": "https://github.com/danog/tg-file-decoder/tree/0.1.4"
},
2020-10-04 19:50:10 +02:00
"funding": [
{
"url": "https://github.com/danog",
"type": "github"
}
],
2020-10-07 02:00:50 +02:00
"time": "2020-10-06T19:02:28+00:00"
2020-02-06 00:54:46 +01:00
},
2019-01-23 13:30:58 +01:00
{
2019-12-25 23:51:20 +01:00
"name": "danog/tgseclib",
"version": "3.0.1",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
2019-12-25 23:51:20 +01:00
"url": "https://github.com/danog/tgseclib.git",
"reference": "17df55ae63bd6839971e0bee27e94e998bebb16f"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/danog/tgseclib/zipball/17df55ae63bd6839971e0bee27e94e998bebb16f",
"reference": "17df55ae63bd6839971e0bee27e94e998bebb16f",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
"paragonie/constant_time_encoding": "^1|^2",
2019-12-25 23:51:20 +01:00
"paragonie/random_compat": "^1.4|^2.0",
"php": ">=5.6.1"
2019-01-23 13:30:58 +01:00
},
"require-dev": {
2019-12-25 23:51:20 +01:00
"phing/phing": "~2.7",
"phpunit/phpunit": "^4.8.35|^5.7|^6.0",
"sami/sami": "~2.0",
"squizlabs/php_codesniffer": "~2.0"
},
"suggest": {
"ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
"ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
"ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
"ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
2019-01-23 13:30:58 +01:00
},
"type": "library",
"autoload": {
"files": [
2019-12-25 23:51:20 +01:00
"phpseclib/bootstrap.php"
],
"psr-4": {
"tgseclib\\": "phpseclib/"
}
2019-01-23 13:30:58 +01:00
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
2019-12-25 23:51:20 +01:00
"name": "Jim Wigginton",
"email": "terrafrost@php.net",
"role": "Lead Developer"
2019-11-08 23:30:12 +01:00
},
{
2019-12-25 23:51:20 +01:00
"name": "Patrick Monnerat",
"email": "pm@datasphere.ch",
"role": "Developer"
},
{
"name": "Andreas Fischer",
"email": "bantu@phpbb.com",
"role": "Developer"
},
{
"name": "Hans-Jürgen Petrich",
"email": "petrich@tronic-media.com",
"role": "Developer"
},
{
"name": "Graham Campbell",
"email": "graham@alt-three.com",
"role": "Developer"
2019-01-23 13:30:58 +01:00
}
],
2019-12-25 23:51:20 +01:00
"description": "PHP Secure Communications Library (+Telegram-specific AES IGE primitives) - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
"homepage": "http://phpseclib.sourceforge.net",
2019-01-23 13:30:58 +01:00
"keywords": [
2019-12-25 23:51:20 +01:00
"BigInteger",
"aes",
"asn.1",
"asn1",
"blowfish",
"crypto",
"cryptography",
"encryption",
"rsa",
"security",
"sftp",
"signature",
"signing",
"ssh",
"twofish",
"x.509",
"x509"
2019-01-23 13:30:58 +01:00
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/danog/tgseclib/issues",
"source": "https://github.com/danog/tgseclib/tree/3.0.1"
2020-10-31 23:09:44 +01:00
},
"funding": [
{
"url": "https://github.com/terrafrost",
"type": "github"
},
{
"url": "https://www.patreon.com/phpseclib",
"type": "patreon"
},
{
"url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
"type": "tidelift"
}
],
"time": "2020-11-07T20:12:19+00:00"
2019-01-23 13:30:58 +01:00
},
{
2019-12-25 23:51:20 +01:00
"name": "daverandom/libdns",
2019-12-31 23:44:44 +01:00
"version": "v2.0.2",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
2019-12-25 23:51:20 +01:00
"url": "https://github.com/DaveRandom/LibDNS.git",
"reference": "e8b6d6593d18ac3a6a14666d8a68a4703b2e05f9"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2019-12-25 23:51:20 +01:00
"url": "https://api.github.com/repos/DaveRandom/LibDNS/zipball/e8b6d6593d18ac3a6a14666d8a68a4703b2e05f9",
"reference": "e8b6d6593d18ac3a6a14666d8a68a4703b2e05f9",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
2019-12-25 23:51:20 +01:00
"require": {
"ext-ctype": "*",
"php": ">=7.0"
},
"suggest": {
"ext-intl": "Required for IDN support"
2019-01-23 13:30:58 +01:00
},
"type": "library",
"autoload": {
"psr-4": {
2019-12-25 23:51:20 +01:00
"LibDNS\\": "src/"
2019-01-23 13:30:58 +01:00
},
"files": [
"src/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
2019-12-25 23:51:20 +01:00
"description": "DNS protocol implementation written in pure PHP",
"keywords": [
"dns"
2019-01-23 13:30:58 +01:00
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/DaveRandom/LibDNS/issues",
"source": "https://github.com/DaveRandom/LibDNS/tree/v2.0.2"
},
2019-12-25 23:51:20 +01:00
"time": "2019-12-03T09:12:46+00:00"
2019-01-23 13:30:58 +01:00
},
{
2019-12-25 23:51:20 +01:00
"name": "erusev/parsedown",
2019-12-31 23:44:44 +01:00
"version": "1.7.4",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
2019-12-25 23:51:20 +01:00
"url": "https://github.com/erusev/parsedown.git",
2019-12-31 23:44:44 +01:00
"reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2019-12-31 23:44:44 +01:00
"url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
"reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
2019-12-25 23:51:20 +01:00
"ext-mbstring": "*",
"php": ">=5.3.0"
2019-01-23 13:30:58 +01:00
},
"require-dev": {
2019-12-25 23:51:20 +01:00
"phpunit/phpunit": "^4.8.35"
2019-01-23 13:30:58 +01:00
},
"type": "library",
"autoload": {
2019-12-25 23:51:20 +01:00
"psr-0": {
"Parsedown": ""
2019-01-23 13:30:58 +01:00
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
2019-12-25 23:51:20 +01:00
"name": "Emanuil Rusev",
"email": "hello@erusev.com",
"homepage": "http://erusev.com"
2019-01-23 13:30:58 +01:00
}
],
2019-12-25 23:51:20 +01:00
"description": "Parser for Markdown.",
"homepage": "http://parsedown.org",
"keywords": [
"markdown",
"parser"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/erusev/parsedown/issues",
"source": "https://github.com/erusev/parsedown/tree/1.7.x"
},
2019-12-31 23:44:44 +01:00
"time": "2019-12-30T22:54:17+00:00"
2019-01-23 13:30:58 +01:00
},
2019-06-20 17:45:53 +02:00
{
2019-12-25 23:51:20 +01:00
"name": "kelunik/certificate",
"version": "v1.1.2",
2019-06-20 17:45:53 +02:00
"source": {
"type": "git",
2019-12-25 23:51:20 +01:00
"url": "https://github.com/kelunik/certificate.git",
"reference": "56542e62d51533d04d0a9713261fea546bff80f6"
2019-06-20 17:45:53 +02:00
},
"dist": {
"type": "zip",
2019-12-25 23:51:20 +01:00
"url": "https://api.github.com/repos/kelunik/certificate/zipball/56542e62d51533d04d0a9713261fea546bff80f6",
"reference": "56542e62d51533d04d0a9713261fea546bff80f6",
2019-06-20 17:45:53 +02:00
"shasum": ""
},
"require": {
2019-12-25 23:51:20 +01:00
"ext-openssl": "*",
"php": ">=5.4"
},
"require-dev": {
"fabpot/php-cs-fixer": "^1.9",
"phpunit/phpunit": "^4.8"
2019-01-23 13:30:58 +01:00
},
"type": "library",
"autoload": {
2019-12-25 23:51:20 +01:00
"psr-4": {
"Kelunik\\Certificate\\": "lib"
2019-01-23 13:30:58 +01:00
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
2019-12-03 23:14:46 +01:00
"MIT"
2019-01-23 13:30:58 +01:00
],
"authors": [
{
2019-12-25 23:51:20 +01:00
"name": "Niklas Keller",
"email": "me@kelunik.com"
2019-01-23 13:30:58 +01:00
}
],
2019-12-25 23:51:20 +01:00
"description": "Access certificate details and transform between different formats.",
2019-01-23 13:30:58 +01:00
"keywords": [
2019-12-25 23:51:20 +01:00
"DER",
"certificate",
"certificates",
"openssl",
"pem",
"x509"
2019-01-23 13:30:58 +01:00
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/kelunik/certificate/issues",
"source": "https://github.com/kelunik/certificate/tree/v1.1.2"
},
2019-12-25 23:51:20 +01:00
"time": "2019-05-29T19:02:31+00:00"
2019-01-23 13:30:58 +01:00
},
{
2019-12-25 23:51:20 +01:00
"name": "league/uri",
2020-11-28 23:50:49 +01:00
"version": "6.4.0",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
2019-12-25 23:51:20 +01:00
"url": "https://github.com/thephpleague/uri.git",
2020-11-28 23:50:49 +01:00
"reference": "09da64118eaf4c5d52f9923a1e6a5be1da52fd9a"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2020-11-28 23:50:49 +01:00
"url": "https://api.github.com/repos/thephpleague/uri/zipball/09da64118eaf4c5d52f9923a1e6a5be1da52fd9a",
"reference": "09da64118eaf4c5d52f9923a1e6a5be1da52fd9a",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
2019-12-25 23:51:20 +01:00
"ext-json": "*",
2020-02-10 00:04:36 +01:00
"league/uri-interfaces": "^2.1",
2020-08-14 20:40:48 +02:00
"php": ">=7.2",
2019-12-25 23:51:20 +01:00
"psr/http-message": "^1.0"
},
"conflict": {
"league/uri-schemes": "^1.0"
},
"require-dev": {
2020-01-30 22:35:03 +01:00
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
2020-11-28 23:50:49 +01:00
"phpunit/phpunit": "^8.0 || ^9.0",
"psr/http-factory": "^1.0"
2019-01-23 13:30:58 +01:00
},
"suggest": {
2020-02-10 00:04:36 +01:00
"ext-fileinfo": "Needed to create Data URI from a filepath",
2019-12-25 23:51:20 +01:00
"ext-intl": "Needed to improve host validation",
2020-11-28 23:50:49 +01:00
"league/uri-components": "Needed to easily manipulate URI objects",
"psr/http-factory": "Needed to use the URI factory"
2019-01-23 13:30:58 +01:00
},
"type": "library",
2019-12-25 23:51:20 +01:00
"extra": {
"branch-alias": {
2020-01-30 22:35:03 +01:00
"dev-master": "6.x-dev"
2019-12-25 23:51:20 +01:00
}
},
2019-01-23 13:30:58 +01:00
"autoload": {
"psr-4": {
2019-12-25 23:51:20 +01:00
"League\\Uri\\": "src"
}
2019-01-23 13:30:58 +01:00
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
2019-12-25 23:51:20 +01:00
"authors": [
{
"name": "Ignace Nyamagana Butera",
"email": "nyamsprod@gmail.com",
"homepage": "https://nyamsprod.com"
}
],
"description": "URI manipulation library",
"homepage": "http://uri.thephpleague.com",
2019-01-23 13:30:58 +01:00
"keywords": [
2019-12-25 23:51:20 +01:00
"data-uri",
"file-uri",
"ftp",
"hostname",
"http",
"https",
"middleware",
"parse_str",
"parse_url",
"psr-7",
"query-string",
"querystring",
"rfc3986",
"rfc3987",
2020-01-30 22:35:03 +01:00
"rfc6570",
2019-12-25 23:51:20 +01:00
"uri",
2020-01-30 22:35:03 +01:00
"uri-template",
2019-12-25 23:51:20 +01:00
"url",
"ws"
2019-01-23 13:30:58 +01:00
],
2020-10-31 23:09:44 +01:00
"support": {
"docs": "https://uri.thephpleague.com",
"forum": "https://thephpleague.slack.com",
"issues": "https://github.com/thephpleague/uri/issues",
2020-11-28 23:50:49 +01:00
"source": "https://github.com/thephpleague/uri/tree/6.4.0"
2020-10-31 23:09:44 +01:00
},
2020-03-22 13:37:10 +01:00
"funding": [
{
"url": "https://github.com/sponsors/nyamsprod",
"type": "github"
}
],
2020-11-28 23:50:49 +01:00
"time": "2020-11-22T14:29:11+00:00"
2019-01-23 13:30:58 +01:00
},
{
2019-12-03 23:14:46 +01:00
"name": "league/uri-interfaces",
2020-10-31 23:09:44 +01:00
"version": "2.2.0",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
2019-12-03 23:14:46 +01:00
"url": "https://github.com/thephpleague/uri-interfaces.git",
2020-10-31 23:09:44 +01:00
"reference": "667f150e589d65d79c89ffe662e426704f84224f"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2020-10-31 23:09:44 +01:00
"url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/667f150e589d65d79c89ffe662e426704f84224f",
"reference": "667f150e589d65d79c89ffe662e426704f84224f",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
2019-12-25 23:51:20 +01:00
"ext-json": "*",
2020-10-31 23:09:44 +01:00
"php": "^7.1 || ^8.0"
2019-01-23 13:30:58 +01:00
},
"require-dev": {
2019-12-25 23:51:20 +01:00
"friendsofphp/php-cs-fixer": "^2.0",
2020-02-10 00:04:36 +01:00
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
2020-10-31 23:09:44 +01:00
"phpstan/phpstan-strict-rules": "^0.12"
2019-01-23 13:30:58 +01:00
},
"type": "library",
2019-12-03 23:14:46 +01:00
"extra": {
"branch-alias": {
2019-12-25 23:51:20 +01:00
"dev-master": "2.x-dev"
2019-01-23 13:30:58 +01:00
}
2019-05-15 00:31:11 +02:00
},
"autoload": {
"psr-4": {
2019-12-03 23:14:46 +01:00
"League\\Uri\\": "src/"
2019-05-15 00:31:11 +02:00
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
2019-12-03 23:14:46 +01:00
"name": "Ignace Nyamagana Butera",
"email": "nyamsprod@gmail.com",
"homepage": "https://nyamsprod.com"
2019-05-15 00:31:11 +02:00
}
],
2019-12-03 23:14:46 +01:00
"description": "Common interface for URI representation",
"homepage": "http://github.com/thephpleague/uri-interfaces",
2019-05-15 00:31:11 +02:00
"keywords": [
2019-12-03 23:14:46 +01:00
"rfc3986",
"rfc3987",
"uri",
"url"
2019-05-15 00:31:11 +02:00
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/thephpleague/uri-interfaces/issues",
"source": "https://github.com/thephpleague/uri-interfaces/tree/2.2.0"
},
"funding": [
{
"url": "https://github.com/sponsors/nyamsprod",
"type": "github"
}
],
"time": "2020-10-31T13:45:51+00:00"
2019-05-15 00:31:11 +02:00
},
2019-01-23 13:30:58 +01:00
{
2019-02-04 21:19:11 +01:00
"name": "league/uri-parser",
2019-12-31 23:44:44 +01:00
"version": "1.4.1",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
2019-02-04 21:19:11 +01:00
"url": "https://github.com/thephpleague/uri-parser.git",
2019-12-31 23:44:44 +01:00
"reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
2019-12-31 23:44:44 +01:00
"url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
"reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
"php": ">=7.0.0"
2019-01-23 13:30:58 +01:00
},
"require-dev": {
2019-02-04 21:19:11 +01:00
"friendsofphp/php-cs-fixer": "^2.0",
"phpstan/phpstan": "^0.9.2",
"phpstan/phpstan-phpunit": "^0.9.4",
"phpstan/phpstan-strict-rules": "^0.9.0",
"phpunit/phpunit": "^6.0"
2019-01-23 13:30:58 +01:00
},
"suggest": {
2019-02-04 21:19:11 +01:00
"ext-intl": "Allow parsing RFC3987 compliant hosts",
"league/uri-schemes": "Allow validating and normalizing URI parsing results"
2019-01-23 13:30:58 +01:00
},
"type": "library",
"extra": {
"branch-alias": {
2019-02-04 21:19:11 +01:00
"dev-master": "1.x-dev"
2019-01-23 13:30:58 +01:00
}
},
"autoload": {
"psr-4": {
2019-02-04 21:19:11 +01:00
"League\\Uri\\": "src"
2019-01-23 13:30:58 +01:00
},
"files": [
"src/functions_include.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
2019-02-04 21:19:11 +01:00
"name": "Ignace Nyamagana Butera",
"email": "nyamsprod@gmail.com",
"homepage": "https://nyamsprod.com"
2019-01-23 13:30:58 +01:00
}
],
2019-02-04 21:19:11 +01:00
"description": "userland URI parser RFC 3986 compliant",
"homepage": "https://github.com/thephpleague/uri-parser",
2019-01-23 13:30:58 +01:00
"keywords": [
2019-02-04 21:19:11 +01:00
"parse_url",
"parser",
"rfc3986",
"rfc3987",
"uri",
"url"
2019-01-23 13:30:58 +01:00
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/thephpleague/uri-parser/issues",
"source": "https://github.com/thephpleague/uri-parser/tree/master"
},
2019-12-31 23:44:44 +01:00
"time": "2018-11-22T07:55:51+00:00"
2019-01-23 13:30:58 +01:00
},
2020-06-17 22:44:49 +02:00
{
"name": "monolog/monolog",
2020-08-07 00:48:32 +02:00
"version": "2.1.1",
2020-06-17 22:44:49 +02:00
"source": {
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
2020-08-07 00:48:32 +02:00
"reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
2020-06-17 22:44:49 +02:00
},
"dist": {
"type": "zip",
2020-08-07 00:48:32 +02:00
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
"reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
2020-06-17 22:44:49 +02:00
"shasum": ""
},
"require": {
"php": ">=7.2",
"psr/log": "^1.0.1"
},
"provide": {
"psr/log-implementation": "1.0.0"
},
"require-dev": {
"aws/aws-sdk-php": "^2.4.9 || ^3.0",
"doctrine/couchdb": "~1.0@dev",
"elasticsearch/elasticsearch": "^6.0",
"graylog2/gelf-php": "^1.4.2",
"php-amqplib/php-amqplib": "~2.4",
"php-console/php-console": "^3.1.3",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpspec/prophecy": "^1.6.1",
"phpunit/phpunit": "^8.5",
"predis/predis": "^1.1",
"rollbar/rollbar": "^1.3",
"ruflin/elastica": ">=0.90 <3.0",
"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",
"elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
"ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
"ext-mbstring": "Allow to work properly with unicode symbols",
"ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
"graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
"mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
"php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
"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"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.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"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/Seldaek/monolog/issues",
"source": "https://github.com/Seldaek/monolog/tree/2.1.1"
},
2020-06-17 22:44:49 +02:00
"funding": [
{
"url": "https://github.com/Seldaek",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
"type": "tidelift"
}
],
2020-08-07 00:48:32 +02:00
"time": "2020-07-23T08:41:23+00:00"
2020-06-17 22:44:49 +02:00
},
2020-01-12 20:25:12 +01:00
{
"name": "nikic/fast-route",
"version": "v1.3.0",
"source": {
"type": "git",
"url": "https://github.com/nikic/FastRoute.git",
"reference": "181d480e08d9476e61381e04a71b34dc0432e812"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
"reference": "181d480e08d9476e61381e04a71b34dc0432e812",
"shasum": ""
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35|~5.7"
},
"type": "library",
"autoload": {
"psr-4": {
"FastRoute\\": "src/"
},
"files": [
"src/functions.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Nikita Popov",
"email": "nikic@php.net"
}
],
"description": "Fast request router for PHP",
"keywords": [
"router",
"routing"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/nikic/FastRoute/issues",
"source": "https://github.com/nikic/FastRoute/tree/master"
},
2020-01-12 20:25:12 +01:00
"time": "2018-02-13T20:26:39+00:00"
},
2019-01-23 13:30:58 +01:00
{
2019-12-25 23:51:20 +01:00
"name": "paragonie/constant_time_encoding",
"version": "v2.3.0",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
2019-12-25 23:51:20 +01:00
"url": "https://github.com/paragonie/constant_time_encoding.git",
"reference": "47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2"
2019-01-23 13:30:58 +01:00
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2",
"reference": "47a1cedd2e4d52688eb8c96469c05ebc8fd28fa2",
2019-01-23 13:30:58 +01:00
"shasum": ""
},
"require": {
"php": "^7|^8"
2019-01-23 13:30:58 +01:00
},
"require-dev": {
"phpunit/phpunit": "^6|^7",
"vimeo/psalm": "^1|^2|^3"
2019-01-23 13:30:58 +01:00
},
"type": "library",
"autoload": {
2019-12-03 23:14:46 +01:00
"psr-4": {
2019-12-25 23:51:20 +01:00
"ParagonIE\\ConstantTime\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "security@paragonie.com",
"homepage": "https://paragonie.com",
"role": "Maintainer"
2019-12-03 23:14:46 +01:00
},
2019-12-25 23:51:20 +01:00
{
"name": "Steve 'Sc00bz' Thomas",
"email": "steve@tobtu.com",
"homepage": "https://www.tobtu.com",
"role": "Original Developer"
}
],
"description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
"keywords": [
"base16",
"base32",
"base32_decode",
"base32_encode",
"base64",
"base64_decode",
"base64_encode",
"bin2hex",
"encoding",
"hex",
"hex2bin",
"rfc4648"
],
2020-10-31 23:09:44 +01:00
"support": {
"email": "info@paragonie.com",
"issues": "https://github.com/paragonie/constant_time_encoding/issues",
"source": "https://github.com/paragonie/constant_time_encoding"
},
"time": "2019-11-06T19:20:29+00:00"
2019-12-25 23:51:20 +01:00
},
{
"name": "paragonie/random_compat",
2020-10-19 16:46:47 +02:00
"version": "v2.0.19",
2019-12-25 23:51:20 +01:00
"source": {
"type": "git",
"url": "https://github.com/paragonie/random_compat.git",
2020-10-19 16:46:47 +02:00
"reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241"
2019-12-25 23:51:20 +01:00
},
"dist": {
"type": "zip",
2020-10-19 16:46:47 +02:00
"url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241",
"reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241",
2019-12-25 23:51:20 +01:00
"shasum": ""
},
"require": {
"php": ">=5.2.0"
},
"require-dev": {
"phpunit/phpunit": "4.*|5.*"
},
"suggest": {
"ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
},
"type": "library",
"autoload": {
2019-01-23 13:30:58 +01:00
"files": [
2019-12-25 23:51:20 +01:00
"lib/random.php"
2019-01-23 13:30:58 +01:00
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
2019-12-25 23:51:20 +01:00
"name": "Paragon Initiative Enterprises",
"email": "security@paragonie.com",
"homepage": "https://paragonie.com"
2019-01-23 13:30:58 +01:00
}
],
2019-12-25 23:51:20 +01:00
"description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
2019-01-23 13:30:58 +01:00
"keywords": [
2019-12-25 23:51:20 +01:00
"csprng",
"polyfill",
"pseudorandom",
"random"
2019-01-23 13:30:58 +01:00
],
2020-10-31 23:09:44 +01:00
"support": {
"email": "info@paragonie.com",
"issues": "https://github.com/paragonie/random_compat/issues",
"source": "https://github.com/paragonie/random_compat"
},
2020-10-19 16:46:47 +02:00
"time": "2020-10-15T10:06:57+00:00"
2019-01-23 13:30:58 +01:00
},
2019-12-25 23:24:29 +01:00
{
"name": "phpoption/phpoption",
2020-08-07 00:48:32 +02:00
"version": "1.7.5",
2019-12-25 23:24:29 +01:00
"source": {
"type": "git",
"url": "https://github.com/schmittjoh/php-option.git",
2020-08-07 00:48:32 +02:00
"reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
2019-12-25 23:24:29 +01:00
},
"dist": {
"type": "zip",
2020-08-07 00:48:32 +02:00
"url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
"reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
2019-12-25 23:24:29 +01:00
"shasum": ""
},
"require": {
2020-03-22 13:37:10 +01:00
"php": "^5.5.9 || ^7.0 || ^8.0"
2019-12-25 23:24:29 +01:00
},
"require-dev": {
2020-08-07 00:48:32 +02:00
"bamarni/composer-bin-plugin": "^1.4.1",
"phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
2019-12-25 23:24:29 +01:00
},
"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"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/schmittjoh/php-option/issues",
"source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
},
2020-06-07 21:09:49 +02:00
"funding": [
{
"url": "https://github.com/GrahamCampbell",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
"type": "tidelift"
}
],
2020-08-07 00:48:32 +02:00
"time": "2020-07-20T17:29:33+00:00"
2019-12-25 23:24:29 +01:00
},
2019-01-23 13:30:58 +01:00
{
2019-12-03 23:14:46 +01:00
"name": "psr/http-message",
2019-12-31 23:44:44 +01:00
"version": "1.0.1",
2019-01-23 13:30:58 +01:00
"source": {
"type": "git",
2019-12-03 23:14:46 +01:00
"url": "https://github.com/php-fig/http-message.git",
2019-12-31 23:44:44 +01:00
"reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
2019-12-03 23:14:46 +01:00
},
"dist": {
"type": "zip",
2019-12-31 23:44:44 +01:00
"url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
"reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
2019-12-03 23:14:46 +01:00
"shasum": ""
2019-01-23 13:30:58 +01:00
},
"require": {
2019-12-03 23:14:46 +01:00
"php": ">=5.3.0"
2019-01-23 13:30:58 +01:00
},
2019-12-03 23:14:46 +01:00
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
2019-01-23 13:30:58 +01:00
},
2019-12-03 23:14:46 +01:00
"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"
],
2020-10-31 23:09:44 +01:00
"support": {
"source": "https://github.com/php-fig/http-message/tree/master"
},
2019-12-31 23:44:44 +01:00
"time": "2016-08-06T14:39:51+00:00"
2019-12-03 23:14:46 +01:00
},
{
"name": "psr/log",
2020-03-28 16:23:27 +01:00
"version": "1.1.3",
2019-12-03 23:14:46 +01:00
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
2020-03-28 16:23:27 +01:00
"reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
2019-12-03 23:14:46 +01:00
},
"dist": {
"type": "zip",
2020-03-28 16:23:27 +01:00
"url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
"reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
2019-12-03 23:14:46 +01:00
"shasum": ""
},
"require": {
"php": ">=5.3.0"
2019-01-23 13:30:58 +01:00
},
"type": "library",
2019-12-03 23:14:46 +01:00
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
},
2019-01-23 13:30:58 +01:00
"autoload": {
"psr-4": {
2019-12-03 23:14:46 +01:00
"Psr\\Log\\": "Psr/Log/"
2019-01-23 13:30:58 +01:00
}
},
2019-12-03 23:14:46 +01:00
"notification-url": "https://packagist.org/downloads/",
2019-01-23 13:30:58 +01:00
"license": [
"MIT"
],
"authors": [
{
2019-12-03 23:14:46 +01:00
"name": "PHP-FIG",
"homepage": "http://www.php-fig.org/"
2019-01-23 13:30:58 +01:00
}
],
2019-12-03 23:14:46 +01:00
"description": "Common interface for logging libraries",
"homepage": "https://github.com/php-fig/log",
2019-01-23 13:30:58 +01:00
"keywords": [
2019-12-03 23:14:46 +01:00
"log",
"psr",
"psr-3"
2019-01-23 13:30:58 +01:00
],
2020-10-31 23:09:44 +01:00
"support": {
"source": "https://github.com/php-fig/log/tree/1.1.3"
},
2020-03-28 16:23:27 +01:00
"time": "2020-03-23T09:12:05+00:00"
2019-12-25 23:24:29 +01:00
},
{
"name": "symfony/polyfill-ctype",
2020-10-31 23:09:44 +01:00
"version": "v1.20.0",
2019-12-25 23:24:29 +01:00
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
2020-10-31 23:09:44 +01:00
"reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
2019-12-25 23:24:29 +01:00
},
"dist": {
"type": "zip",
2020-10-31 23:09:44 +01:00
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
"reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
2019-12-25 23:24:29 +01:00
"shasum": ""
},
"require": {
2020-10-31 23:09:44 +01:00
"php": ">=7.1"
2019-12-25 23:24:29 +01:00
},
"suggest": {
"ext-ctype": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
2020-10-31 23:09:44 +01:00
"dev-main": "1.20-dev"
2020-07-01 21:28:54 +02:00
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
2019-12-25 23:24:29 +01:00
}
},
"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"
],
2020-10-31 23:09:44 +01:00
"support": {
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
},
2020-03-28 16:23:27 +01:00
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
2020-10-31 23:09:44 +01:00
"time": "2020-10-23T14:02:19+00:00"
2019-12-25 23:24:29 +01:00
},
2020-03-09 00:42:17 +01:00
{
2020-10-03 00:50:48 +02:00
"name": "symfony/polyfill-mbstring",
2020-10-31 23:09:44 +01:00
"version": "v1.20.0",
2020-03-09 00:42:17 +01:00
"source": {
"type": "git",
2020-10-03 00:50:48 +02:00
"url": "https://github.com/symfony/polyfill-mbstring.git",
2020-10-31 23:09:44 +01:00
"reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
2020-03-09 00:42:17 +01:00
},
"dist": {
"type": "zip",
2020-10-31 23:09:44 +01:00
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
"reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
2020-03-09 00:42:17 +01:00
"shasum": ""
},
"require": {
2020-10-31 23:09:44 +01:00
"php": ">=7.1"
2020-03-09 00:42:17 +01:00
},
2020-10-03 00:50:48 +02:00
"suggest": {
"ext-mbstring": "For best performance"
2020-03-09 00:42:17 +01:00
},
"type": "library",
2020-10-03 00:50:48 +02:00
"extra": {
"branch-alias": {
2020-10-31 23:09:44 +01:00
"dev-main": "1.20-dev"
2020-10-03 00:50:48 +02:00
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
2020-03-09 00:42:17 +01:00
"autoload": {
"psr-4": {
2020-10-03 00:50:48 +02:00
"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"
],
2020-10-31 23:09:44 +01:00
"support": {
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
},
2020-10-03 00:50:48 +02:00
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
2020-03-09 00:42:17 +01:00
}
2020-10-03 00:50:48 +02:00
],
2020-10-31 23:09:44 +01:00
"time": "2020-10-23T14:02:19+00:00"
2020-10-03 00:50:48 +02:00
},
{
"name": "symfony/polyfill-php80",
2020-10-31 23:09:44 +01:00
"version": "v1.20.0",
2020-10-03 00:50:48 +02:00
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php80.git",
2020-10-31 23:09:44 +01:00
"reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
2020-10-03 00:50:48 +02:00
},
"dist": {
"type": "zip",
2020-10-31 23:09:44 +01:00
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
"reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
2020-10-03 00:50:48 +02:00
"shasum": ""
},
"require": {
2020-10-31 23:09:44 +01:00
"php": ">=7.1"
2020-10-03 00:50:48 +02:00
},
"type": "library",
"extra": {
"branch-alias": {
2020-10-31 23:09:44 +01:00
"dev-main": "1.20-dev"
2020-10-03 00:50:48 +02:00
},
"thanks": {
"name": "symfony/polyfill",
"url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"psr-4": {
"Symfony\\Polyfill\\Php80\\": ""
},
"files": [
"bootstrap.php"
],
"classmap": [
"Resources/stubs"
]
2020-03-09 00:42:17 +01:00
},
"notification-url": "https://packagist.org/downloads/",
"license": [
2020-10-03 00:50:48 +02:00
"MIT"
2020-03-09 00:42:17 +01:00
],
"authors": [
{
2020-10-03 00:50:48 +02:00
"name": "Ion Bazan",
"email": "ion.bazan@gmail.com"
},
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
2020-03-09 00:42:17 +01:00
}
],
2020-10-03 00:50:48 +02:00
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
"homepage": "https://symfony.com",
2020-03-09 00:42:17 +01:00
"keywords": [
2020-10-03 00:50:48 +02:00
"compatibility",
"polyfill",
"portable",
"shim"
],
2020-10-31 23:09:44 +01:00
"support": {
"source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
},
2020-10-03 00:50:48 +02:00
"funding": [
{
"url": "https://symfony.com/sponsor",
"type": "custom"
},
{
"url": "https://github.com/fabpot",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
2020-03-09 00:42:17 +01:00
],
2020-10-31 23:09:44 +01:00
"time": "2020-10-23T14:02:19+00:00"
2020-03-09 00:42:17 +01:00
},
2019-12-25 23:24:29 +01:00
{
"name": "vlucas/phpdotenv",
2020-08-07 00:48:32 +02:00
"version": "v4.1.8",
2019-12-25 23:24:29 +01:00
"source": {
"type": "git",
"url": "https://github.com/vlucas/phpdotenv.git",
2020-08-07 00:48:32 +02:00
"reference": "572af79d913627a9d70374d27a6f5d689a35de32"
2019-12-25 23:24:29 +01:00
},
"dist": {
"type": "zip",
2020-08-07 00:48:32 +02:00
"url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
"reference": "572af79d913627a9d70374d27a6f5d689a35de32",
2019-12-25 23:24:29 +01:00
"shasum": ""
},
"require": {
"php": "^5.5.9 || ^7.0 || ^8.0",
2020-06-07 21:09:49 +02:00
"phpoption/phpoption": "^1.7.3",
2020-08-07 00:48:32 +02:00
"symfony/polyfill-ctype": "^1.17"
2019-12-25 23:24:29 +01:00
},
"require-dev": {
2020-06-07 21:09:49 +02:00
"bamarni/composer-bin-plugin": "^1.4.1",
2020-03-03 22:56:41 +01:00
"ext-filter": "*",
2020-03-28 16:23:27 +01:00
"ext-pcre": "*",
2020-06-07 21:09:49 +02:00
"phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
2019-12-25 23:24:29 +01:00
},
2020-03-03 22:56:41 +01:00
"suggest": {
2020-03-28 16:23:27 +01:00
"ext-filter": "Required to use the boolean validator.",
"ext-pcre": "Required to use most of the library."
2020-03-03 22:56:41 +01:00
},
2019-12-25 23:24:29 +01:00
"type": "library",
"extra": {
"branch-alias": {
2019-12-31 23:44:44 +01:00
"dev-master": "4.1-dev"
2019-12-25 23:24:29 +01:00
}
},
"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"
],
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/vlucas/phpdotenv/issues",
"source": "https://github.com/vlucas/phpdotenv/tree/4.1"
},
2020-03-22 13:37:10 +01:00
"funding": [
{
"url": "https://github.com/GrahamCampbell",
"type": "github"
},
2020-03-22 13:37:10 +01:00
{
"url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
"type": "tidelift"
}
],
2020-08-07 00:48:32 +02:00
"time": "2020-07-14T19:22:52+00:00"
2019-01-23 13:30:58 +01:00
}
],
"packages-dev": [
{
"name": "roave/security-advisories",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/Roave/SecurityAdvisories.git",
2020-11-28 23:50:49 +01:00
"reference": "fa05999280434eacf621cc78ab9179d9394c7998"
},
"dist": {
"type": "zip",
2020-11-28 23:50:49 +01:00
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/fa05999280434eacf621cc78ab9179d9394c7998",
"reference": "fa05999280434eacf621cc78ab9179d9394c7998",
"shasum": ""
},
"conflict": {
"3f/pygmentize": "<1.2",
"adodb/adodb-php": "<5.20.12",
"alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
"amphp/artax": "<1.0.6|>=2,<2.0.6",
"amphp/http": "<1.0.1",
2020-06-17 22:44:49 +02:00
"amphp/http-client": ">=4,<4.4",
"api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6",
"asymmetricrypt/asymmetricrypt": ">=0,<9.9.99",
"aws/aws-sdk-php": ">=3,<3.2.1",
2020-02-12 22:06:00 +01:00
"bagisto/bagisto": "<0.1.5",
2020-05-20 22:17:00 +02:00
"barrelstrength/sprout-base-email": "<1.2.7",
"barrelstrength/sprout-forms": "<3.9",
2020-11-02 00:12:43 +01:00
"baserproject/basercms": ">=4,<=4.3.6|>=4.4,<4.4.1",
2020-06-11 20:41:48 +02:00
"bolt/bolt": "<3.7.1",
"brightlocal/phpwhois": "<=4.2.5",
2020-03-03 22:56:41 +01:00
"buddypress/buddypress": "<5.1.2",
"bugsnag/bugsnag-laravel": ">=2,<2.0.2",
"cakephp/cakephp": ">=1.3,<1.3.18|>=2,<2.4.99|>=2.5,<2.5.99|>=2.6,<2.6.12|>=2.7,<2.7.6|>=3,<3.5.18|>=3.6,<3.6.15|>=3.7,<3.7.7",
"cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
"cartalyst/sentry": "<=2.1.6",
2020-02-24 23:40:55 +01:00
"centreon/centreon": "<18.10.8|>=19,<19.4.5",
2020-02-12 22:06:00 +01:00
"cesnet/simplesamlphp-module-proxystatistics": "<3.1",
"codeigniter/framework": "<=3.0.6",
"composer/composer": "<=1-alpha.11",
"contao-components/mediaelement": ">=2.14.2,<2.21.1",
"contao/core": ">=2,<3.5.39",
2020-11-28 23:50:49 +01:00
"contao/core-bundle": "= 4.10.0|>=4,<4.4.52|>=4.5,<4.9.6",
"contao/listing-bundle": ">=4,<4.4.8",
"datadog/dd-trace": ">=0.30,<0.30.2",
"david-garcia/phpwhois": "<=4.3.1",
2020-09-12 19:54:41 +02:00
"derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1",
"doctrine/annotations": ">=1,<1.2.7",
"doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2",
"doctrine/common": ">=2,<2.4.3|>=2.5,<2.5.1",
"doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2",
"doctrine/doctrine-bundle": "<1.5.2",
"doctrine/doctrine-module": "<=0.7.1",
"doctrine/mongodb-odm": ">=1,<1.0.2",
"doctrine/mongodb-odm-bundle": ">=2,<3.0.1",
"doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1",
2020-05-20 22:17:00 +02:00
"dolibarr/dolibarr": "<11.0.4",
"dompdf/dompdf": ">=0.6,<0.6.2",
2020-11-28 23:50:49 +01:00
"drupal/core": ">=7,<7.74|>=8,<8.8.11|>=8.9,<8.9.9|>=9,<9.0.8",
"drupal/drupal": ">=7,<7.74|>=8,<8.8.11|>=8.9,<8.9.9|>=9,<9.0.8",
"endroid/qr-code-bundle": "<3.4.2",
2020-03-03 22:56:41 +01:00
"enshrined/svg-sanitize": "<0.13.1",
"erusev/parsedown": "<1.7.2",
"ezsystems/demobundle": ">=5.4,<5.4.6.1",
"ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1",
2020-02-06 23:18:21 +01:00
"ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1",
"ezsystems/ezplatform": ">=1.7,<1.7.9.1|>=1.13,<1.13.5.1|>=2.5,<2.5.4",
"ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6",
2020-09-12 19:54:41 +02:00
"ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1",
2020-06-07 21:09:49 +02:00
"ezsystems/ezplatform-kernel": ">=1,<1.0.2.1",
2020-02-06 23:18:21 +01:00
"ezsystems/ezplatform-user": ">=1,<1.0.1",
2020-06-07 21:09:49 +02:00
"ezsystems/ezpublish-kernel": ">=5.3,<5.3.12.1|>=5.4,<5.4.14.2|>=6,<6.7.9.1|>=6.8,<6.13.6.3|>=7,<7.2.4.1|>=7.3,<7.3.2.1|>=7.5,<7.5.7.1",
2020-10-07 02:00:50 +02:00
"ezsystems/ezpublish-legacy": ">=5.3,<5.3.12.6|>=5.4,<5.4.14.2|>=2011,<2017.12.7.3|>=2018.6,<2018.6.1.4|>=2018.9,<2018.9.1.3|>=2019.3,<2019.3.5.1",
2020-09-12 19:54:41 +02:00
"ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
"ezsystems/repository-forms": ">=2.3,<2.3.2.1",
"ezyang/htmlpurifier": "<4.1.1",
"firebase/php-jwt": "<2",
"fooman/tcpdf": "<6.2.22",
"fossar/tcpdf-parser": "<6.2.22",
2020-03-22 13:37:10 +01:00
"friendsofsymfony/oauth2-php": "<1.3",
"friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",
"friendsofsymfony/user-bundle": ">=1.2,<1.3.5",
2020-08-07 00:48:32 +02:00
"friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
"fuel/core": "<1.8.1",
2020-02-12 22:06:00 +01:00
"getgrav/grav": "<1.7-beta.8",
2020-07-14 21:25:00 +02:00
"gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",
"gree/jose": "<=2.2",
"gregwar/rst": "<1.0.3",
"guzzlehttp/guzzle": ">=4-rc.2,<4.2.4|>=5,<5.3.1|>=6,<6.2.1",
"illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10",
2020-08-29 02:12:48 +02:00
"illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4",
2020-08-10 23:35:08 +02:00
"illuminate/database": ">=4,<4.0.99|>=4.1,<4.1.29|>=5.5,<=5.5.44|>=6,<6.18.34|>=7,<7.23.2",
"illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
2020-03-22 13:37:10 +01:00
"illuminate/view": ">=7,<7.1.2",
"ivankristianto/phpwhois": "<=4.3",
"james-heinrich/getid3": "<1.9.9",
"joomla/session": "<1.3.1",
"jsmitty12/phpwhois": "<5.1",
"kazist/phpwhois": "<=4.2.6",
2020-08-07 00:48:32 +02:00
"kitodo/presentation": "<3.1.2",
"kreait/firebase-php": ">=3.2,<3.8.1",
"la-haute-societe/tcpdf": "<6.2.22",
2020-08-29 02:12:48 +02:00
"laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.34|>=7,<7.23.2",
"laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10",
"league/commonmark": "<0.18.3",
2020-02-12 22:06:00 +01:00
"librenms/librenms": "<1.53",
2020-09-27 22:04:52 +02:00
"livewire/livewire": ">2.2.4,<2.2.6",
2020-02-12 22:06:00 +01:00
"magento/community-edition": ">=2,<2.2.10|>=2.3,<2.3.3",
"magento/magento1ce": "<1.9.4.3",
"magento/magento1ee": ">=1,<1.14.4.3",
"magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2-p.2",
2020-08-07 00:48:32 +02:00
"marcwillmann/turn": "<0.3.3",
2020-11-28 23:50:49 +01:00
"mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35",
2020-08-07 00:48:32 +02:00
"mittwald/typo3_forum": "<1.2.1",
"monolog/monolog": ">=1.8,<1.12",
"namshi/jose": "<2.2",
2020-10-03 00:50:48 +02:00
"nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",
"nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
2020-07-14 21:25:00 +02:00
"nystudio107/craft-seomatic": "<3.3",
"nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
2020-11-28 23:50:49 +01:00
"october/backend": ">=1.0.319,<1.0.470",
"october/cms": "= 1.0.469|>=1.0.319,<1.0.469",
2020-08-07 00:48:32 +02:00
"october/october": ">=1.0.319,<1.0.466",
"october/rain": ">=1.0.319,<1.0.468",
"onelogin/php-saml": "<2.10.4",
2020-02-24 23:40:55 +01:00
"oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5",
"openid/php-openid": "<2.3",
2020-11-02 00:12:43 +01:00
"openmage/magento-lts": "<19.4.8|>=20,<20.0.4",
"orchid/platform": ">=9,<9.4.4",
"oro/crm": ">=1.7,<1.7.4",
"oro/platform": ">=1.7,<1.7.4",
"padraic/humbug_get_contents": "<1.1.2",
"pagarme/pagarme-php": ">=0,<3",
"paragonie/random_compat": "<2",
2020-11-28 23:50:49 +01:00
"passbolt/passbolt_api": "<2.11",
"paypal/merchant-sdk-php": "<3.12",
2020-11-28 23:50:49 +01:00
"pear/archive_tar": "<1.4.11",
2020-09-12 19:54:41 +02:00
"personnummer/personnummer": "<3.0.2",
2020-02-12 22:06:00 +01:00
"phpfastcache/phpfastcache": ">=5,<5.0.13",
2020-06-07 21:09:49 +02:00
"phpmailer/phpmailer": "<6.1.6",
2020-06-11 20:41:48 +02:00
"phpmussel/phpmussel": ">=1,<1.6",
2020-11-28 23:50:49 +01:00
"phpmyadmin/phpmyadmin": "<4.9.6|>=5,<5.0.3",
2020-02-06 00:54:46 +01:00
"phpoffice/phpexcel": "<1.8.2",
2020-02-12 22:06:00 +01:00
"phpoffice/phpspreadsheet": "<1.8",
"phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3",
"phpwhois/phpwhois": "<=4.2.5",
"phpxmlrpc/extras": "<0.6.1",
2020-02-12 22:06:00 +01:00
"pimcore/pimcore": "<6.3",
2020-11-28 23:50:49 +01:00
"pocketmine/pocketmine-mp": "<3.15.4",
2020-02-12 22:06:00 +01:00
"prestashop/autoupgrade": ">=4,<4.10.1",
2020-09-16 16:42:41 +02:00
"prestashop/contactform": ">1.0.1,<4.3",
2020-02-12 22:06:00 +01:00
"prestashop/gamification": "<2.3.2",
2020-11-28 23:50:49 +01:00
"prestashop/productcomments": ">=4,<4.2",
2020-02-12 22:06:00 +01:00
"prestashop/ps_facetedsearch": "<3.4.1",
"privatebin/privatebin": "<1.2.2|>=1.3,<1.3.2",
"propel/propel": ">=2-alpha.1,<=2-alpha.7",
"propel/propel1": ">=1,<=1.7.1",
2020-10-19 16:46:47 +02:00
"pterodactyl/panel": "<0.7.19|>=1-rc.0,<=1-rc.6",
"pusher/pusher-php-server": "<2.2.1",
2020-06-07 21:09:49 +02:00
"rainlab/debugbar-plugin": "<3.1",
2020-02-12 22:06:00 +01:00
"robrichards/xmlseclibs": "<3.0.4",
2020-09-27 22:04:52 +02:00
"sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1",
"sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9",
"scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11",
"sensiolabs/connect": "<4.2.3",
"serluck/phpwhois": "<=4.2.6",
2020-11-02 00:12:43 +01:00
"shopware/core": "<=6.3.2",
"shopware/platform": "<=6.3.2",
2020-11-28 23:50:49 +01:00
"shopware/shopware": "<5.6.9",
2020-02-06 00:54:46 +01:00
"silverstripe/admin": ">=1.0.3,<1.0.4|>=1.1,<1.1.1",
"silverstripe/assets": ">=1,<1.4.7|>=1.5,<1.5.2",
2020-02-12 22:06:00 +01:00
"silverstripe/cms": "<4.3.6|>=4.4,<4.4.4",
2020-02-06 00:54:46 +01:00
"silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1",
"silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
2020-08-07 00:48:32 +02:00
"silverstripe/framework": "<4.4.7|>=4.5,<4.5.4",
"silverstripe/graphql": ">=2,<2.0.5|>=3,<3.1.2|>=3.2,<3.2.4",
"silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
"silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4",
2020-02-06 00:54:46 +01:00
"silverstripe/subsites": ">=2,<2.1.1",
"silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
"silverstripe/userforms": "<3",
"simple-updates/phpwhois": "<=1",
"simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4",
"simplesamlphp/simplesamlphp": "<1.18.6",
"simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",
2020-02-12 22:06:00 +01:00
"simplito/elliptic-php": "<1.0.6",
"slim/slim": "<2.6",
"smarty/smarty": "<3.1.33",
"socalnick/scn-social-auth": "<1.15.2",
"spoonity/tcpdf": "<6.2.22",
"squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
"ssddanbrown/bookstack": "<0.29.2",
"stormpath/sdk": ">=0,<9.9.99",
2020-01-21 23:22:37 +01:00
"studio-42/elfinder": "<2.1.49",
2020-08-07 00:48:32 +02:00
"sulu/sulu": "<1.6.34|>=2,<2.0.10|>=2.1,<2.1.1",
"swiftmailer/swiftmailer": ">=4,<5.4.5",
"sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
"sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
"sylius/grid-bundle": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
2020-08-29 02:12:48 +02:00
"sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
2020-11-02 00:12:43 +01:00
"sylius/sylius": "<1.6.9|>=1.7,<1.7.9|>=1.8,<1.8.3",
2020-02-06 00:54:46 +01:00
"symbiote/silverstripe-multivaluefield": ">=3,<3.0.99",
2020-02-12 22:06:00 +01:00
"symbiote/silverstripe-versionedfiles": "<=2.0.3",
"symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",
"symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
2020-04-02 15:11:55 +02:00
"symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",
"symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1",
"symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
2020-04-02 15:11:55 +02:00
"symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7",
2020-09-12 19:54:41 +02:00
"symfony/http-kernel": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5",
"symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
"symfony/mime": ">=4.3,<4.3.8",
"symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
"symfony/polyfill": ">=1,<1.10",
"symfony/polyfill-php55": ">=1,<1.10",
"symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
"symfony/routing": ">=2,<2.0.19",
2020-04-02 15:11:55 +02:00
"symfony/security": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=4.4,<4.4.7|>=5,<5.0.7",
"symfony/security-bundle": ">=2,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
"symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<2.8.37|>=3,<3.3.17|>=3.4,<3.4.7|>=4,<4.0.7",
"symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
"symfony/security-guard": ">=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
2020-04-02 15:11:55 +02:00
"symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7",
"symfony/serializer": ">=2,<2.0.11",
2020-09-12 19:54:41 +02:00
"symfony/symfony": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5",
"symfony/translation": ">=2,<2.0.17",
"symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3",
"symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",
"symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
"symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7",
2020-05-20 22:17:00 +02:00
"t3g/svg-sanitizer": "<1.0.3",
"tecnickcom/tcpdf": "<6.2.22",
"thelia/backoffice-default-template": ">=2.1,<2.1.2",
"thelia/thelia": ">=2.1-beta.1,<2.1.3",
"theonedemon/phpwhois": "<=4.2.5",
"titon/framework": ">=0,<9.9.99",
"truckersmp/phpwhois": "<=4.3.1",
"twig/twig": "<1.38|>=2,<2.7",
2020-11-28 23:50:49 +01:00
"typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.23|>=10,<10.4.10",
"typo3/cms-core": ">=8,<8.7.38|>=9,<9.5.23|>=10,<10.4.10",
"typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.10|>=3.1,<3.1.7|>=3.2,<3.2.7|>=3.3,<3.3.5",
"typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4",
"typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
2020-11-28 23:50:49 +01:00
"typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10",
"ua-parser/uap-php": "<3.8",
2020-02-12 22:06:00 +01:00
"usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",
2020-03-03 22:56:41 +01:00
"verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4",
"wallabag/tcpdf": "<6.2.22",
"willdurand/js-translation-bundle": "<2.1.1",
2020-02-12 22:06:00 +01:00
"yii2mod/yii2-cms": "<1.9.2",
"yiisoft/yii": ">=1.1.14,<1.1.15",
2020-09-16 16:42:41 +02:00
"yiisoft/yii2": "<2.0.38",
"yiisoft/yii2-bootstrap": "<2.0.4",
"yiisoft/yii2-dev": "<2.0.15",
"yiisoft/yii2-elasticsearch": "<2.0.5",
"yiisoft/yii2-gii": "<2.0.4",
"yiisoft/yii2-jui": "<2.0.4",
"yiisoft/yii2-redis": "<2.0.8",
2020-02-12 22:06:00 +01:00
"yourls/yourls": "<1.7.4",
"zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3",
"zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",
"zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",
"zendframework/zend-db": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.10|>=2.3,<2.3.5",
"zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",
"zendframework/zend-diactoros": ">=1,<1.8.4",
"zendframework/zend-feed": ">=1,<2.10.3",
"zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",
"zendframework/zend-http": ">=1,<2.8.1",
"zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",
"zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",
"zendframework/zend-mail": ">=2,<2.4.11|>=2.5,<2.7.2",
"zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",
"zendframework/zend-session": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.9|>=2.3,<2.3.4",
"zendframework/zend-validator": ">=2.3,<2.3.6",
"zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",
"zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",
"zendframework/zendframework": "<2.5.1",
"zendframework/zendframework1": "<1.12.20",
"zendframework/zendopenid": ">=2,<2.0.2",
"zendframework/zendxml": ">=1,<1.0.1",
"zetacomponents/mail": "<1.8.2",
"zf-commons/zfc-user": "<1.2.2",
"zfcampus/zf-apigility-doctrine": ">=1,<1.0.3",
"zfr/zfr-oauth2-server-module": "<0.1.2"
},
"type": "metapackage",
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Marco Pivetta",
"email": "ocramius@gmail.com",
"role": "maintainer"
2020-01-30 22:35:03 +01:00
},
{
"name": "Ilya Tribusean",
"email": "slash3b@gmail.com",
"role": "maintainer"
}
],
"description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
2020-10-31 23:09:44 +01:00
"support": {
"issues": "https://github.com/Roave/SecurityAdvisories/issues",
"source": "https://github.com/Roave/SecurityAdvisories/tree/latest"
},
2020-03-22 13:37:10 +01:00
"funding": [
{
"url": "https://github.com/Ocramius",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",
"type": "tidelift"
}
],
2020-11-28 23:50:49 +01:00
"time": "2020-11-26T07:02:13+00:00"
}
],
2020-11-28 23:50:49 +01:00
"aliases": [],
2019-01-23 13:30:58 +01:00
"minimum-stability": "dev",
"stability-flags": {
2020-07-01 21:28:54 +02:00
"amphp/websocket-server": 20,
2020-02-06 00:54:46 +01:00
"danog/madelineproto": 20,
"roave/security-advisories": 20
},
2019-12-31 23:44:44 +01:00
"prefer-stable": true,
2019-01-23 13:30:58 +01:00
"prefer-lowest": false,
"platform": {
2020-01-11 21:53:58 +01:00
"php": ">=7.4.0",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcntl": "*"
2019-01-23 13:30:58 +01:00
},
2020-03-22 13:37:10 +01:00
"platform-dev": [],
2020-10-31 23:09:44 +01:00
"plugin-api-version": "2.0.0"
2019-01-23 13:30:58 +01:00
}