diff --git a/.bp-config/options.json b/.bp-config/options.json
new file mode 100644
index 0000000..566b5db
--- /dev/null
+++ b/.bp-config/options.json
@@ -0,0 +1,11 @@
+{
+ "COMPOSER_INSTALL_OPTIONS": [
+ "--no-dev --optimize-autoloader --no-progress --no-interaction"
+ ],
+ "COMPOSER_VENDOR_DIR": "vendor",
+ "WEBDIR": "web",
+ "PHP_EXTENSIONS": ["bz2", "zlib", "curl", "mcrypt", "gd", "pdo", "pdo_mysql", "mbstring"],
+ "ADDITIONAL_PREPROCESS_CMDS": [
+ "$HOME/bootstrap.sh"
+ ]
+}
diff --git a/.bp-config/php/php.ini.d/memory_limit.ini b/.bp-config/php/php.ini.d/memory_limit.ini
new file mode 100644
index 0000000..8f744af
--- /dev/null
+++ b/.bp-config/php/php.ini.d/memory_limit.ini
@@ -0,0 +1,3 @@
+; Maximum amount of memory a script may consume (128MB)
+; http://php.net/memory-limit
+memory_limit = 512M
diff --git a/.gitignore b/.gitignore
index 8603770..69b6639 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,6 +18,8 @@ vendor
# Ignore local versions of modules.
modules/*
+web/modules/contrib/*
+web/themes/contrib/*
# Ignore local database dumps.
db_dumps
diff --git a/bootstrap.sh b/bootstrap.sh
index 6b9db0a..01db844 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -1,38 +1,44 @@
#!/bin/bash
-set -euxo pipefail
-
-: ${ACCOUNT_NAME?} ${ACCOUNT_PASS?}
-
-fail() {
- echo FAIL $@
- exit 1
-}
-
-bootstrap() {
- creds=$(echo $VCAP_SERVICES | jq -r '.["aws-rds"][0].credentials')
- [ $creds = "null" ] && fail "creds are null; need to bind database?"
-
- db_type=mysql
- db_user=$(echo $creds | jq -r '.username')
- db_pass=$(echo $creds | jq -r '.password')
- db_port=$(echo $creds | jq -r '.port')
- db_host=$(echo $creds | jq -r '.host')
- db_name=$(echo $creds | jq -r '.db_name')
-
- drupal site:install standard --root=$HOME/web --no-interaction \
- --account-name=${ACCOUNT_NAME:-$(gen_cred ACCOUNT_NAME)} \
- --account-pass=${ACCOUNT_PASS:-$(gen_cred ACCOUNT_PASS)} \
- --langcode="en" \
- --db-type=$db_type \
- --db-user=$db_user \
- --db-pass=$db_pass \
- --db-port=$db_port \
- --db-host=$db_host \
- --db-name=$db_name
+set -euo pipefail
+
+SECRETS=$(echo $VCAP_SERVICES | jq -r '.["user-provided"][] | select(.name == "secrets") | .credentials')
+
+install_drupal() {
+ ROOT_USER_NAME=$(echo $SECRETS | jq -r '.ROOT_USER_NAME')
+ ROOT_USER_PASS=$(echo $SECRETS | jq -r '.ROOT_USER_PASS')
+
+ : "${ACCOUNT_NAME:?Need and root user name for Drupal}"
+ : "${ACCOUNT_PASS:?Need and root user pass for Drupal}"
+
+ drupal site:install \
+ --root=$HOME/web \
+ --no-interaction \
+ --account-name="$ROOT_USER_NAME" \
+ --account-pass="$ROOT_USER_PASS" \
+ --langcode="en"
+ # Delete some data created in the "standard" install profile
+ # See https://www.drupal.org/project/drupal/issues/2583113
+ drupal --root=$HOME/web entity:delete shortcut_set default --no-interaction
+ # Set site uuid to match our config
+ UUID=$(grep uuid web/sites/default/config/system.site.yml | cut -d' ' -f2)
+ drupal --root=$HOME/web config:override system.site uuid $UUID
}
-drush --root=$HOME/web core-status bootstrap | grep -q "Successful" || bootstrap
-
-drush --root=$HOME/web pm-info flysystem_s3 --fields=Status | grep -q enabled ||
- drush --root=$HOME/web pm-enable --yes flysystem_s3
-
+if [ "${CF_INSTANCE_INDEX:-''}" == "0" ]; then
+ drupal --root=$HOME/web list | grep database > /dev/null || install_drupal
+ # Sync configs from code
+ drupal --root=$HOME/web config:import --directory $HOME/web/sites/default/config
+
+ # Secrets
+ CRON_KEY=$(openssl rand -base64 32) # Not used, so we set it to a random val
+ BRIGHTCOVE_ACCOUNT=$(echo $SECRETS | jq -r '.BRIGHTCOVE_ACCOUNT')
+ BRIGHTCOVE_CLIENT=$(echo $SECRETS | jq -r '.BRIGHTCOVE_CLIENT')
+ BRIGHTCOVE_SECRET=$(echo $SECRETS | jq -r '.BRIGHTCOVE_SECRET')
+ drupal --root=$HOME/web config:override scheduler.settings lightweight_cron_access_key $CRON_KEY > /dev/null
+ drupal --root=$HOME/web config:override brightcove.brightcove_api_client.nsf_brightcove account_id $BRIGHTCOVE_ACCOUNT > /dev/null
+ drupal --root=$HOME/web config:override brightcove.brightcove_api_client.nsf_brightcove client_id $BRIGHTCOVE_CLIENT > /dev/null
+ drupal --root=$HOME/web config:override brightcove.brightcove_api_client.nsf_brightcove secret_key $BRIGHTCOVE_SECRET > /dev/null
+
+ # Clear the cache
+ drupal --root=$HOME/web cache:rebuild --no-interaction
+fi
diff --git a/composer.json b/composer.json
index 1a3ac52..cb54389 100644
--- a/composer.json
+++ b/composer.json
@@ -1,75 +1,88 @@
{
- "name": "drupal/drupal",
- "description": "Drupal is an open source content management platform powering millions of websites and applications.",
+ "name": "18f/nsf",
+ "description": "The National Science Foundation's beta site",
"type": "project",
"license": "GPL-2.0+",
+ "authors": [
+ {
+ "name": "",
+ "role": ""
+ }
+ ],
+ "repositories": [
+ {
+ "type": "composer",
+ "url": "https://packages.drupal.org/8"
+ }
+ ],
"require": {
- "composer/installers": "^1.0.24",
- "wikimedia/composer-merge-plugin": "^1.4",
- "drush/drush": "^9.1",
- "drupal/features": "^3.5",
+ "php": "^7.1.0",
+ "composer/installers": "^1.2",
+ "cweagans/composer-patches": "^1.6",
+ "drupal-composer/drupal-scaffold": "^2.2",
+ "drupal/bootstrap": "^3.11",
"drupal/brightcove": "^1.3",
- "drupal/inline_entity_form": "^1.0@beta",
- "drupal/time_formatter": "1.x-dev",
- "drupal/entity_embed": "^1.0",
+ "drupal/console": "^1.0.2",
+ "drupal/core": "~8.4",
+ "drupal/ctools": "^3.0",
+ "drupal/devel": "^1.2",
+ "drupal/diff": "^1.0@RC",
"drupal/embed": "^1.0",
"drupal/entity_browser": "^2.0",
- "drupal/ctools": "^3.0",
- "drupal/media_entity": "^1.7"
+ "drupal/entity_embed": "^1.0@beta",
+ "drupal/features": "^3.5",
+ "drupal/flysystem_s3": "^1.0@alpha",
+ "drupal/inline_entity_form": "^1.0@beta",
+ "drupal/masquerade": "^2.0@beta",
+ "drupal/media_entity": "^1.7",
+ "drupal/pathauto": "^1.1",
+ "drupal/rules": "^3.0@alpha",
+ "drupal/scheduler": "^1.0",
+ "drupal/time_formatter": "1.x-dev",
+ "drupal/tour_ui": "^1.0@alpha",
+ "drupal/workflow": "^1.0",
+ "drush/drush": "~8.0|^9.0.0-beta8",
+ "webflo/drupal-finder": "^1.0.0",
+ "webmozart/path-util": "^2.3"
},
- "replace": {
- "drupal/core": "^8.4"
+ "conflict": {
+ "drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
- "preferred-install": "dist",
- "autoloader-suffix": "Drupal8"
- },
- "extra": {
- "_readme": [
- "By default Drupal loads the autoloader from ./vendor/autoload.php.",
- "To change the autoloader you can edit ./autoload.php.",
- "This file specifies the packages.drupal.org repository.",
- "You can read more about this composer repository at:",
- "https://www.drupal.org/node/2718229"
- ],
- "merge-plugin": {
- "include": [
- "core/composer.json",
- "modules/brightcove/composer.json"
- ],
- "recurse": false,
- "replace": false,
- "merge-extra": false
- },
- "installer-paths": {
- "core": ["type:drupal-core"],
- "modules/contrib/{$name}": ["type:drupal-module"],
- "profiles/contrib/{$name}": ["type:drupal-profile"],
- "themes/contrib/{$name}": ["type:drupal-theme"],
- "drush/contrib/{$name}": ["type:drupal-drush"],
- "modules/custom/{$name}": ["type:drupal-custom-module"],
- "themes/custom/{$name}": ["type:drupal-custom-theme"]
- }
+ "sort-packages": true
},
"autoload": {
- "psr-4": {
- "Drupal\\Core\\Composer\\": "core/lib/Drupal/Core/Composer"
- }
+ "classmap": [
+ "scripts/composer/ScriptHandler.php"
+ ]
},
"scripts": {
- "pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump",
- "post-autoload-dump": [
- "Drupal\\Core\\Composer\\Composer::ensureHtaccess"
+ "drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
+ "pre-install-cmd": [
+ "DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
+ ],
+ "pre-update-cmd": [
+ "DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
- "post-package-install": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup",
- "post-package-update": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup"
+ "post-install-cmd": [
+ "DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
+ ],
+ "post-update-cmd": [
+ "DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
+ ]
},
- "repositories": [
- {
- "type": "composer",
- "url": "https://packages.drupal.org/8"
+ "extra": {
+ "installer-paths": {
+ "web/core": ["type:drupal-core"],
+ "web/libraries/{$name}": ["type:drupal-library"],
+ "web/modules/contrib/{$name}": ["type:drupal-module"],
+ "web/profiles/contrib/{$name}": ["type:drupal-profile"],
+ "web/themes/contrib/{$name}": ["type:drupal-theme"],
+ "web/drush/contrib/{$name}": ["type:drupal-drush"],
+ "web/modules/custom/{$name}": ["type:drupal-custom-module"],
+ "web/themes/custom/{$name}": ["type:drupal-custom-theme"]
}
- ]
+ }
}
diff --git a/composer.lock b/composer.lock
index 42f2097..f458f9f 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,8 +4,72 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
- "content-hash": "7c856527a00bb5aef597d25176e357b5",
+ "content-hash": "1e8f381c09766b5590557d88c592e396",
"packages": [
+ {
+ "name": "alchemy/zippy",
+ "version": "0.4.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/alchemy-fr/Zippy.git",
+ "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
+ "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/collections": "~1.0",
+ "ext-mbstring": "*",
+ "php": ">=5.5",
+ "symfony/filesystem": "^2.0.5|^3.0",
+ "symfony/process": "^2.1|^3.0"
+ },
+ "require-dev": {
+ "ext-zip": "*",
+ "guzzle/guzzle": "~3.0",
+ "guzzlehttp/guzzle": "^6.0",
+ "phpunit/phpunit": "^4.0|^5.0",
+ "symfony/finder": "^2.0.5|^3.0"
+ },
+ "suggest": {
+ "ext-zip": "To use the ZipExtensionAdapter",
+ "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
+ "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "0.4.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Alchemy\\Zippy\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Alchemy",
+ "email": "dev.team@alchemy.fr",
+ "homepage": "http://www.alchemy.fr/"
+ }
+ ],
+ "description": "Zippy, the archive manager companion",
+ "keywords": [
+ "bzip",
+ "compression",
+ "tar",
+ "zip"
+ ],
+ "time": "2016-11-03T16:10:31+00:00"
+ },
{
"name": "asm89/stack-cors",
"version": "1.2.0",
@@ -58,6 +122,86 @@
],
"time": "2017-12-20T14:37:45+00:00"
},
+ {
+ "name": "aws/aws-sdk-php",
+ "version": "3.52.27",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/aws/aws-sdk-php.git",
+ "reference": "2ff982460d5c5eb0a57b7c38bd9ad4e9c2f05c86"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/2ff982460d5c5eb0a57b7c38bd9ad4e9c2f05c86",
+ "reference": "2ff982460d5c5eb0a57b7c38bd9ad4e9c2f05c86",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-pcre": "*",
+ "ext-simplexml": "*",
+ "ext-spl": "*",
+ "guzzlehttp/guzzle": "^5.3.1|^6.2.1",
+ "guzzlehttp/promises": "~1.0",
+ "guzzlehttp/psr7": "^1.4.1",
+ "mtdowling/jmespath.php": "~2.2",
+ "php": ">=5.5"
+ },
+ "require-dev": {
+ "andrewsville/php-token-reflection": "^1.4",
+ "aws/aws-php-sns-message-validator": "~1.0",
+ "behat/behat": "~3.0",
+ "doctrine/cache": "~1.4",
+ "ext-dom": "*",
+ "ext-openssl": "*",
+ "nette/neon": "^2.3",
+ "phpunit/phpunit": "^4.8.35|^5.4.3",
+ "psr/cache": "^1.0"
+ },
+ "suggest": {
+ "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
+ "doctrine/cache": "To use the DoctrineCacheAdapter",
+ "ext-curl": "To send requests using cURL",
+ "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Aws\\": "src/"
+ },
+ "files": [
+ "src/functions.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Amazon Web Services",
+ "homepage": "http://aws.amazon.com"
+ }
+ ],
+ "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
+ "homepage": "http://aws.amazon.com/sdkforphp",
+ "keywords": [
+ "amazon",
+ "aws",
+ "cloud",
+ "dynamodb",
+ "ec2",
+ "glacier",
+ "s3",
+ "sdk"
+ ],
+ "time": "2018-03-15T19:43:26+00:00"
+ },
{
"name": "brightcove/api",
"version": "1.1.0",
@@ -115,18 +259,74 @@
],
"time": "2018-01-19T11:00:22+00:00"
},
+ {
+ "name": "caxy/php-htmldiff",
+ "version": "v0.1.7",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/caxy/php-htmldiff.git",
+ "reference": "48c70a963e803b93fe68a191e62d0770b5446f0b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/48c70a963e803b93fe68a191e62d0770b5446f0b",
+ "reference": "48c70a963e803b93fe68a191e62d0770b5446f0b",
+ "shasum": ""
+ },
+ "require": {
+ "ezyang/htmlpurifier": "^4.7",
+ "php": ">=5.3.3",
+ "sunra/php-simple-html-dom-parser": "^1.5"
+ },
+ "require-dev": {
+ "doctrine/cache": "~1.0",
+ "phpunit/phpunit": "~5.0"
+ },
+ "suggest": {
+ "doctrine/cache": "Used for caching the calculated diffs using a Doctrine Cache Provider"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "0.1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "Caxy\\HtmlDiff": "lib/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Josh Schroeder",
+ "email": "jschroeder@caxy.com",
+ "homepage": "http://www.caxy.com"
+ }
+ ],
+ "description": "A library for comparing two HTML files/snippets and highlighting the differences using simple HTML.",
+ "homepage": "https://github.com/caxy/php-htmldiff",
+ "keywords": [
+ "diff",
+ "html"
+ ],
+ "time": "2018-03-15T21:23:44+00:00"
+ },
{
"name": "chi-teck/drupal-code-generator",
- "version": "1.22.0",
+ "version": "1.23.2",
"source": {
"type": "git",
"url": "https://github.com/Chi-teck/drupal-code-generator.git",
- "reference": "c7e3018ebcbdb5befcfe928c792146078c8c2d05"
+ "reference": "b157b38c8c148c67d5b80c7c349b1a446115ea0e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/c7e3018ebcbdb5befcfe928c792146078c8c2d05",
- "reference": "c7e3018ebcbdb5befcfe928c792146078c8c2d05",
+ "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/b157b38c8c148c67d5b80c7c349b1a446115ea0e",
+ "reference": "b157b38c8c148c67d5b80c7c349b1a446115ea0e",
"shasum": ""
},
"require": {
@@ -149,10 +349,10 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "GPL2"
+ "GPL-2.0-or-later"
],
"description": "Drupal code generator",
- "time": "2018-01-06T15:54:30+00:00"
+ "time": "2018-03-03T04:17:26+00:00"
},
{
"name": "composer/installers",
@@ -338,16 +538,16 @@
},
{
"name": "consolidation/annotated-command",
- "version": "2.8.2",
+ "version": "2.8.3",
"source": {
"type": "git",
"url": "https://github.com/consolidation/annotated-command.git",
- "reference": "e97c38717eae23a2bafcf3f09438290eee6ebeb4"
+ "reference": "8f8f5da2ca06fbd3a85f7d551c49f844b7c59437"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e97c38717eae23a2bafcf3f09438290eee6ebeb4",
- "reference": "e97c38717eae23a2bafcf3f09438290eee6ebeb4",
+ "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/8f8f5da2ca06fbd3a85f7d551c49f844b7c59437",
+ "reference": "8f8f5da2ca06fbd3a85f7d551c49f844b7c59437",
"shasum": ""
},
"require": {
@@ -359,6 +559,7 @@
"symfony/finder": "^2.5|^3|^4"
},
"require-dev": {
+ "greg-1-anderson/composer-test-scenarios": "^1",
"phpunit/phpunit": "^4.8",
"satooshi/php-coveralls": "^1.0.2 | dev-master",
"squizlabs/php_codesniffer": "^2.7"
@@ -385,7 +586,7 @@
}
],
"description": "Initialize Symfony Console commands from annotated command class methods.",
- "time": "2017-11-29T16:23:23+00:00"
+ "time": "2018-02-23T16:32:04+00:00"
},
{
"name": "consolidation/config",
@@ -540,16 +741,16 @@
},
{
"name": "consolidation/robo",
- "version": "1.2.1",
+ "version": "1.2.2",
"source": {
"type": "git",
"url": "https://github.com/consolidation/Robo.git",
- "reference": "b6296f1cf1088f1a11b0b819f9e42ef6f00b79a9"
+ "reference": "9ef2724f72feb017517a755564516dbde99e15e4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/consolidation/Robo/zipball/b6296f1cf1088f1a11b0b819f9e42ef6f00b79a9",
- "reference": "b6296f1cf1088f1a11b0b819f9e42ef6f00b79a9",
+ "url": "https://api.github.com/repos/consolidation/Robo/zipball/9ef2724f72feb017517a755564516dbde99e15e4",
+ "reference": "9ef2724f72feb017517a755564516dbde99e15e4",
"shasum": ""
},
"require": {
@@ -573,6 +774,7 @@
"codeception/aspect-mock": "^1|^2.1.1",
"codeception/base": "^2.3.7",
"codeception/verify": "^0.3.2",
+ "goaop/framework": "~2.1.2",
"greg-1-anderson/composer-test-scenarios": "^1",
"natxet/cssmin": "3.0.4",
"patchwork/jsqueeze": "~2",
@@ -613,7 +815,7 @@
}
],
"description": "Modern task runner",
- "time": "2017-12-29T06:48:35+00:00"
+ "time": "2018-02-28T01:03:54+00:00"
},
{
"name": "container-interop/container-interop",
@@ -646,6 +848,110 @@
"homepage": "https://github.com/container-interop/container-interop",
"time": "2017-02-14T19:40:03+00:00"
},
+ {
+ "name": "cweagans/composer-patches",
+ "version": "1.6.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/cweagans/composer-patches.git",
+ "reference": "462e65061606dc6149349535d4322241515d1b16"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/462e65061606dc6149349535d4322241515d1b16",
+ "reference": "462e65061606dc6149349535d4322241515d1b16",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.0",
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "composer/composer": "~1.0",
+ "phpunit/phpunit": "~4.6"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "cweagans\\Composer\\Patches"
+ },
+ "autoload": {
+ "psr-4": {
+ "cweagans\\Composer\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-2-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Cameron Eagans",
+ "email": "me@cweagans.net"
+ }
+ ],
+ "description": "Provides a way to patch Composer packages.",
+ "time": "2017-12-07T16:16:31+00:00"
+ },
+ {
+ "name": "dflydev/dot-access-configuration",
+ "version": "v1.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
+ "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/ae6e7138b1d9063d343322cca63994ee1ac5161d",
+ "reference": "ae6e7138b1d9063d343322cca63994ee1ac5161d",
+ "shasum": ""
+ },
+ "require": {
+ "dflydev/dot-access-data": "1.*",
+ "dflydev/placeholder-resolver": "1.*",
+ "php": ">=5.3.2"
+ },
+ "require-dev": {
+ "symfony/yaml": "~2.1"
+ },
+ "suggest": {
+ "symfony/yaml": "Required for using the YAML Configuration Builders"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "Dflydev\\DotAccessConfiguration": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Dragonfly Development Inc.",
+ "email": "info@dflydev.com",
+ "homepage": "http://dflydev.com"
+ },
+ {
+ "name": "Beau Simensen",
+ "email": "beau@dflydev.com",
+ "homepage": "http://beausimensen.com"
+ }
+ ],
+ "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
+ "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
+ "keywords": [
+ "config",
+ "configuration"
+ ],
+ "time": "2016-12-12T17:43:40+00:00"
+ },
{
"name": "dflydev/dot-access-data",
"version": "v1.1.0",
@@ -705,6 +1011,58 @@
],
"time": "2017-01-20T21:14:22+00:00"
},
+ {
+ "name": "dflydev/placeholder-resolver",
+ "version": "v1.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
+ "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
+ "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "Dflydev\\PlaceholderResolver": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Dragonfly Development Inc.",
+ "email": "info@dflydev.com",
+ "homepage": "http://dflydev.com"
+ },
+ {
+ "name": "Beau Simensen",
+ "email": "beau@dflydev.com",
+ "homepage": "http://beausimensen.com"
+ }
+ ],
+ "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
+ "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
+ "keywords": [
+ "placeholder",
+ "resolver"
+ ],
+ "time": "2012-10-28T21:08:28+00:00"
+ },
{
"name": "dnoegel/php-xdg-base-dir",
"version": "0.1",
@@ -740,30 +1098,30 @@
},
{
"name": "doctrine/annotations",
- "version": "v1.4.0",
+ "version": "v1.6.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/annotations.git",
- "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
+ "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
- "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
+ "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
+ "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
"shasum": ""
},
"require": {
"doctrine/lexer": "1.*",
- "php": "^5.6 || ^7.0"
+ "php": "^7.1"
},
"require-dev": {
"doctrine/cache": "1.*",
- "phpunit/phpunit": "^5.7"
+ "phpunit/phpunit": "^6.4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.4.x-dev"
+ "dev-master": "1.6.x-dev"
}
},
"autoload": {
@@ -804,37 +1162,41 @@
"docblock",
"parser"
],
- "time": "2017-02-24T16:22:25+00:00"
+ "time": "2017-12-06T07:11:42+00:00"
},
{
"name": "doctrine/cache",
- "version": "v1.6.2",
+ "version": "v1.7.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/cache.git",
- "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
+ "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
- "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
+ "url": "https://api.github.com/repos/doctrine/cache/zipball/b3217d58609e9c8e661cd41357a54d926c4a2a1a",
+ "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a",
"shasum": ""
},
"require": {
- "php": "~5.5|~7.0"
+ "php": "~7.1"
},
"conflict": {
"doctrine/common": ">2.2,<2.4"
},
"require-dev": {
- "phpunit/phpunit": "~4.8|~5.0",
- "predis/predis": "~1.0",
- "satooshi/php-coveralls": "~0.6"
+ "alcaeus/mongo-php-adapter": "^1.1",
+ "mongodb/mongodb": "^1.1",
+ "phpunit/phpunit": "^5.7",
+ "predis/predis": "~1.0"
+ },
+ "suggest": {
+ "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.6.x-dev"
+ "dev-master": "1.7.x-dev"
}
},
"autoload": {
@@ -874,24 +1236,24 @@
"cache",
"caching"
],
- "time": "2017-07-22T12:49:21+00:00"
+ "time": "2017-08-25T07:02:50+00:00"
},
{
"name": "doctrine/collections",
- "version": "v1.4.0",
+ "version": "v1.5.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/collections.git",
- "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
+ "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
- "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
+ "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
+ "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0"
+ "php": "^7.1"
},
"require-dev": {
"doctrine/coding-standard": "~0.1@dev",
@@ -941,20 +1303,20 @@
"collections",
"iterator"
],
- "time": "2017-01-03T10:49:41+00:00"
+ "time": "2017-07-22T10:37:32+00:00"
},
{
"name": "doctrine/common",
- "version": "v2.7.3",
+ "version": "v2.8.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/common.git",
- "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
+ "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
- "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
+ "url": "https://api.github.com/repos/doctrine/common/zipball/f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
+ "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
"shasum": ""
},
"require": {
@@ -963,15 +1325,15 @@
"doctrine/collections": "1.*",
"doctrine/inflector": "1.*",
"doctrine/lexer": "1.*",
- "php": "~5.6|~7.0"
+ "php": "~7.1"
},
"require-dev": {
- "phpunit/phpunit": "^5.4.6"
+ "phpunit/phpunit": "^5.7"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.7.x-dev"
+ "dev-master": "2.8.x-dev"
}
},
"autoload": {
@@ -1014,37 +1376,37 @@
"persistence",
"spl"
],
- "time": "2017-07-22T08:35:12+00:00"
+ "time": "2017-08-31T08:43:38+00:00"
},
{
"name": "doctrine/inflector",
- "version": "v1.1.0",
+ "version": "v1.3.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/inflector.git",
- "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
+ "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
- "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
+ "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "php": "^7.1"
},
"require-dev": {
- "phpunit/phpunit": "4.*"
+ "phpunit/phpunit": "^6.2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-master": "1.3.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\Common\\Inflector\\": "lib/"
+ "psr-4": {
+ "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1081,7 +1443,7 @@
"singularize",
"string"
],
- "time": "2015-11-06T14:35:42+00:00"
+ "time": "2018-01-09T20:05:19+00:00"
},
{
"name": "doctrine/lexer",
@@ -1138,17 +1500,124 @@
"time": "2014-09-09T13:34:57+00:00"
},
{
- "name": "drupal/brightcove",
- "version": "1.3.0",
+ "name": "drupal-composer/drupal-scaffold",
+ "version": "2.4.0",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/brightcove",
- "reference": "8.x-1.3"
+ "url": "https://github.com/drupal-composer/drupal-scaffold.git",
+ "reference": "745f0a2d4141fc83d3b42222beff43d66afb3dc6"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/brightcove-8.x-1.3.zip",
- "reference": "8.x-1.3",
+ "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/745f0a2d4141fc83d3b42222beff43d66afb3dc6",
+ "reference": "745f0a2d4141fc83d3b42222beff43d66afb3dc6",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.0.0",
+ "composer/semver": "^1.4",
+ "php": ">=5.4.5"
+ },
+ "require-dev": {
+ "composer/composer": "dev-master",
+ "phpunit/phpunit": "^4.4.0"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "DrupalComposer\\DrupalScaffold\\Plugin",
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "DrupalComposer\\DrupalScaffold\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
+ "time": "2017-12-08T22:53:11+00:00"
+ },
+ {
+ "name": "drupal/bootstrap",
+ "version": "3.11.0",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/bootstrap",
+ "reference": "8.x-3.11"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/bootstrap-8.x-3.11.zip",
+ "reference": "8.x-3.11",
+ "shasum": "6ff80e37e2e1f916646300889f3392764c9cdb32"
+ },
+ "require": {
+ "drupal/core": "~8.0"
+ },
+ "type": "drupal-theme",
+ "extra": {
+ "branch-alias": {
+ "dev-3.x": "3.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-3.11",
+ "datestamp": "1520792884",
+ "security-coverage": {
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Mark Carver (markcarver)",
+ "homepage": "https://www.drupal.org/u/markcarver",
+ "role": "Maintainer"
+ },
+ {
+ "name": "John McCormick (neardark)",
+ "homepage": "https://www.drupal.org/u/neardark",
+ "role": "Co-maintainer"
+ },
+ {
+ "name": "Fabiano Sant'Ana (wundo)",
+ "homepage": "https://www.drupal.org/u/wundo",
+ "role": "Co-maintainer"
+ },
+ {
+ "name": "wundo",
+ "homepage": "https://www.drupal.org/user/25523"
+ }
+ ],
+ "description": "Built to use Bootstrap, a sleek, intuitive, and powerful front-end framework for faster and easier web development.",
+ "homepage": "https://www.drupal.org/project/bootstrap",
+ "support": {
+ "source": "http://cgit.drupalcode.org/bootstrap",
+ "docs": "https://drupal-bootstrap.org",
+ "issues": "https://www.drupal.org/project/issues/bootstrap",
+ "irc": "irc://irc.freenode.org/drupal-bootstrap"
+ }
+ },
+ {
+ "name": "drupal/brightcove",
+ "version": "1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/brightcove",
+ "reference": "8.x-1.3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/brightcove-8.x-1.3.zip",
+ "reference": "8.x-1.3",
"shasum": "157818ac54ee0ef86d06a96a5d995f0ccc9f73f2"
},
"require": {
@@ -1168,7 +1637,7 @@
},
"drupal": {
"version": "8.x-1.3",
- "datestamp": "1517305384",
+ "datestamp": "1517314382",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -1257,7 +1726,7 @@
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0+"
+ "GPL-2.0-or-later"
],
"authors": [
{
@@ -1276,261 +1745,524 @@
}
},
{
- "name": "drupal/ctools",
- "version": "3.0.0",
+ "name": "drupal/console",
+ "version": "1.7.0",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/ctools",
- "reference": "8.x-3.0"
+ "url": "https://github.com/hechoendrupal/drupal-console.git",
+ "reference": "f4edcad048bd70fa2e74a6858c061425117c1ace"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
- "reference": "8.x-3.0",
- "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
+ "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/f4edcad048bd70fa2e74a6858c061425117c1ace",
+ "reference": "f4edcad048bd70fa2e74a6858c061425117c1ace",
+ "shasum": ""
},
"require": {
- "drupal/core": "~8.0"
+ "alchemy/zippy": "0.4.3",
+ "composer/installers": "~1.0",
+ "doctrine/annotations": "^1.2",
+ "doctrine/collections": "^1.3",
+ "drupal/console-core": "1.7.0",
+ "drupal/console-extend-plugin": "~0",
+ "guzzlehttp/guzzle": "~6.1",
+ "php": "^5.5.9 || ^7.0",
+ "psy/psysh": "0.6.* || ~0.8",
+ "symfony/css-selector": "~2.8|~3.0",
+ "symfony/dom-crawler": "~2.8|~3.0",
+ "symfony/http-foundation": "~2.8|~3.0"
},
- "type": "drupal-module",
- "extra": {
- "branch-alias": {
- "dev-3.x": "3.x-dev"
- },
- "drupal": {
- "version": "8.x-3.0",
- "datestamp": "1493401742",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
+ "suggest": {
+ "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
+ "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
+ },
+ "bin": [
+ "bin/drupal"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Drupal\\Console\\": "src"
}
},
- "notification-url": "https://packages.drupal.org/8/downloads",
+ "notification-url": "https://packagist.org/downloads/",
"license": [
- "GPL-2.0+"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "Kris Vanderwater (EclipseGc)",
- "homepage": "https://www.drupal.org/u/eclipsegc",
- "role": "Maintainer"
- },
- {
- "name": "Jakob Perry (japerry)",
- "homepage": "https://www.drupal.org/u/japerry",
- "role": "Maintainer"
- },
- {
- "name": "Tim Plunkett (tim.plunkett)",
- "homepage": "https://www.drupal.org/u/timplunkett",
- "role": "Maintainer"
- },
- {
- "name": "James Gilliland (neclimdul)",
- "homepage": "https://www.drupal.org/u/neclimdul",
- "role": "Maintainer"
- },
- {
- "name": "Daniel Wehner (dawehner)",
- "homepage": "https://www.drupal.org/u/dawehner",
- "role": "Maintainer"
- },
- {
- "name": "joelpittet",
- "homepage": "https://www.drupal.org/user/160302"
- },
- {
- "name": "merlinofchaos",
- "homepage": "https://www.drupal.org/user/26979"
+ "name": "David Flores",
+ "email": "dmousex@gmail.com",
+ "homepage": "http://dmouse.net"
},
{
- "name": "neclimdul",
- "homepage": "https://www.drupal.org/user/48673"
+ "name": "Jesus Manuel Olivas",
+ "email": "jesus.olivas@gmail.com",
+ "homepage": "http://jmolivas.com"
},
{
- "name": "sdboyer",
- "homepage": "https://www.drupal.org/user/146719"
+ "name": "Eduardo Garcia",
+ "email": "enzo@enzolutions.com",
+ "homepage": "http://enzolutions.com/"
},
{
- "name": "sun",
- "homepage": "https://www.drupal.org/user/54136"
+ "name": "Omar Aguirre",
+ "email": "omersguchigu@gmail.com"
},
{
- "name": "tim.plunkett",
- "homepage": "https://www.drupal.org/user/241634"
+ "name": "Drupal Console Contributors",
+ "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
}
],
- "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
- "homepage": "https://www.drupal.org/project/ctools",
- "support": {
- "source": "http://cgit.drupalcode.org/ctools",
- "issues": "https://www.drupal.org/project/issues/ctools"
- }
+ "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
+ "homepage": "http://drupalconsole.com/",
+ "keywords": [
+ "console",
+ "development",
+ "drupal",
+ "symfony"
+ ],
+ "time": "2018-03-06T21:58:52+00:00"
},
{
- "name": "drupal/embed",
- "version": "1.0.0",
+ "name": "drupal/console-core",
+ "version": "1.7.0",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/embed",
- "reference": "8.x-1.0"
+ "url": "https://github.com/hechoendrupal/drupal-console-core.git",
+ "reference": "af8b3e42d225a2782f14163aafdeebbc486fd3e5"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
- "reference": "8.x-1.0",
- "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
+ "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/af8b3e42d225a2782f14163aafdeebbc486fd3e5",
+ "reference": "af8b3e42d225a2782f14163aafdeebbc486fd3e5",
+ "shasum": ""
},
"require": {
- "drupal/core": "~8.0"
+ "dflydev/dot-access-configuration": "^1.0",
+ "drupal/console-en": "1.7.0",
+ "php": "^5.5.9 || ^7.0",
+ "stecman/symfony-console-completion": "~0.7",
+ "symfony/config": "~2.8|~3.0",
+ "symfony/console": "~2.8|~3.0",
+ "symfony/debug": "~2.8|~3.0",
+ "symfony/dependency-injection": "~2.8|~3.0",
+ "symfony/event-dispatcher": "~2.8|~3.0",
+ "symfony/filesystem": "~2.8|~3.0",
+ "symfony/finder": "~2.8|~3.0",
+ "symfony/process": "~2.8|~3.0",
+ "symfony/translation": "~2.8|~3.0",
+ "symfony/yaml": "~2.8|~3.0",
+ "twig/twig": "^1.23.1",
+ "webflo/drupal-finder": "^1.0",
+ "webmozart/path-util": "^2.3"
},
- "type": "drupal-module",
- "extra": {
- "branch-alias": {
- "dev-1.x": "1.x-dev"
- },
- "drupal": {
- "version": "8.x-1.0",
- "datestamp": "1490755685",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Drupal\\Console\\Core\\": "src"
}
},
- "notification-url": "https://packages.drupal.org/8/downloads",
+ "notification-url": "https://packagist.org/downloads/",
"license": [
- "GPL-2.0+"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "Dave Reid",
- "homepage": "https://www.drupal.org/user/53892"
+ "name": "David Flores",
+ "email": "dmousex@gmail.com",
+ "homepage": "http://dmouse.net"
},
{
- "name": "Devin Carlson",
- "homepage": "https://www.drupal.org/user/290182"
+ "name": "Jesus Manuel Olivas",
+ "email": "jesus.olivas@gmail.com",
+ "homepage": "http://jmolivas.com"
},
{
- "name": "Drupal Media Team",
- "homepage": "https://www.drupal.org/user/3260690"
+ "name": "Drupal Console Contributors",
+ "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
},
{
- "name": "cs_shadow",
- "homepage": "https://www.drupal.org/user/2828287"
+ "name": "Eduardo Garcia",
+ "email": "enzo@enzolutions.com",
+ "homepage": "http://enzolutions.com/"
},
{
- "name": "slashrsm",
- "homepage": "https://www.drupal.org/user/744628"
+ "name": "Omar Aguirre",
+ "email": "omersguchigu@gmail.com"
}
],
- "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
- "homepage": "https://www.drupal.org/project/embed",
- "support": {
- "source": "http://cgit.drupalcode.org/embed",
- "issues": "https://www.drupal.org/project/issues/embed",
- "irc": "irc://irc.freenode.org/drupal-media"
- }
+ "description": "Drupal Console Core",
+ "homepage": "http://drupalconsole.com/",
+ "keywords": [
+ "console",
+ "development",
+ "drupal",
+ "symfony"
+ ],
+ "time": "2018-03-06T21:34:03+00:00"
},
{
- "name": "drupal/entity",
- "version": "1.0.0-beta1",
+ "name": "drupal/console-en",
+ "version": "1.7.0",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/entity",
- "reference": "8.x-1.0-beta1"
+ "url": "https://github.com/hechoendrupal/drupal-console-en.git",
+ "reference": "916e121fad50155fc96d1fc98fed2e4aa0d6cd85"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-beta1.zip",
- "reference": "8.x-1.0-beta1",
- "shasum": "6965349818de8cb820113b6841076162190c1a4c"
- },
- "require": {
- "drupal/core": "~8.3"
- },
- "type": "drupal-module",
- "extra": {
- "branch-alias": {
- "dev-1.x": "1.x-dev"
- },
- "drupal": {
- "version": "8.x-1.0-beta1",
- "datestamp": "1505895844",
- "security-coverage": {
- "status": "not-covered",
- "message": "Beta releases are not covered by Drupal security advisories."
- }
- }
+ "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/916e121fad50155fc96d1fc98fed2e4aa0d6cd85",
+ "reference": "916e121fad50155fc96d1fc98fed2e4aa0d6cd85",
+ "shasum": ""
},
- "notification-url": "https://packages.drupal.org/8/downloads",
+ "type": "drupal-console-language",
+ "notification-url": "https://packagist.org/downloads/",
"license": [
- "GPL-2.0+"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "Berdir",
- "homepage": "https://www.drupal.org/user/214652"
+ "name": "David Flores",
+ "email": "dmousex@gmail.com",
+ "homepage": "http://dmouse.net"
},
{
- "name": "bojanz",
- "homepage": "https://www.drupal.org/user/86106"
+ "name": "Jesus Manuel Olivas",
+ "email": "jesus.olivas@gmail.com",
+ "homepage": "http://jmolivas.com"
},
{
- "name": "dawehner",
- "homepage": "https://www.drupal.org/user/99340"
+ "name": "Drupal Console Contributors",
+ "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
},
{
- "name": "dixon_",
- "homepage": "https://www.drupal.org/user/239911"
+ "name": "Eduardo Garcia",
+ "email": "enzo@enzolutions.com",
+ "homepage": "http://enzolutions.com/"
},
{
- "name": "fago",
- "homepage": "https://www.drupal.org/user/16747"
+ "name": "Omar Aguirre",
+ "email": "omersguchigu@gmail.com"
}
],
- "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
- "homepage": "http://drupal.org/project/entity",
- "support": {
- "source": "http://cgit.drupalcode.org/entity"
- }
+ "description": "Drupal Console English Language",
+ "homepage": "http://drupalconsole.com/",
+ "keywords": [
+ "console",
+ "development",
+ "drupal",
+ "symfony"
+ ],
+ "time": "2018-03-06T15:51:54+00:00"
},
{
- "name": "drupal/entity_browser",
- "version": "2.0.0-alpha2",
+ "name": "drupal/console-extend-plugin",
+ "version": "0.9.2",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/entity_browser",
- "reference": "8.x-2.0-alpha2"
+ "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
+ "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0-alpha2.zip",
- "reference": "8.x-2.0-alpha2",
- "shasum": "f31ad069e5c5e95db9b9410a4d71038ac0c5b370"
+ "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
+ "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
+ "shasum": ""
},
"require": {
- "drupal/core": "~8.0"
+ "composer-plugin-api": "^1.0",
+ "symfony/finder": "~2.7|~3.0",
+ "symfony/yaml": "~2.7|~3.0"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
+ },
+ "autoload": {
+ "psr-4": {
+ "Drupal\\Console\\Composer\\Plugin\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "Jesus Manuel Olivas",
+ "email": "jesus.olivas@gmail.com"
+ }
+ ],
+ "description": "Drupal Console Extend Plugin",
+ "time": "2017-07-28T17:11:54+00:00"
+ },
+ {
+ "name": "drupal/core",
+ "version": "8.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/drupal/core.git",
+ "reference": "0b9070370e272da441b4be52561c559c05f4553d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/drupal/core/zipball/0b9070370e272da441b4be52561c559c05f4553d",
+ "reference": "0b9070370e272da441b4be52561c559c05f4553d",
+ "shasum": ""
+ },
+ "require": {
+ "asm89/stack-cors": "^1.1",
+ "composer/semver": "^1.0",
+ "doctrine/annotations": "^1.2",
+ "doctrine/common": "^2.5",
+ "easyrdf/easyrdf": "^0.9",
+ "egulias/email-validator": "^1.2",
+ "ext-date": "*",
+ "ext-dom": "*",
+ "ext-filter": "*",
+ "ext-gd": "*",
+ "ext-hash": "*",
+ "ext-json": "*",
+ "ext-pcre": "*",
+ "ext-pdo": "*",
+ "ext-session": "*",
+ "ext-simplexml": "*",
+ "ext-spl": "*",
+ "ext-tokenizer": "*",
+ "ext-xml": "*",
+ "guzzlehttp/guzzle": "^6.2.1",
+ "masterminds/html5": "^2.1",
+ "paragonie/random_compat": "^1.0|^2.0",
+ "php": "^5.5.9|>=7.0.8",
+ "stack/builder": "^1.0",
+ "symfony-cmf/routing": "^1.4",
+ "symfony/class-loader": "~3.4.0",
+ "symfony/console": "~3.4.0",
+ "symfony/dependency-injection": "~3.4.0",
+ "symfony/event-dispatcher": "~3.4.0",
+ "symfony/http-foundation": "~3.4.0",
+ "symfony/http-kernel": "~3.4.0",
+ "symfony/polyfill-iconv": "^1.0",
+ "symfony/process": "~3.4.0",
+ "symfony/psr-http-message-bridge": "^1.0",
+ "symfony/routing": "~3.4.0",
+ "symfony/serializer": "~3.4.0",
+ "symfony/translation": "~3.4.0",
+ "symfony/validator": "~3.4.0",
+ "symfony/yaml": "~3.4.5",
+ "twig/twig": "^1.35.0",
+ "zendframework/zend-diactoros": "^1.1",
+ "zendframework/zend-feed": "^2.4"
+ },
+ "conflict": {
+ "drush/drush": "<8.1.10"
+ },
+ "replace": {
+ "drupal/action": "self.version",
+ "drupal/aggregator": "self.version",
+ "drupal/automated_cron": "self.version",
+ "drupal/ban": "self.version",
+ "drupal/bartik": "self.version",
+ "drupal/basic_auth": "self.version",
+ "drupal/big_pipe": "self.version",
+ "drupal/block": "self.version",
+ "drupal/block_content": "self.version",
+ "drupal/block_place": "self.version",
+ "drupal/book": "self.version",
+ "drupal/breakpoint": "self.version",
+ "drupal/ckeditor": "self.version",
+ "drupal/classy": "self.version",
+ "drupal/color": "self.version",
+ "drupal/comment": "self.version",
+ "drupal/config": "self.version",
+ "drupal/config_translation": "self.version",
+ "drupal/contact": "self.version",
+ "drupal/content_moderation": "self.version",
+ "drupal/content_translation": "self.version",
+ "drupal/contextual": "self.version",
+ "drupal/core-annotation": "self.version",
+ "drupal/core-assertion": "self.version",
+ "drupal/core-bridge": "self.version",
+ "drupal/core-class-finder": "self.version",
+ "drupal/core-datetime": "self.version",
+ "drupal/core-dependency-injection": "self.version",
+ "drupal/core-diff": "self.version",
+ "drupal/core-discovery": "self.version",
+ "drupal/core-event-dispatcher": "self.version",
+ "drupal/core-file-cache": "self.version",
+ "drupal/core-filesystem": "self.version",
+ "drupal/core-gettext": "self.version",
+ "drupal/core-graph": "self.version",
+ "drupal/core-http-foundation": "self.version",
+ "drupal/core-php-storage": "self.version",
+ "drupal/core-plugin": "self.version",
+ "drupal/core-proxy-builder": "self.version",
+ "drupal/core-render": "self.version",
+ "drupal/core-serialization": "self.version",
+ "drupal/core-transliteration": "self.version",
+ "drupal/core-utility": "self.version",
+ "drupal/core-uuid": "self.version",
+ "drupal/datetime": "self.version",
+ "drupal/datetime_range": "self.version",
+ "drupal/dblog": "self.version",
+ "drupal/dynamic_page_cache": "self.version",
+ "drupal/editor": "self.version",
+ "drupal/entity_reference": "self.version",
+ "drupal/field": "self.version",
+ "drupal/field_layout": "self.version",
+ "drupal/field_ui": "self.version",
+ "drupal/file": "self.version",
+ "drupal/filter": "self.version",
+ "drupal/forum": "self.version",
+ "drupal/hal": "self.version",
+ "drupal/help": "self.version",
+ "drupal/history": "self.version",
+ "drupal/image": "self.version",
+ "drupal/inline_form_errors": "self.version",
+ "drupal/language": "self.version",
+ "drupal/layout_builder": "self.version",
+ "drupal/layout_discovery": "self.version",
+ "drupal/link": "self.version",
+ "drupal/locale": "self.version",
+ "drupal/media": "self.version",
+ "drupal/menu_link_content": "self.version",
+ "drupal/menu_ui": "self.version",
+ "drupal/migrate": "self.version",
+ "drupal/migrate_drupal": "self.version",
+ "drupal/migrate_drupal_ui": "self.version",
+ "drupal/minimal": "self.version",
+ "drupal/node": "self.version",
+ "drupal/options": "self.version",
+ "drupal/page_cache": "self.version",
+ "drupal/path": "self.version",
+ "drupal/quickedit": "self.version",
+ "drupal/rdf": "self.version",
+ "drupal/responsive_image": "self.version",
+ "drupal/rest": "self.version",
+ "drupal/search": "self.version",
+ "drupal/serialization": "self.version",
+ "drupal/settings_tray": "self.version",
+ "drupal/seven": "self.version",
+ "drupal/shortcut": "self.version",
+ "drupal/simpletest": "self.version",
+ "drupal/standard": "self.version",
+ "drupal/stark": "self.version",
+ "drupal/statistics": "self.version",
+ "drupal/syslog": "self.version",
+ "drupal/system": "self.version",
+ "drupal/taxonomy": "self.version",
+ "drupal/telephone": "self.version",
+ "drupal/text": "self.version",
+ "drupal/toolbar": "self.version",
+ "drupal/tour": "self.version",
+ "drupal/tracker": "self.version",
+ "drupal/update": "self.version",
+ "drupal/user": "self.version",
+ "drupal/views": "self.version",
+ "drupal/views_ui": "self.version",
+ "drupal/workflows": "self.version"
},
"require-dev": {
- "drupal/ctools": "*",
- "drupal/inline_entity_form": "*",
- "drupal/paragraphs": "*",
- "drupal/token": "*"
+ "behat/mink": "1.7.x-dev",
+ "behat/mink-goutte-driver": "^1.2",
+ "behat/mink-selenium2-driver": "1.3.x-dev",
+ "drupal/coder": "^8.2.12",
+ "jcalderonzumba/gastonjs": "^1.0.2",
+ "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
+ "mikey179/vfsstream": "^1.2",
+ "phpspec/prophecy": "^1.4",
+ "phpunit/phpunit": "^4.8.35 || ^6.1",
+ "symfony/css-selector": "^3.4.0",
+ "symfony/debug": "^3.4.0",
+ "symfony/phpunit-bridge": "^3.4.3"
+ },
+ "type": "drupal-core",
+ "extra": {
+ "merge-plugin": {
+ "require": [
+ "core/lib/Drupal/Component/Annotation/composer.json",
+ "core/lib/Drupal/Component/Assertion/composer.json",
+ "core/lib/Drupal/Component/Bridge/composer.json",
+ "core/lib/Drupal/Component/ClassFinder/composer.json",
+ "core/lib/Drupal/Component/Datetime/composer.json",
+ "core/lib/Drupal/Component/DependencyInjection/composer.json",
+ "core/lib/Drupal/Component/Diff/composer.json",
+ "core/lib/Drupal/Component/Discovery/composer.json",
+ "core/lib/Drupal/Component/EventDispatcher/composer.json",
+ "core/lib/Drupal/Component/FileCache/composer.json",
+ "core/lib/Drupal/Component/FileSystem/composer.json",
+ "core/lib/Drupal/Component/Gettext/composer.json",
+ "core/lib/Drupal/Component/Graph/composer.json",
+ "core/lib/Drupal/Component/HttpFoundation/composer.json",
+ "core/lib/Drupal/Component/PhpStorage/composer.json",
+ "core/lib/Drupal/Component/Plugin/composer.json",
+ "core/lib/Drupal/Component/ProxyBuilder/composer.json",
+ "core/lib/Drupal/Component/Render/composer.json",
+ "core/lib/Drupal/Component/Serialization/composer.json",
+ "core/lib/Drupal/Component/Transliteration/composer.json",
+ "core/lib/Drupal/Component/Utility/composer.json",
+ "core/lib/Drupal/Component/Uuid/composer.json"
+ ],
+ "recurse": false,
+ "replace": false,
+ "merge-extra": false
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Drupal\\Core\\": "lib/Drupal/Core",
+ "Drupal\\Component\\": "lib/Drupal/Component",
+ "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
+ },
+ "classmap": [
+ "lib/Drupal.php",
+ "lib/Drupal/Component/Utility/Timer.php",
+ "lib/Drupal/Component/Utility/Unicode.php",
+ "lib/Drupal/Core/Database/Database.php",
+ "lib/Drupal/Core/DrupalKernel.php",
+ "lib/Drupal/Core/DrupalKernelInterface.php",
+ "lib/Drupal/Core/Site/Settings.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Drupal is an open source content management platform powering millions of websites and applications.",
+ "time": "2018-03-07T21:10:20+00:00"
+ },
+ {
+ "name": "drupal/ctools",
+ "version": "3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/ctools",
+ "reference": "8.x-3.0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
+ "reference": "8.x-3.0",
+ "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
+ },
+ "require": {
+ "drupal/core": "~8.0"
},
"type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-2.x": "2.x-dev",
- "dev-8.x-1.x": "8.1.x-dev"
+ "dev-3.x": "3.x-dev"
},
"drupal": {
- "version": "8.x-2.0-alpha2",
- "datestamp": "1512118387",
+ "version": "8.x-3.0",
+ "datestamp": "1493401742",
"security-coverage": {
- "status": "not-covered",
- "message": "Alpha releases are not covered by Drupal security advisories."
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
}
}
},
@@ -1540,65 +2272,81 @@
],
"authors": [
{
- "name": "Janez Urevc",
- "homepage": "https://github.com/slashrsm",
+ "name": "Kris Vanderwater (EclipseGc)",
+ "homepage": "https://www.drupal.org/u/eclipsegc",
"role": "Maintainer"
},
{
- "name": "Primoz Hmeljak",
- "homepage": "https://github.com/primsi",
+ "name": "Jakob Perry (japerry)",
+ "homepage": "https://www.drupal.org/u/japerry",
"role": "Maintainer"
},
{
- "name": "See other contributors",
- "homepage": "https://www.drupal.org/node/1943336/committers",
- "role": "contributor"
+ "name": "Tim Plunkett (tim.plunkett)",
+ "homepage": "https://www.drupal.org/u/timplunkett",
+ "role": "Maintainer"
},
{
- "name": "Primsi",
- "homepage": "https://www.drupal.org/user/282629"
+ "name": "James Gilliland (neclimdul)",
+ "homepage": "https://www.drupal.org/u/neclimdul",
+ "role": "Maintainer"
},
{
- "name": "marcingy",
- "homepage": "https://www.drupal.org/user/77320"
+ "name": "Daniel Wehner (dawehner)",
+ "homepage": "https://www.drupal.org/u/dawehner",
+ "role": "Maintainer"
},
{
- "name": "samuel.mortenson",
- "homepage": "https://www.drupal.org/user/2582268"
+ "name": "joelpittet",
+ "homepage": "https://www.drupal.org/user/160302"
},
{
- "name": "slashrsm",
- "homepage": "https://www.drupal.org/user/744628"
+ "name": "merlinofchaos",
+ "homepage": "https://www.drupal.org/user/26979"
+ },
+ {
+ "name": "neclimdul",
+ "homepage": "https://www.drupal.org/user/48673"
+ },
+ {
+ "name": "sdboyer",
+ "homepage": "https://www.drupal.org/user/146719"
+ },
+ {
+ "name": "sun",
+ "homepage": "https://www.drupal.org/user/54136"
+ },
+ {
+ "name": "tim.plunkett",
+ "homepage": "https://www.drupal.org/user/241634"
}
],
- "description": "Entity browsing and selecting component.",
- "homepage": "http://drupal.org/project/entity_browser",
+ "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
+ "homepage": "https://www.drupal.org/project/ctools",
"support": {
- "source": "http://cgit.drupalcode.org/entity_browser",
- "issues": "http://drupal.org/project/issues/entity_browser",
- "irc": "irc://irc.freenode.org/drupal-contribute"
+ "source": "http://cgit.drupalcode.org/ctools",
+ "issues": "https://www.drupal.org/project/issues/ctools"
}
},
{
- "name": "drupal/entity_embed",
- "version": "1.0.0-beta2",
+ "name": "drupal/devel",
+ "version": "1.2.0",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/entity_embed",
- "reference": "8.x-1.0-beta2"
+ "url": "https://git.drupal.org/project/devel",
+ "reference": "8.x-1.2"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.0-beta2.zip",
- "reference": "8.x-1.0-beta2",
- "shasum": "21cdeb2b058efce461683aed9a8951053512dca7"
+ "url": "https://ftp.drupal.org/files/projects/devel-8.x-1.2.zip",
+ "reference": "8.x-1.2",
+ "shasum": "01f3349ef75f6e21fceef24be9d3d6506ca29647"
},
"require": {
- "drupal/core": "*",
- "drupal/embed": "*"
+ "drupal/core": "~8.0"
},
- "require-dev": {
- "drupal/entity_browser": "*"
+ "suggest": {
+ "symfony/var-dumper": "Pretty print complex values better with var-dumper available"
},
"type": "drupal-module",
"extra": {
@@ -1606,11 +2354,11 @@
"dev-1.x": "1.x-dev"
},
"drupal": {
- "version": "8.x-1.0-beta2",
- "datestamp": "1476698339",
+ "version": "8.x-1.2",
+ "datestamp": "1507197844",
"security-coverage": {
- "status": "not-covered",
- "message": "Beta releases are not covered by Drupal security advisories."
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
}
}
},
@@ -1620,63 +2368,77 @@
],
"authors": [
{
- "name": "Dave Reid",
- "homepage": "https://www.drupal.org/user/53892"
+ "name": "Moshe Weitzman",
+ "homepage": "https://github.com/weitzman",
+ "email": "weitzman@tejasa.com",
+ "role": "Maintainer"
},
{
- "name": "Devin Carlson",
- "homepage": "https://www.drupal.org/user/290182"
+ "name": "Hans Salvisberg",
+ "homepage": "https://www.drupal.org/u/salvis",
+ "email": "drupal@salvisberg.com",
+ "role": "Maintainer"
},
{
- "name": "Drupal Media Team",
- "homepage": "https://www.drupal.org/user/3260690"
+ "name": "Luca Lusso",
+ "homepage": "https://www.drupal.org/u/lussoluca",
+ "role": "Maintainer"
},
{
- "name": "cs_shadow",
- "homepage": "https://www.drupal.org/user/2828287"
+ "name": "Marco (willzyx)",
+ "homepage": "https://www.drupal.org/u/willzyx",
+ "role": "Maintainer"
},
{
- "name": "slashrsm",
- "homepage": "https://www.drupal.org/user/744628"
+ "name": "See contributors",
+ "homepage": "https://www.drupal.org/node/3236/committers"
+ },
+ {
+ "name": "salvis",
+ "homepage": "https://www.drupal.org/user/82964"
+ },
+ {
+ "name": "willzyx",
+ "homepage": "https://www.drupal.org/user/1043862"
}
],
- "description": "Allows any entity to be embedded within a text area using a WYSIWYG editor.",
- "homepage": "https://www.drupal.org/project/entity_embed",
+ "description": "Various blocks, pages, and functions for developers.",
+ "homepage": "http://drupal.org/project/devel",
"support": {
- "source": "http://cgit.drupalcode.org/entity_embed",
- "issues": "https://www.drupal.org/project/issues/entity_embed",
- "irc": "irc://irc.freenode.org/drupal-media"
+ "source": "http://cgit.drupalcode.org/devel",
+ "issues": "http://drupal.org/project/devel",
+ "irc": "irc://irc.freenode.org/drupal-contribute"
}
},
{
- "name": "drupal/features",
- "version": "3.5.0",
+ "name": "drupal/diff",
+ "version": "1.0.0-rc1",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/features",
- "reference": "8.x-3.5"
+ "url": "https://git.drupal.org/project/diff",
+ "reference": "8.x-1.0-rc1"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/features-8.x-3.5.zip",
- "reference": "8.x-3.5",
- "shasum": "546b34387018f9adbe742b6992c4d473f9447c41"
+ "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.0-rc1.zip",
+ "reference": "8.x-1.0-rc1",
+ "shasum": "4945154c2c07444195a7ae07011a3b3db941c72a"
},
"require": {
- "drupal/config_update": "*",
- "drupal/core": "*"
+ "drupal/core": "~8.0",
+ "mkalkbrenner/php-htmldiff-advanced": "~0.0.8"
},
"type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-3.x": "3.x-dev"
+ "dev-1.x": "1.x-dev"
},
"drupal": {
- "version": "8.x-3.5",
- "datestamp": "1488908583",
+ "version": "8.x-1.0-rc1",
+ "datestamp": "1484566683",
"security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
+ "status": "not-covered",
+ "message": "RC releases are not covered by Drupal security advisories."
}
}
},
@@ -1686,71 +2448,82 @@
],
"authors": [
{
- "name": "dawehner",
- "homepage": "https://www.drupal.org/user/99340"
+ "name": "Miro Dietiker (miro_dietiker)",
+ "homepage": "https://www.drupal.org/u/miro_dietiker",
+ "role": "Maintainer"
},
{
- "name": "e2thex",
- "homepage": "https://www.drupal.org/user/189123"
+ "name": "Juampy NR (juampynr)",
+ "homepage": "https://www.drupal.org/u/juampynr",
+ "role": "Maintainer"
},
{
- "name": "febbraro",
- "homepage": "https://www.drupal.org/user/43670"
+ "name": "Lucian Hangea (lhangea)",
+ "homepage": "https://www.drupal.org/u/lhangea",
+ "role": "Maintainer"
},
{
- "name": "jmiccolis",
- "homepage": "https://www.drupal.org/user/31731"
+ "name": "Alan D.",
+ "homepage": "https://www.drupal.org/u/alan-d.",
+ "role": "Maintainer"
},
{
- "name": "mpotter",
- "homepage": "https://www.drupal.org/user/616192"
+ "name": "Brian Gilbert (realityloop).",
+ "homepage": "https://www.drupal.org/u/realityloop",
+ "role": "Maintainer"
},
{
- "name": "nedjo",
- "homepage": "https://www.drupal.org/user/4481"
+ "name": "miro_dietiker",
+ "homepage": "https://www.drupal.org/user/227761"
},
{
- "name": "tim.plunkett",
- "homepage": "https://www.drupal.org/user/241634"
+ "name": "realityloop",
+ "homepage": "https://www.drupal.org/user/139189"
+ },
+ {
+ "name": "rötzi",
+ "homepage": "https://www.drupal.org/user/73064"
+ },
+ {
+ "name": "yhahn",
+ "homepage": "https://www.drupal.org/user/264833"
}
],
- "description": "Enables administrators to package configuration into modules.",
- "homepage": "https://www.drupal.org/project/features",
+ "description": "Compares two entity revisions",
+ "homepage": "https://www.drupal.org/project/diff",
"support": {
- "source": "http://cgit.drupalcode.org/features"
+ "source": "http://cgit.drupalcode.org/diff",
+ "issues": "https://www.drupal.org/project/issues/diff"
}
},
{
- "name": "drupal/inline_entity_form",
- "version": "1.0.0-beta1",
+ "name": "drupal/embed",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/inline_entity_form",
- "reference": "8.x-1.0-beta1"
+ "url": "https://git.drupal.org/project/embed",
+ "reference": "8.x-1.0"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-beta1.zip",
- "reference": "8.x-1.0-beta1",
- "shasum": "185ffc28a7b68d19cce057855d1c111f1741a3ea"
+ "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
+ "reference": "8.x-1.0",
+ "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
},
"require": {
"drupal/core": "~8.0"
},
- "require-dev": {
- "drupal/entity_reference_revisions": "*"
- },
"type": "drupal-module",
"extra": {
"branch-alias": {
"dev-1.x": "1.x-dev"
},
"drupal": {
- "version": "8.x-1.0-beta1",
- "datestamp": "1477868343",
- "security-coverage": {
- "status": "not-covered",
- "message": "Beta releases are not covered by Drupal security advisories."
+ "version": "8.x-1.0",
+ "datestamp": "1490755685",
+ "security-coverage": {
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
}
}
},
@@ -1760,53 +2533,50 @@
],
"authors": [
{
- "name": "bojanz",
- "homepage": "https://www.drupal.org/user/86106"
+ "name": "Dave Reid",
+ "homepage": "https://www.drupal.org/user/53892"
},
{
- "name": "dawehner",
- "homepage": "https://www.drupal.org/user/99340"
+ "name": "Devin Carlson",
+ "homepage": "https://www.drupal.org/user/290182"
},
{
- "name": "rszrama",
- "homepage": "https://www.drupal.org/user/49344"
+ "name": "Drupal Media Team",
+ "homepage": "https://www.drupal.org/user/3260690"
},
{
- "name": "slashrsm",
- "homepage": "https://www.drupal.org/user/744628"
+ "name": "cs_shadow",
+ "homepage": "https://www.drupal.org/user/2828287"
},
{
- "name": "webflo",
- "homepage": "https://www.drupal.org/user/254778"
+ "name": "slashrsm",
+ "homepage": "https://www.drupal.org/user/744628"
}
],
- "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
- "homepage": "https://www.drupal.org/project/inline_entity_form",
+ "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
+ "homepage": "https://www.drupal.org/project/embed",
"support": {
- "source": "http://cgit.drupalcode.org/inline_entity_form"
+ "source": "http://cgit.drupalcode.org/embed",
+ "issues": "https://www.drupal.org/project/issues/embed",
+ "irc": "irc://irc.freenode.org/drupal-media"
}
},
{
- "name": "drupal/media_entity",
- "version": "1.7.0",
+ "name": "drupal/entity",
+ "version": "1.0.0-beta3",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/media_entity",
- "reference": "8.x-1.7"
+ "url": "https://git.drupal.org/project/entity",
+ "reference": "8.x-1.0-beta3"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/media_entity-8.x-1.7.zip",
- "reference": "8.x-1.7",
- "shasum": "5f7ccdf1db07732f3c94e642e60d88746e73cc86"
+ "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-beta3.zip",
+ "reference": "8.x-1.0-beta3",
+ "shasum": "5d74dbef7bff0db099517b2c7aad14312eb02afa"
},
"require": {
- "drupal/core": "*",
- "drupal/entity": "*"
- },
- "require-dev": {
- "drupal/entity": "*",
- "drupal/inline_entity_form": "*"
+ "drupal/core": "~8.5"
},
"type": "drupal-module",
"extra": {
@@ -1814,11 +2584,11 @@
"dev-1.x": "1.x-dev"
},
"drupal": {
- "version": "8.x-1.7",
- "datestamp": "1510737185",
+ "version": "8.x-1.0-beta3",
+ "datestamp": "1520958485",
"security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
+ "status": "not-covered",
+ "message": "Beta releases are not covered by Drupal security advisories."
}
}
},
@@ -1832,70 +2602,131 @@
"homepage": "https://www.drupal.org/user/214652"
},
{
- "name": "Dave Reid",
- "homepage": "https://www.drupal.org/user/53892"
- },
- {
- "name": "Drupal Media Team",
- "homepage": "https://www.drupal.org/user/3260690"
+ "name": "bojanz",
+ "homepage": "https://www.drupal.org/user/86106"
},
{
- "name": "Drupal media CI",
- "homepage": "https://www.drupal.org/user/3057985"
+ "name": "dawehner",
+ "homepage": "https://www.drupal.org/user/99340"
},
{
- "name": "Primsi",
- "homepage": "https://www.drupal.org/user/282629"
+ "name": "dixon_",
+ "homepage": "https://www.drupal.org/user/239911"
},
{
- "name": "boztek",
- "homepage": "https://www.drupal.org/user/134410"
+ "name": "fago",
+ "homepage": "https://www.drupal.org/user/16747"
+ }
+ ],
+ "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
+ "homepage": "http://drupal.org/project/entity",
+ "support": {
+ "source": "http://cgit.drupalcode.org/entity"
+ }
+ },
+ {
+ "name": "drupal/entity_browser",
+ "version": "2.0.0-alpha2",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/entity_browser",
+ "reference": "8.x-2.0-alpha2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0-alpha2.zip",
+ "reference": "8.x-2.0-alpha2",
+ "shasum": "f31ad069e5c5e95db9b9410a4d71038ac0c5b370"
+ },
+ "require": {
+ "drupal/core": "~8.0"
+ },
+ "require-dev": {
+ "drupal/ctools": "*",
+ "drupal/inline_entity_form": "*",
+ "drupal/paragraphs": "*",
+ "drupal/token": "*"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-2.x": "2.x-dev",
+ "dev-8.x-1.x": "8.1.x-dev"
},
+ "drupal": {
+ "version": "8.x-2.0-alpha2",
+ "datestamp": "1512118387",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Alpha releases are not covered by Drupal security advisories."
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
{
- "name": "chr.fritsch",
- "homepage": "https://www.drupal.org/user/2103716"
+ "name": "Janez Urevc",
+ "homepage": "https://github.com/slashrsm",
+ "role": "Maintainer"
},
{
- "name": "jcisio",
- "homepage": "https://www.drupal.org/user/210762"
+ "name": "Primoz Hmeljak",
+ "homepage": "https://github.com/primsi",
+ "role": "Maintainer"
},
{
- "name": "katzilla",
- "homepage": "https://www.drupal.org/user/260398"
+ "name": "See other contributors",
+ "homepage": "https://www.drupal.org/node/1943336/committers",
+ "role": "contributor"
},
{
- "name": "marcoscano",
- "homepage": "https://www.drupal.org/user/1288796"
+ "name": "Primsi",
+ "homepage": "https://www.drupal.org/user/282629"
},
{
- "name": "phenaproxima",
- "homepage": "https://www.drupal.org/user/205645"
+ "name": "marcingy",
+ "homepage": "https://www.drupal.org/user/77320"
},
{
- "name": "seanB",
- "homepage": "https://www.drupal.org/user/545912"
+ "name": "samuel.mortenson",
+ "homepage": "https://www.drupal.org/user/2582268"
},
{
"name": "slashrsm",
"homepage": "https://www.drupal.org/user/744628"
}
],
- "description": "Media entity API.",
- "homepage": "https://www.drupal.org/project/media_entity",
+ "description": "Entity browsing and selecting component.",
+ "homepage": "http://drupal.org/project/entity_browser",
"support": {
- "source": "http://cgit.drupalcode.org/media_entity"
+ "source": "http://cgit.drupalcode.org/entity_browser",
+ "issues": "http://drupal.org/project/issues/entity_browser",
+ "irc": "irc://irc.freenode.org/drupal-contribute"
}
},
{
- "name": "drupal/time_formatter",
- "version": "dev-1.x",
+ "name": "drupal/entity_embed",
+ "version": "1.0.0-beta2",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/time_formatter",
- "reference": "57150a6244c9f231d871a8256470fce6ec877cbf"
+ "url": "https://git.drupal.org/project/entity_embed",
+ "reference": "8.x-1.0-beta2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.0-beta2.zip",
+ "reference": "8.x-1.0-beta2",
+ "shasum": "21cdeb2b058efce461683aed9a8951053512dca7"
},
"require": {
- "drupal/core": "~8.0"
+ "drupal/core": "*",
+ "drupal/embed": "*"
+ },
+ "require-dev": {
+ "drupal/entity_browser": "*"
},
"type": "drupal-module",
"extra": {
@@ -1903,11 +2734,11 @@
"dev-1.x": "1.x-dev"
},
"drupal": {
- "version": "8.x-1.x-dev",
- "datestamp": "1456256339",
+ "version": "8.x-1.0-beta2",
+ "datestamp": "1476698339",
"security-coverage": {
"status": "not-covered",
- "message": "Project has not opted into security advisory coverage!"
+ "message": "Beta releases are not covered by Drupal security advisories."
}
}
},
@@ -1917,62 +2748,60 @@
],
"authors": [
{
- "name": "Boobaa",
- "homepage": "https://www.drupal.org/user/199303"
+ "name": "Dave Reid",
+ "homepage": "https://www.drupal.org/user/53892"
},
{
- "name": "akosh",
- "homepage": "https://www.drupal.org/user/698510"
+ "name": "Devin Carlson",
+ "homepage": "https://www.drupal.org/user/290182"
},
{
- "name": "jan.mashat",
- "homepage": "https://www.drupal.org/user/3198923"
+ "name": "Drupal Media Team",
+ "homepage": "https://www.drupal.org/user/3260690"
},
{
- "name": "tamasd",
- "homepage": "https://www.drupal.org/user/372872"
+ "name": "cs_shadow",
+ "homepage": "https://www.drupal.org/user/2828287"
},
{
- "name": "yce",
- "homepage": "https://www.drupal.org/user/2252152"
+ "name": "slashrsm",
+ "homepage": "https://www.drupal.org/user/744628"
}
],
- "description": "Field formatter for integer fields storing time in seconds/milliseconds displaying it in various formats.",
- "homepage": "https://www.drupal.org/project/time_formatter",
- "keywords": [
- "Drupal"
- ],
+ "description": "Allows any entity to be embedded within a text area using a WYSIWYG editor.",
+ "homepage": "https://www.drupal.org/project/entity_embed",
"support": {
- "source": "http://cgit.drupalcode.org/time_formatter",
- "issues": "http://drupal.org/project/issues/time_formatter"
- },
- "time": "2016-02-23T19:31:18+00:00"
+ "source": "http://cgit.drupalcode.org/entity_embed",
+ "issues": "https://www.drupal.org/project/issues/entity_embed",
+ "irc": "irc://irc.freenode.org/drupal-media"
+ }
},
{
- "name": "drupal/token",
- "version": "1.1.0",
+ "name": "drupal/features",
+ "version": "3.7.0",
"source": {
"type": "git",
- "url": "https://git.drupal.org/project/token",
- "reference": "8.x-1.1"
+ "url": "https://git.drupal.org/project/features",
+ "reference": "8.x-3.7"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/token-8.x-1.1.zip",
- "reference": "8.x-1.1",
- "shasum": "f11042a76bec028b0a86dc33cf6daa19eb55d545"
+ "url": "https://ftp.drupal.org/files/projects/features-8.x-3.7.zip",
+ "reference": "8.x-3.7",
+ "shasum": "1a832002f47f32a83eae789e42e4f06225de9e43"
},
"require": {
- "drupal/core": "~8.0"
+ "drupal/config_update": "^1.4",
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-1.x": "1.x-dev"
+ "dev-3.x": "3.x-dev"
},
"drupal": {
- "version": "8.x-1.1",
- "datestamp": "1513810384",
+ "version": "8.x-3.7",
+ "datestamp": "1519763284",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -1985,1184 +2814,1077 @@
],
"authors": [
{
- "name": "Berdir",
- "homepage": "https://www.drupal.org/user/214652"
+ "name": "dawehner",
+ "homepage": "https://www.drupal.org/user/99340"
},
{
- "name": "Dave Reid",
- "homepage": "https://www.drupal.org/user/53892"
+ "name": "e2thex",
+ "homepage": "https://www.drupal.org/user/189123"
},
{
- "name": "eaton",
- "homepage": "https://www.drupal.org/user/16496"
+ "name": "febbraro",
+ "homepage": "https://www.drupal.org/user/43670"
},
{
- "name": "fago",
- "homepage": "https://www.drupal.org/user/16747"
+ "name": "jmiccolis",
+ "homepage": "https://www.drupal.org/user/31731"
},
{
- "name": "greggles",
- "homepage": "https://www.drupal.org/user/36762"
- },
+ "name": "mpotter",
+ "homepage": "https://www.drupal.org/user/616192"
+ },
{
- "name": "mikeryan",
- "homepage": "https://www.drupal.org/user/4420"
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "tim.plunkett",
+ "homepage": "https://www.drupal.org/user/241634"
}
],
- "description": "Provides a user interface for the Token API and some missing core tokens.",
- "homepage": "https://www.drupal.org/project/token",
+ "description": "Enables administrators to package configuration into modules",
+ "homepage": "https://www.drupal.org/project/features",
"support": {
- "source": "http://cgit.drupalcode.org/token"
+ "source": "http://cgit.drupalcode.org/features"
}
},
{
- "name": "drush/drush",
- "version": "9.1.0",
+ "name": "drupal/flysystem",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/drush-ops/drush.git",
- "reference": "0380bba1ba88271caab8239edd640ee4ebaac3ee"
+ "url": "https://git.drupal.org/project/flysystem",
+ "reference": "8.x-1.0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/drush-ops/drush/zipball/0380bba1ba88271caab8239edd640ee4ebaac3ee",
- "reference": "0380bba1ba88271caab8239edd640ee4ebaac3ee",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/flysystem-8.x-1.0.zip",
+ "reference": "8.x-1.0",
+ "shasum": "8b6bd358c24e7ec8504d324f6a50bdc11ac1dc14"
},
"require": {
- "chi-teck/drupal-code-generator": "^1.21.0",
- "composer/semver": "^1.4",
- "consolidation/annotated-command": "^2.8.1",
- "consolidation/config": "^1.0.9",
- "consolidation/output-formatters": "^3.1.12",
- "consolidation/robo": "^1.1.5",
- "ext-dom": "*",
- "grasmash/yaml-expander": "^1.1.1",
- "league/container": "~2",
- "php": ">=5.6.0",
- "psr/log": "~1.0",
- "psy/psysh": "~0.6",
- "sebastian/version": "^1|^2",
- "symfony/config": "~2.2|^3",
- "symfony/console": "~2.7|^3",
- "symfony/event-dispatcher": "~2.7|^3",
- "symfony/finder": "~2.7|^3",
- "symfony/process": "~2.7|^3",
- "symfony/var-dumper": "~2.7|^3",
- "symfony/yaml": "~2.3|^3",
- "webflo/drupal-finder": "^1.1",
- "webmozart/path-util": "^2.1.0"
+ "drupal/core": "~8.0",
+ "league/flysystem": "^1.0.3",
+ "league/flysystem-replicate-adapter": "~1.0",
+ "twistor/flysystem-stream-wrapper": "^1.0.5"
},
"require-dev": {
- "lox/xhprof": "dev-master",
- "phpunit/phpunit": "^4.8|^5.5.4",
- "squizlabs/php_codesniffer": "^2.7"
+ "league/flysystem-memory": "~1.0"
},
- "bin": [
- "drush"
- ],
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-master": "9.0.x-dev"
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0",
+ "datestamp": "1497585842",
+ "security-coverage": {
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
+ }
}
},
"autoload": {
"psr-4": {
- "Drush\\": "src/",
- "Drush\\Internal\\": "internal-copy/",
- "Unish\\": "tests/"
+ "Drupal\\flysystem\\": "src/"
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
- "name": "Moshe Weitzman",
- "email": "weitzman@tejasa.com"
- },
- {
- "name": "Owen Barton",
- "email": "drupal@owenbarton.com"
- },
- {
- "name": "Greg Anderson",
- "email": "greg.1.anderson@greenknowe.org"
- },
- {
- "name": "Jonathan Araña Cruz",
- "email": "jonhattan@faita.net"
- },
- {
- "name": "Jonathan Hedstrom",
- "email": "jhedstrom@gmail.com"
- },
- {
- "name": "Christopher Gervais",
- "email": "chris@ergonlogic.com"
- },
- {
- "name": "Dave Reid",
- "email": "dave@davereid.net"
+ "name": "twistor",
+ "homepage": "https://www.drupal.org/user/473738"
},
{
- "name": "Damian Lee",
- "email": "damiankloip@googlemail.com"
+ "name": "vijaycs85",
+ "homepage": "https://www.drupal.org/user/93488"
}
],
- "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
- "homepage": "http://www.drush.org",
- "time": "2018-02-06T20:02:10+00:00"
+ "description": "Provides access to various filesystem backends using Flysystem.",
+ "homepage": "https://www.drupal.org/project/flysystem",
+ "support": {
+ "source": "http://cgit.drupalcode.org/flysystem"
+ }
},
{
- "name": "easyrdf/easyrdf",
- "version": "0.9.1",
+ "name": "drupal/flysystem_s3",
+ "version": "1.0.0-alpha2",
"source": {
"type": "git",
- "url": "https://github.com/njh/easyrdf.git",
- "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
+ "url": "https://git.drupal.org/project/flysystem_s3",
+ "reference": "8.x-1.0-alpha2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
- "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/flysystem_s3-8.x-1.0-alpha2.zip",
+ "reference": "8.x-1.0-alpha2",
+ "shasum": "8793c4324e561c0dfe99acf164fc0883b880f348"
},
"require": {
- "ext-mbstring": "*",
- "ext-pcre": "*",
- "php": ">=5.2.8"
- },
- "require-dev": {
- "phpunit/phpunit": "~3.5",
- "sami/sami": "~1.4",
- "squizlabs/php_codesniffer": "~1.4.3"
- },
- "suggest": {
- "ml/json-ld": "~1.0"
+ "drupal/core": "~8.0",
+ "drupal/flysystem": "*",
+ "league/flysystem": "^1.0.20",
+ "league/flysystem-aws-s3-v3": "^1.0, !=1.0.12, !=1.0.13"
},
- "type": "library",
- "autoload": {
- "psr-0": {
- "EasyRdf_": "lib/"
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha2",
+ "datestamp": "1469068442",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Alpha releases are not covered by Drupal security advisories."
+ }
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "BSD-3-Clause"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "Nicholas Humfrey",
- "email": "njh@aelius.com",
- "homepage": "http://www.aelius.com/njh/",
- "role": "Developer"
+ "name": "cweagans",
+ "homepage": "https://www.drupal.org/user/404732"
},
{
- "name": "Alexey Zakhlestin",
- "email": "indeyets@gmail.com",
- "role": "Developer"
+ "name": "twistor",
+ "homepage": "https://www.drupal.org/user/473738"
+ },
+ {
+ "name": "vijaycs85",
+ "homepage": "https://www.drupal.org/user/93488"
}
],
- "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
- "homepage": "http://www.easyrdf.org/",
- "keywords": [
- "Linked Data",
- "RDF",
- "Semantic Web",
- "Turtle",
- "rdfa",
- "sparql"
- ],
- "time": "2015-02-27T09:45:49+00:00"
+ "description": "Provides an Amazon S3 plugin for Flysystem.",
+ "homepage": "https://www.drupal.org/project/flysystem_s3",
+ "support": {
+ "source": "http://cgit.drupalcode.org/flysystem_s3"
+ }
},
{
- "name": "egulias/email-validator",
- "version": "1.2.14",
+ "name": "drupal/inline_entity_form",
+ "version": "1.0.0-beta1",
"source": {
"type": "git",
- "url": "https://github.com/egulias/EmailValidator.git",
- "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9"
+ "url": "https://git.drupal.org/project/inline_entity_form",
+ "reference": "8.x-1.0-beta1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9",
- "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-beta1.zip",
+ "reference": "8.x-1.0-beta1",
+ "shasum": "185ffc28a7b68d19cce057855d1c111f1741a3ea"
},
"require": {
- "doctrine/lexer": "^1.0.1",
- "php": ">= 5.3.3"
+ "drupal/core": "~8.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.24"
+ "drupal/entity_reference_revisions": "*"
},
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Egulias\\": "src/"
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-beta1",
+ "datestamp": "1477868343",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Beta releases are not covered by Drupal security advisories."
+ }
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "MIT"
+ "GPL-2.0+"
],
"authors": [
{
- "name": "Eduardo Gulias Davis"
+ "name": "bojanz",
+ "homepage": "https://www.drupal.org/user/86106"
+ },
+ {
+ "name": "dawehner",
+ "homepage": "https://www.drupal.org/user/99340"
+ },
+ {
+ "name": "rszrama",
+ "homepage": "https://www.drupal.org/user/49344"
+ },
+ {
+ "name": "slashrsm",
+ "homepage": "https://www.drupal.org/user/744628"
+ },
+ {
+ "name": "webflo",
+ "homepage": "https://www.drupal.org/user/254778"
}
],
- "description": "A library for validating emails",
- "homepage": "https://github.com/egulias/EmailValidator",
- "keywords": [
- "email",
- "emailvalidation",
- "emailvalidator",
- "validation",
- "validator"
- ],
- "time": "2017-02-03T22:48:59+00:00"
+ "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
+ "homepage": "https://www.drupal.org/project/inline_entity_form",
+ "support": {
+ "source": "http://cgit.drupalcode.org/inline_entity_form"
+ }
},
{
- "name": "grasmash/expander",
- "version": "1.0.0",
+ "name": "drupal/masquerade",
+ "version": "2.0.0-beta1",
"source": {
"type": "git",
- "url": "https://github.com/grasmash/expander.git",
- "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
+ "url": "https://git.drupal.org/project/masquerade",
+ "reference": "8.x-2.0-beta1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
- "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/masquerade-8.x-2.0-beta1.zip",
+ "reference": "8.x-2.0-beta1",
+ "shasum": "d8071c2b01db9a3cc5d5bc8ecd570276e12840d4"
},
"require": {
- "dflydev/dot-access-data": "^1.1.0",
- "php": ">=5.4"
- },
- "require-dev": {
- "greg-1-anderson/composer-test-scenarios": "^1",
- "phpunit/phpunit": "^4|^5.5.4",
- "satooshi/php-coveralls": "^1.0.2|dev-master",
- "squizlabs/php_codesniffer": "^2.7"
+ "drupal/core": "*"
},
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-master": "1.x-dev"
+ "dev-2.x": "2.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-2.0-beta1",
+ "datestamp": "1481184923",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
}
},
- "autoload": {
- "psr-4": {
- "Grasmash\\Expander\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "MIT"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "Matthew Grasmick"
- }
- ],
- "description": "Expands internal property references in PHP arrays file.",
- "time": "2017-12-21T22:14:55+00:00"
- },
- {
- "name": "grasmash/yaml-expander",
- "version": "1.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/grasmash/yaml-expander.git",
- "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
- "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
- "shasum": ""
- },
- "require": {
- "dflydev/dot-access-data": "^1.1.0",
- "php": ">=5.4",
- "symfony/yaml": "^2.8.11|^3|^4"
- },
- "require-dev": {
- "greg-1-anderson/composer-test-scenarios": "^1",
- "phpunit/phpunit": "^4.8|^5.5.4",
- "satooshi/php-coveralls": "^1.0.2|dev-master",
- "squizlabs/php_codesniffer": "^2.7"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Grasmash\\YamlExpander\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
+ "name": "Gurpartap Singh",
+ "homepage": "https://www.drupal.org/user/41470"
+ },
{
- "name": "Matthew Grasmick"
+ "name": "andypost",
+ "homepage": "https://www.drupal.org/user/118908"
+ },
+ {
+ "name": "deekayen",
+ "homepage": "https://www.drupal.org/user/972"
+ },
+ {
+ "name": "deviantintegral",
+ "homepage": "https://www.drupal.org/user/71291"
+ },
+ {
+ "name": "shrop",
+ "homepage": "https://www.drupal.org/user/14767"
+ },
+ {
+ "name": "sun",
+ "homepage": "https://www.drupal.org/user/54136"
}
],
- "description": "Expands internal property references in a yaml file.",
- "time": "2017-12-16T16:06:03+00:00"
+ "description": "Allows privileged users to masquerade as another user.",
+ "homepage": "https://www.drupal.org/project/masquerade",
+ "support": {
+ "source": "http://cgit.drupalcode.org/masquerade"
+ }
},
{
- "name": "guzzlehttp/guzzle",
- "version": "6.3.0",
+ "name": "drupal/media_entity",
+ "version": "1.7.0",
"source": {
"type": "git",
- "url": "https://github.com/guzzle/guzzle.git",
- "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
+ "url": "https://git.drupal.org/project/media_entity",
+ "reference": "8.x-1.7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
- "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/media_entity-8.x-1.7.zip",
+ "reference": "8.x-1.7",
+ "shasum": "5f7ccdf1db07732f3c94e642e60d88746e73cc86"
},
"require": {
- "guzzlehttp/promises": "^1.0",
- "guzzlehttp/psr7": "^1.4",
- "php": ">=5.5"
+ "drupal/core": "*",
+ "drupal/entity": "*"
},
"require-dev": {
- "ext-curl": "*",
- "phpunit/phpunit": "^4.0 || ^5.0",
- "psr/log": "^1.0"
- },
- "suggest": {
- "psr/log": "Required for using the Log middleware"
+ "drupal/entity": "*",
+ "drupal/inline_entity_form": "*"
},
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-master": "6.2-dev"
- }
- },
- "autoload": {
- "files": [
- "src/functions_include.php"
- ],
- "psr-4": {
- "GuzzleHttp\\": "src/"
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.7",
+ "datestamp": "1510737185",
+ "security-coverage": {
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
+ }
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "MIT"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "Michael Dowling",
- "email": "mtdowling@gmail.com",
- "homepage": "https://github.com/mtdowling"
- }
- ],
- "description": "Guzzle is a PHP HTTP client library",
- "homepage": "http://guzzlephp.org/",
- "keywords": [
- "client",
- "curl",
- "framework",
- "http",
- "http client",
- "rest",
- "web service"
- ],
- "time": "2017-06-22T18:50:49+00:00"
- },
- {
- "name": "guzzlehttp/promises",
- "version": "v1.3.1",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/promises.git",
- "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
- "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "GuzzleHttp\\Promise\\": "src/"
+ "name": "Berdir",
+ "homepage": "https://www.drupal.org/user/214652"
},
- "files": [
- "src/functions_include.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
{
- "name": "Michael Dowling",
- "email": "mtdowling@gmail.com",
- "homepage": "https://github.com/mtdowling"
- }
- ],
- "description": "Guzzle promises library",
- "keywords": [
- "promise"
- ],
- "time": "2016-12-20T10:07:11+00:00"
- },
- {
- "name": "guzzlehttp/psr7",
- "version": "1.4.2",
- "source": {
- "type": "git",
- "url": "https://github.com/guzzle/psr7.git",
- "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
- "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4.0",
- "psr/http-message": "~1.0"
- },
- "provide": {
- "psr/http-message-implementation": "1.0"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "GuzzleHttp\\Psr7\\": "src/"
+ "name": "Dave Reid",
+ "homepage": "https://www.drupal.org/user/53892"
},
- "files": [
- "src/functions_include.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
{
- "name": "Michael Dowling",
- "email": "mtdowling@gmail.com",
- "homepage": "https://github.com/mtdowling"
+ "name": "Drupal Media Team",
+ "homepage": "https://www.drupal.org/user/3260690"
},
{
- "name": "Tobias Schultze",
- "homepage": "https://github.com/Tobion"
- }
- ],
- "description": "PSR-7 message implementation that also provides common utility methods",
- "keywords": [
- "http",
- "message",
- "request",
- "response",
- "stream",
- "uri",
- "url"
- ],
- "time": "2017-03-20T17:10:46+00:00"
- },
- {
- "name": "jakub-onderka/php-console-color",
- "version": "0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
- "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
- "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.2"
- },
- "require-dev": {
- "jakub-onderka/php-code-style": "1.0",
- "jakub-onderka/php-parallel-lint": "0.*",
- "jakub-onderka/php-var-dump-check": "0.*",
- "phpunit/phpunit": "3.7.*",
- "squizlabs/php_codesniffer": "1.*"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "JakubOnderka\\PhpConsoleColor": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-2-Clause"
- ],
- "authors": [
+ "name": "Drupal media CI",
+ "homepage": "https://www.drupal.org/user/3057985"
+ },
{
- "name": "Jakub Onderka",
- "email": "jakub.onderka@gmail.com",
- "homepage": "http://www.acci.cz"
- }
- ],
- "time": "2014-04-08T15:00:19+00:00"
- },
- {
- "name": "jakub-onderka/php-console-highlighter",
- "version": "v0.3.2",
- "source": {
- "type": "git",
- "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
- "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
- "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
- "shasum": ""
- },
- "require": {
- "jakub-onderka/php-console-color": "~0.1",
- "php": ">=5.3.0"
- },
- "require-dev": {
- "jakub-onderka/php-code-style": "~1.0",
- "jakub-onderka/php-parallel-lint": "~0.5",
- "jakub-onderka/php-var-dump-check": "~0.1",
- "phpunit/phpunit": "~4.0",
- "squizlabs/php_codesniffer": "~1.5"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "JakubOnderka\\PhpConsoleHighlighter": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
+ "name": "Primsi",
+ "homepage": "https://www.drupal.org/user/282629"
+ },
{
- "name": "Jakub Onderka",
- "email": "acci@acci.cz",
- "homepage": "http://www.acci.cz/"
+ "name": "boztek",
+ "homepage": "https://www.drupal.org/user/134410"
+ },
+ {
+ "name": "chr.fritsch",
+ "homepage": "https://www.drupal.org/user/2103716"
+ },
+ {
+ "name": "jcisio",
+ "homepage": "https://www.drupal.org/user/210762"
+ },
+ {
+ "name": "katzilla",
+ "homepage": "https://www.drupal.org/user/260398"
+ },
+ {
+ "name": "marcoscano",
+ "homepage": "https://www.drupal.org/user/1288796"
+ },
+ {
+ "name": "phenaproxima",
+ "homepage": "https://www.drupal.org/user/205645"
+ },
+ {
+ "name": "seanB",
+ "homepage": "https://www.drupal.org/user/545912"
+ },
+ {
+ "name": "slashrsm",
+ "homepage": "https://www.drupal.org/user/744628"
}
],
- "time": "2015-04-20T18:58:01+00:00"
+ "description": "Media entity API.",
+ "homepage": "https://www.drupal.org/project/media_entity",
+ "support": {
+ "source": "http://cgit.drupalcode.org/media_entity"
+ }
},
{
- "name": "league/container",
- "version": "2.4.1",
+ "name": "drupal/pathauto",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/thephpleague/container.git",
- "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
+ "url": "https://git.drupal.org/project/pathauto",
+ "reference": "8.x-1.1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
- "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.1.zip",
+ "reference": "8.x-1.1",
+ "shasum": "3e24c9ff419c1f4bbe9d638eb7477a2169777a11"
},
"require": {
- "container-interop/container-interop": "^1.2",
- "php": "^5.4.0 || ^7.0"
- },
- "provide": {
- "container-interop/container-interop-implementation": "^1.2",
- "psr/container-implementation": "^1.0"
- },
- "replace": {
- "orno/di": "~2.0"
- },
- "require-dev": {
- "phpunit/phpunit": "4.*"
+ "drupal/core": "*",
+ "drupal/ctools": "*",
+ "drupal/token": "*"
},
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-2.x": "2.x-dev",
"dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.1",
+ "datestamp": "1520092685",
+ "security-coverage": {
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
+ }
}
},
- "autoload": {
- "psr-4": {
- "League\\Container\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "MIT"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "Phil Bennett",
- "email": "philipobenito@gmail.com",
- "homepage": "http://www.philipobenito.com",
- "role": "Developer"
+ "name": "Berdir",
+ "homepage": "https://www.drupal.org/user/214652"
+ },
+ {
+ "name": "Dave Reid",
+ "homepage": "https://www.drupal.org/user/53892"
+ },
+ {
+ "name": "Freso",
+ "homepage": "https://www.drupal.org/user/27504"
+ },
+ {
+ "name": "greggles",
+ "homepage": "https://www.drupal.org/user/36762"
}
],
- "description": "A fast and intuitive dependency injection container.",
- "homepage": "https://github.com/thephpleague/container",
- "keywords": [
- "container",
- "dependency",
- "di",
- "injection",
- "league",
- "provider",
- "service"
- ],
- "time": "2017-05-10T09:20:27+00:00"
+ "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
+ "homepage": "https://www.drupal.org/project/pathauto",
+ "support": {
+ "source": "http://cgit.drupalcode.org/pathauto"
+ }
},
{
- "name": "masterminds/html5",
- "version": "2.3.0",
+ "name": "drupal/rules",
+ "version": "3.0.0-alpha3",
"source": {
"type": "git",
- "url": "https://github.com/Masterminds/html5-php.git",
- "reference": "2c37c6c520b995b761674de3be8455a381679067"
+ "url": "https://git.drupal.org/project/rules",
+ "reference": "8.x-3.0-alpha3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
- "reference": "2c37c6c520b995b761674de3be8455a381679067",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/rules-8.x-3.0-alpha3.zip",
+ "reference": "8.x-3.0-alpha3",
+ "shasum": "e8cf4212479a6f8418b519c93b08a8bd22cf00d3"
},
"require": {
- "ext-libxml": "*",
- "php": ">=5.3.0"
- },
- "require-dev": {
- "phpunit/phpunit": "4.*",
- "sami/sami": "~2.0",
- "satooshi/php-coveralls": "1.0.*"
+ "drupal/core": "~8.0",
+ "drupal/typed_data": "*"
},
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-master": "2.2-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Masterminds\\": "src"
+ "dev-3.x": "3.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-3.0-alpha3",
+ "datestamp": "1495743783",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Alpha releases are not covered by Drupal security advisories."
+ }
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "MIT"
+ "GPL-2.0+"
],
"authors": [
{
- "name": "Matt Butcher",
- "email": "technosophos@gmail.com"
- },
- {
- "name": "Asmir Mustafic",
- "email": "goetas@gmail.com"
+ "name": "fago",
+ "homepage": "https://www.drupal.org/user/16747"
},
{
- "name": "Matt Farina",
- "email": "matt@mattfarina.com"
+ "name": "klausi",
+ "homepage": "https://www.drupal.org/user/262198"
}
],
- "description": "An HTML5 parser and serializer.",
- "homepage": "http://masterminds.github.io/html5-php",
- "keywords": [
- "HTML5",
- "dom",
- "html",
- "parser",
- "querypath",
- "serializer",
- "xml"
- ],
- "time": "2017-09-04T12:26:28+00:00"
+ "description": "React on events and conditionally evaluate actions.",
+ "homepage": "https://www.drupal.org/project/rules",
+ "support": {
+ "source": "http://cgit.drupalcode.org/rules"
+ }
},
{
- "name": "nikic/php-parser",
- "version": "v3.1.4",
+ "name": "drupal/scheduler",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "e57b3a09784f846411aa7ed664eedb73e3399078"
+ "url": "https://git.drupal.org/project/scheduler",
+ "reference": "8.x-1.0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e57b3a09784f846411aa7ed664eedb73e3399078",
- "reference": "e57b3a09784f846411aa7ed664eedb73e3399078",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/scheduler-8.x-1.0.zip",
+ "reference": "8.x-1.0",
+ "shasum": "213025b64b417f459b73d260d7287ca1f916d587"
},
"require": {
- "ext-tokenizer": "*",
- "php": ">=5.5"
+ "drupal/core": "*"
},
"require-dev": {
- "phpunit/phpunit": "~4.0|~5.0"
+ "drupal/devel_generate": "*",
+ "drupal/rules": "*"
},
- "bin": [
- "bin/php-parse"
- ],
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "PhpParser\\": "lib/PhpParser"
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0",
+ "datestamp": "1510690385",
+ "security-coverage": {
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
+ }
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "BSD-3-Clause"
+ "GPL-2.0+"
],
"authors": [
{
- "name": "Nikita Popov"
+ "name": "Eric Schaefer (Eric Schaefer)",
+ "homepage": "https://www.drupal.org/u/eric-schaefer",
+ "role": "Maintainer"
+ },
+ {
+ "name": "Jonathan Smith (jonathan1055)",
+ "homepage": "https://www.drupal.org/u/jonathan1055",
+ "role": "Maintainer"
+ },
+ {
+ "name": "Pieter Frenssen (pfrenssen)",
+ "homepage": "https://www.drupal.org/u/pfrenssen",
+ "role": "Maintainer"
+ },
+ {
+ "name": "Rick Manelius (rickmanelius)",
+ "homepage": "https://www.drupal.org/u/rickmanelius",
+ "role": "Maintainer"
}
],
- "description": "A PHP parser written in PHP",
- "keywords": [
- "parser",
- "php"
- ],
- "time": "2018-01-25T21:31:33+00:00"
+ "description": "Automatically publish and unpublish content at specified dates and times.",
+ "homepage": "https://drupal.org/project/scheduler",
+ "support": {
+ "source": "http://cgit.drupalcode.org/scheduler",
+ "issues": "https://www.drupal.org/project/issues/scheduler"
+ }
},
{
- "name": "paragonie/random_compat",
- "version": "v2.0.11",
+ "name": "drupal/time_formatter",
+ "version": "dev-1.x",
"source": {
"type": "git",
- "url": "https://github.com/paragonie/random_compat.git",
- "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
- "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
- "shasum": ""
+ "url": "https://git.drupal.org/project/time_formatter",
+ "reference": "57150a6244c9f231d871a8256470fce6ec877cbf"
},
"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."
+ "drupal/core": "~8.0"
},
- "type": "library",
- "autoload": {
- "files": [
- "lib/random.php"
- ]
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.x-dev",
+ "datestamp": "1456256339",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "MIT"
+ "GPL-2.0+"
],
"authors": [
{
- "name": "Paragon Initiative Enterprises",
- "email": "security@paragonie.com",
- "homepage": "https://paragonie.com"
+ "name": "Boobaa",
+ "homepage": "https://www.drupal.org/user/199303"
+ },
+ {
+ "name": "akosh",
+ "homepage": "https://www.drupal.org/user/698510"
+ },
+ {
+ "name": "jan.mashat",
+ "homepage": "https://www.drupal.org/user/3198923"
+ },
+ {
+ "name": "tamasd",
+ "homepage": "https://www.drupal.org/user/372872"
+ },
+ {
+ "name": "yce",
+ "homepage": "https://www.drupal.org/user/2252152"
}
],
- "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
+ "description": "Field formatter for integer fields storing time in seconds/milliseconds displaying it in various formats.",
+ "homepage": "https://www.drupal.org/project/time_formatter",
"keywords": [
- "csprng",
- "pseudorandom",
- "random"
+ "Drupal"
],
- "time": "2017-09-27T21:40:39+00:00"
+ "support": {
+ "source": "http://cgit.drupalcode.org/time_formatter",
+ "issues": "http://drupal.org/project/issues/time_formatter"
+ },
+ "time": "2016-02-23T19:31:18+00:00"
},
{
- "name": "psr/container",
- "version": "1.0.0",
+ "name": "drupal/token",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/container.git",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
+ "url": "https://git.drupal.org/project/token",
+ "reference": "8.x-1.1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/token-8.x-1.1.zip",
+ "reference": "8.x-1.1",
+ "shasum": "f11042a76bec028b0a86dc33cf6daa19eb55d545"
},
"require": {
- "php": ">=5.3.0"
+ "drupal/core": "~8.0"
},
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Container\\": "src/"
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.1",
+ "datestamp": "1513810384",
+ "security-coverage": {
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
+ }
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "MIT"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "name": "Berdir",
+ "homepage": "https://www.drupal.org/user/214652"
+ },
+ {
+ "name": "Dave Reid",
+ "homepage": "https://www.drupal.org/user/53892"
+ },
+ {
+ "name": "eaton",
+ "homepage": "https://www.drupal.org/user/16496"
+ },
+ {
+ "name": "fago",
+ "homepage": "https://www.drupal.org/user/16747"
+ },
+ {
+ "name": "greggles",
+ "homepage": "https://www.drupal.org/user/36762"
+ },
+ {
+ "name": "mikeryan",
+ "homepage": "https://www.drupal.org/user/4420"
}
],
- "description": "Common Container Interface (PHP FIG PSR-11)",
- "homepage": "https://github.com/php-fig/container",
- "keywords": [
- "PSR-11",
- "container",
- "container-interface",
- "container-interop",
- "psr"
- ],
- "time": "2017-02-14T16:28:37+00:00"
+ "description": "Provides a user interface for the Token API and some missing core tokens.",
+ "homepage": "https://www.drupal.org/project/token",
+ "support": {
+ "source": "http://cgit.drupalcode.org/token"
+ }
},
{
- "name": "psr/http-message",
- "version": "1.0.1",
+ "name": "drupal/tour_ui",
+ "version": "1.0.0-alpha1",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/http-message.git",
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
+ "url": "https://git.drupal.org/project/tour_ui",
+ "reference": "8.x-1.0-alpha1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/tour_ui-8.x-1.0-alpha1.zip",
+ "reference": "8.x-1.0-alpha1",
+ "shasum": "3c60a163c5699ad31c1a5fb349d5cb639e65e9f0"
},
"require": {
- "php": ">=5.3.0"
+ "drupal/core": "*"
},
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Http\\Message\\": "src/"
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha1",
+ "datestamp": "1496774342",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Alpha releases are not covered by Drupal security advisories."
+ }
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "MIT"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "name": "GoZ",
+ "homepage": "https://www.drupal.org/user/226961"
+ },
+ {
+ "name": "clemens.tolboom",
+ "homepage": "https://www.drupal.org/user/125814"
+ },
+ {
+ "name": "nick_schuch",
+ "homepage": "https://www.drupal.org/user/1412036"
}
],
- "description": "Common interface for HTTP messages",
- "homepage": "https://github.com/php-fig/http-message",
- "keywords": [
- "http",
- "http-message",
- "psr",
- "psr-7",
- "request",
- "response"
- ],
- "time": "2016-08-06T14:39:51+00:00"
+ "description": "Provides a UI to manage guided tours.",
+ "homepage": "https://www.drupal.org/project/tour_ui",
+ "support": {
+ "source": "http://cgit.drupalcode.org/tour_ui"
+ }
},
{
- "name": "psr/log",
- "version": "1.0.2",
+ "name": "drupal/typed_data",
+ "version": "1.0.0-alpha1",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/log.git",
- "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
+ "url": "https://git.drupal.org/project/typed_data",
+ "reference": "8.x-1.0-alpha1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
- "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/typed_data-8.x-1.0-alpha1.zip",
+ "reference": "8.x-1.0-alpha1",
+ "shasum": "69b7230546bfea53d57f8923183e964137f5a456"
},
"require": {
- "php": ">=5.3.0"
+ "drupal/core": "~8.0"
},
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Log\\": "Psr/Log/"
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha1",
+ "datestamp": "1475245822",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Alpha releases are not covered by Drupal security advisories."
+ }
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "MIT"
+ "GPL-2.0+"
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "name": "fago",
+ "homepage": "https://www.drupal.org/user/16747"
}
],
- "description": "Common interface for logging libraries",
- "homepage": "https://github.com/php-fig/log",
- "keywords": [
- "log",
- "psr",
- "psr-3"
- ],
- "time": "2016-10-10T12:19:37+00:00"
+ "description": "Extends the core Typed Data API with new APIS and features.",
+ "homepage": "https://www.drupal.org/project/typed_data",
+ "support": {
+ "source": "http://cgit.drupalcode.org/typed_data"
+ }
},
{
- "name": "psy/psysh",
- "version": "v0.8.17",
+ "name": "drupal/workflow",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/bobthecow/psysh.git",
- "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec"
+ "url": "https://git.drupal.org/project/workflow",
+ "reference": "8.x-1.0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
- "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
- "shasum": ""
+ "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.0.zip",
+ "reference": "8.x-1.0",
+ "shasum": "2c439aab3f92b476cb88dbc517e131ea3cd7be47"
},
"require": {
- "dnoegel/php-xdg-base-dir": "0.1",
- "jakub-onderka/php-console-highlighter": "0.3.*",
- "nikic/php-parser": "~1.3|~2.0|~3.0",
- "php": ">=5.3.9",
- "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
- "symfony/var-dumper": "~2.7|~3.0|~4.0"
- },
- "require-dev": {
- "hoa/console": "~3.16|~1.14",
- "phpunit/phpunit": "^4.8.35|^5.4.3",
- "symfony/finder": "~2.1|~3.0|~4.0"
- },
- "suggest": {
- "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
- "ext-pdo-sqlite": "The doc command requires SQLite to work.",
- "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
- "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
- "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
+ "drupal/core": "*"
},
- "bin": [
- "bin/psysh"
- ],
- "type": "library",
+ "type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-develop": "0.8.x-dev"
- }
- },
- "autoload": {
- "files": [
- "src/Psy/functions.php"
- ],
- "psr-4": {
- "Psy\\": "src/Psy/"
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0",
+ "datestamp": "1513552385",
+ "security-coverage": {
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
+ }
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "MIT"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "Justin Hileman",
- "email": "justin@justinhileman.info",
- "homepage": "http://justinhileman.com"
+ "name": "Bastlynn",
+ "homepage": "https://www.drupal.org/user/275249"
+ },
+ {
+ "name": "Heine",
+ "homepage": "https://www.drupal.org/user/17943"
+ },
+ {
+ "name": "JacobSingh",
+ "homepage": "https://www.drupal.org/user/68912"
+ },
+ {
+ "name": "NancyDru",
+ "homepage": "https://www.drupal.org/user/101412"
+ },
+ {
+ "name": "eaton",
+ "homepage": "https://www.drupal.org/user/16496"
+ },
+ {
+ "name": "johnv",
+ "homepage": "https://www.drupal.org/user/591042"
+ },
+ {
+ "name": "jvandyk",
+ "homepage": "https://www.drupal.org/user/2375"
+ },
+ {
+ "name": "mfredrickson",
+ "homepage": "https://www.drupal.org/user/31994"
+ },
+ {
+ "name": "q0rban",
+ "homepage": "https://www.drupal.org/user/31022"
}
],
- "description": "An interactive shell for modern PHP.",
- "homepage": "http://psysh.org",
- "keywords": [
- "REPL",
- "console",
- "interactive",
- "shell"
- ],
- "time": "2017-12-28T16:14:16+00:00"
+ "description": "Defines a field type with Workflows, containing customizable state transitions.",
+ "homepage": "https://www.drupal.org/project/workflow",
+ "support": {
+ "source": "http://cgit.drupalcode.org/workflow"
+ }
},
{
- "name": "sebastian/version",
- "version": "1.0.6",
+ "name": "drush/drush",
+ "version": "9.2.1",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/version.git",
- "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
+ "url": "https://github.com/drush-ops/drush.git",
+ "reference": "e40f5bb6a291f643d4699a95ef6873ac40ae8302"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/drush-ops/drush/zipball/e40f5bb6a291f643d4699a95ef6873ac40ae8302",
+ "reference": "e40f5bb6a291f643d4699a95ef6873ac40ae8302",
+ "shasum": ""
+ },
+ "require": {
+ "chi-teck/drupal-code-generator": "^1.21.0",
+ "composer/semver": "^1.4",
+ "consolidation/annotated-command": "^2.8.1",
+ "consolidation/config": "^1.0.9",
+ "consolidation/output-formatters": "^3.1.12",
+ "consolidation/robo": "^1.1.5",
+ "ext-dom": "*",
+ "grasmash/yaml-expander": "^1.1.1",
+ "league/container": "~2",
+ "php": ">=5.6.0",
+ "psr/log": "~1.0",
+ "psy/psysh": "~0.6",
+ "sebastian/version": "^1|^2",
+ "symfony/config": "~2.2|^3",
+ "symfony/console": "~2.7|^3",
+ "symfony/event-dispatcher": "~2.7|^3",
+ "symfony/finder": "~2.7|^3",
+ "symfony/process": "~2.7|^3",
+ "symfony/var-dumper": "~2.7|^3",
+ "symfony/yaml": "~2.3|^3",
+ "webflo/drupal-finder": "^1.1",
+ "webmozart/path-util": "^2.1.0"
},
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
- "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
- "shasum": ""
+ "require-dev": {
+ "lox/xhprof": "dev-master",
+ "phpunit/phpunit": "^4.8|^5.5.4",
+ "squizlabs/php_codesniffer": "^2.7"
},
+ "bin": [
+ "drush"
+ ],
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "9.0.x-dev"
+ }
+ },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Drush\\": "src/",
+ "Drush\\Internal\\": "internal-copy/",
+ "Unish\\": "tests/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Moshe Weitzman",
+ "email": "weitzman@tejasa.com"
+ },
+ {
+ "name": "Owen Barton",
+ "email": "drupal@owenbarton.com"
+ },
+ {
+ "name": "Greg Anderson",
+ "email": "greg.1.anderson@greenknowe.org"
+ },
+ {
+ "name": "Jonathan Araña Cruz",
+ "email": "jonhattan@faita.net"
+ },
+ {
+ "name": "Jonathan Hedstrom",
+ "email": "jhedstrom@gmail.com"
+ },
+ {
+ "name": "Christopher Gervais",
+ "email": "chris@ergonlogic.com"
+ },
+ {
+ "name": "Dave Reid",
+ "email": "dave@davereid.net"
+ },
+ {
+ "name": "Damian Lee",
+ "email": "damiankloip@googlemail.com"
}
],
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
- "homepage": "https://github.com/sebastianbergmann/version",
- "time": "2015-06-21T13:59:46+00:00"
+ "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
+ "homepage": "http://www.drush.org",
+ "time": "2018-02-27T21:26:53+00:00"
},
{
- "name": "stack/builder",
- "version": "v1.0.5",
+ "name": "easyrdf/easyrdf",
+ "version": "0.9.1",
"source": {
"type": "git",
- "url": "https://github.com/stackphp/builder.git",
- "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
+ "url": "https://github.com/njh/easyrdf.git",
+ "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
- "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
+ "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
+ "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
"shasum": ""
},
"require": {
- "php": ">=5.3.0",
- "symfony/http-foundation": "~2.1|~3.0|~4.0",
- "symfony/http-kernel": "~2.1|~3.0|~4.0"
+ "ext-mbstring": "*",
+ "ext-pcre": "*",
+ "php": ">=5.2.8"
},
"require-dev": {
- "silex/silex": "~1.0"
+ "phpunit/phpunit": "~3.5",
+ "sami/sami": "~1.4",
+ "squizlabs/php_codesniffer": "~1.4.3"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
+ "suggest": {
+ "ml/json-ld": "~1.0"
},
+ "type": "library",
"autoload": {
"psr-0": {
- "Stack": "src"
+ "EasyRdf_": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Igor Wiedler",
- "email": "igor@wiedler.ch"
+ "name": "Nicholas Humfrey",
+ "email": "njh@aelius.com",
+ "homepage": "http://www.aelius.com/njh/",
+ "role": "Developer"
+ },
+ {
+ "name": "Alexey Zakhlestin",
+ "email": "indeyets@gmail.com",
+ "role": "Developer"
}
],
- "description": "Builder for stack middlewares based on HttpKernelInterface.",
+ "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
+ "homepage": "http://www.easyrdf.org/",
"keywords": [
- "stack"
+ "Linked Data",
+ "RDF",
+ "Semantic Web",
+ "Turtle",
+ "rdfa",
+ "sparql"
],
- "time": "2017-11-18T14:57:29+00:00"
+ "time": "2015-02-27T09:45:49+00:00"
},
{
- "name": "symfony-cmf/routing",
- "version": "1.4.1",
+ "name": "egulias/email-validator",
+ "version": "1.2.14",
"source": {
"type": "git",
- "url": "https://github.com/symfony-cmf/routing.git",
- "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
+ "url": "https://github.com/egulias/EmailValidator.git",
+ "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
- "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9",
+ "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9",
"shasum": ""
},
"require": {
- "php": "^5.3.9|^7.0",
- "psr/log": "1.*",
- "symfony/http-kernel": "^2.2|3.*",
- "symfony/routing": "^2.2|3.*"
+ "doctrine/lexer": "^1.0.1",
+ "php": ">= 5.3.3"
},
"require-dev": {
- "friendsofsymfony/jsrouting-bundle": "^1.1",
- "symfony-cmf/testing": "^1.3",
- "symfony/config": "^2.2|3.*",
- "symfony/dependency-injection": "^2.0.5|3.*",
- "symfony/event-dispatcher": "^2.1|3.*"
- },
- "suggest": {
- "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
+ "phpunit/phpunit": "^4.8.24"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.4-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
- "psr-4": {
- "Symfony\\Cmf\\Component\\Routing\\": ""
+ "psr-0": {
+ "Egulias\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3171,111 +3893,101 @@
],
"authors": [
{
- "name": "Symfony CMF Community",
- "homepage": "https://github.com/symfony-cmf/Routing/contributors"
+ "name": "Eduardo Gulias Davis"
}
],
- "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
- "homepage": "http://cmf.symfony.com",
+ "description": "A library for validating emails",
+ "homepage": "https://github.com/egulias/EmailValidator",
"keywords": [
- "database",
- "routing"
+ "email",
+ "emailvalidation",
+ "emailvalidator",
+ "validation",
+ "validator"
],
- "time": "2017-05-09T08:10:41+00:00"
+ "time": "2017-02-03T22:48:59+00:00"
},
{
- "name": "symfony/class-loader",
- "version": "v3.2.14",
+ "name": "ezyang/htmlpurifier",
+ "version": "v4.10.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/class-loader.git",
- "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482"
+ "url": "https://github.com/ezyang/htmlpurifier.git",
+ "reference": "d85d39da4576a6934b72480be6978fb10c860021"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/class-loader/zipball/e192d96b15fdd168bdb1c91001d26c93ba4af482",
- "reference": "e192d96b15fdd168bdb1c91001d26c93ba4af482",
+ "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
+ "reference": "d85d39da4576a6934b72480be6978fb10c860021",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "php": ">=5.2"
},
"require-dev": {
- "symfony/finder": "~2.8|~3.0",
- "symfony/polyfill-apcu": "~1.1"
- },
- "suggest": {
- "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
+ "simpletest/simpletest": "^1.1"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.2-dev"
- }
- },
"autoload": {
- "psr-4": {
- "Symfony\\Component\\ClassLoader\\": ""
+ "psr-0": {
+ "HTMLPurifier": "library/"
},
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "library/HTMLPurifier.composer.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "LGPL"
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Edward Z. Yang",
+ "email": "admin@htmlpurifier.org",
+ "homepage": "http://ezyang.com"
}
],
- "description": "Symfony ClassLoader Component",
- "homepage": "https://symfony.com",
- "time": "2017-06-01T21:00:24+00:00"
+ "description": "Standards compliant HTML filter written in PHP",
+ "homepage": "http://htmlpurifier.org/",
+ "keywords": [
+ "html"
+ ],
+ "time": "2018-02-23T01:58:20+00:00"
},
{
- "name": "symfony/config",
- "version": "v3.2.14",
+ "name": "grasmash/expander",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/config.git",
- "reference": "e5533fcc0b3dd377626153b2852707878f363728"
+ "url": "https://github.com/grasmash/expander.git",
+ "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/config/zipball/e5533fcc0b3dd377626153b2852707878f363728",
- "reference": "e5533fcc0b3dd377626153b2852707878f363728",
+ "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
+ "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
- "symfony/filesystem": "~2.8|~3.0"
+ "dflydev/dot-access-data": "^1.1.0",
+ "php": ">=5.4"
},
"require-dev": {
- "symfony/yaml": "~3.0"
- },
- "suggest": {
- "symfony/yaml": "To use the yaml reference dumper"
+ "greg-1-anderson/composer-test-scenarios": "^1",
+ "phpunit/phpunit": "^4|^5.5.4",
+ "satooshi/php-coveralls": "^1.0.2|dev-master",
+ "squizlabs/php_codesniffer": "^2.7"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Config\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Grasmash\\Expander\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3283,62 +3995,47 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Matthew Grasmick"
}
],
- "description": "Symfony Config Component",
- "homepage": "https://symfony.com",
- "time": "2017-04-12T14:13:17+00:00"
+ "description": "Expands internal property references in PHP arrays file.",
+ "time": "2017-12-21T22:14:55+00:00"
},
{
- "name": "symfony/console",
- "version": "v3.2.14",
+ "name": "grasmash/yaml-expander",
+ "version": "1.4.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/console.git",
- "reference": "eced439413608647aeff243038a33ea246b2b33a"
+ "url": "https://github.com/grasmash/yaml-expander.git",
+ "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/eced439413608647aeff243038a33ea246b2b33a",
- "reference": "eced439413608647aeff243038a33ea246b2b33a",
+ "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
+ "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
"shasum": ""
},
- "require": {
- "php": ">=5.5.9",
- "symfony/debug": "~2.8|~3.0",
- "symfony/polyfill-mbstring": "~1.0"
+ "require": {
+ "dflydev/dot-access-data": "^1.1.0",
+ "php": ">=5.4",
+ "symfony/yaml": "^2.8.11|^3|^4"
},
"require-dev": {
- "psr/log": "~1.0",
- "symfony/event-dispatcher": "~2.8|~3.0",
- "symfony/filesystem": "~2.8|~3.0",
- "symfony/process": "~2.8|~3.0"
- },
- "suggest": {
- "psr/log": "For using the console logger",
- "symfony/event-dispatcher": "",
- "symfony/filesystem": "",
- "symfony/process": ""
+ "greg-1-anderson/composer-test-scenarios": "^1",
+ "phpunit/phpunit": "^4.8|^5.5.4",
+ "satooshi/php-coveralls": "^1.0.2|dev-master",
+ "squizlabs/php_codesniffer": "^2.7"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Console\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Grasmash\\YamlExpander\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3346,55 +4043,52 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Matthew Grasmick"
}
],
- "description": "Symfony Console Component",
- "homepage": "https://symfony.com",
- "time": "2017-07-29T21:27:41+00:00"
+ "description": "Expands internal property references in a yaml file.",
+ "time": "2017-12-16T16:06:03+00:00"
},
{
- "name": "symfony/debug",
- "version": "v3.4.4",
+ "name": "guzzlehttp/guzzle",
+ "version": "6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/debug.git",
- "reference": "53f6af2805daf52a43b393b93d2f24925d35c937"
+ "url": "https://github.com/guzzle/guzzle.git",
+ "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/debug/zipball/53f6af2805daf52a43b393b93d2f24925d35c937",
- "reference": "53f6af2805daf52a43b393b93d2f24925d35c937",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
+ "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
"shasum": ""
},
"require": {
- "php": "^5.5.9|>=7.0.8",
- "psr/log": "~1.0"
- },
- "conflict": {
- "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
+ "guzzlehttp/promises": "^1.0",
+ "guzzlehttp/psr7": "^1.4",
+ "php": ">=5.5"
},
"require-dev": {
- "symfony/http-kernel": "~2.8|~3.0|~4.0"
+ "ext-curl": "*",
+ "phpunit/phpunit": "^4.0 || ^5.0",
+ "psr/log": "^1.0"
+ },
+ "suggest": {
+ "psr/log": "Required for using the Log middleware"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.4-dev"
+ "dev-master": "6.2-dev"
}
},
"autoload": {
+ "files": [
+ "src/functions_include.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Debug\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "GuzzleHttp\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3402,61 +4096,56 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
}
],
- "description": "Symfony Debug Component",
- "homepage": "https://symfony.com",
- "time": "2018-01-18T22:16:57+00:00"
+ "description": "Guzzle is a PHP HTTP client library",
+ "homepage": "http://guzzlephp.org/",
+ "keywords": [
+ "client",
+ "curl",
+ "framework",
+ "http",
+ "http client",
+ "rest",
+ "web service"
+ ],
+ "time": "2017-06-22T18:50:49+00:00"
},
{
- "name": "symfony/dependency-injection",
- "version": "v3.2.14",
+ "name": "guzzlehttp/promises",
+ "version": "v1.3.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/dependency-injection.git",
- "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761"
+ "url": "https://github.com/guzzle/promises.git",
+ "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
- "reference": "d9f2e62e1a93d52ad4e4f6faaf66f6eef723d761",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
+ "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
- },
- "conflict": {
- "symfony/yaml": "<3.2"
+ "php": ">=5.5.0"
},
"require-dev": {
- "symfony/config": "~2.8|~3.0",
- "symfony/expression-language": "~2.8|~3.0",
- "symfony/yaml": "~3.2"
- },
- "suggest": {
- "symfony/config": "",
- "symfony/expression-language": "For using expressions in service container configuration",
- "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
- "symfony/yaml": ""
+ "phpunit/phpunit": "^4.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "1.4-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\DependencyInjection\\": ""
+ "GuzzleHttp\\Promise\\": "src/"
},
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "src/functions_include.php"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -3465,58 +4154,53 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
}
],
- "description": "Symfony DependencyInjection Component",
- "homepage": "https://symfony.com",
- "time": "2017-07-28T15:22:55+00:00"
+ "description": "Guzzle promises library",
+ "keywords": [
+ "promise"
+ ],
+ "time": "2016-12-20T10:07:11+00:00"
},
{
- "name": "symfony/event-dispatcher",
- "version": "v3.2.14",
+ "name": "guzzlehttp/psr7",
+ "version": "1.4.2",
"source": {
"type": "git",
- "url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325"
+ "url": "https://github.com/guzzle/psr7.git",
+ "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
- "reference": "b8de6ee252af19330dd72ad5fc0dd4658a1d6325",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
+ "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "php": ">=5.4.0",
+ "psr/http-message": "~1.0"
},
- "require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "~2.8|~3.0",
- "symfony/dependency-injection": "~2.8|~3.0",
- "symfony/expression-language": "~2.8|~3.0",
- "symfony/stopwatch": "~2.8|~3.0"
+ "provide": {
+ "psr/http-message-implementation": "1.0"
},
- "suggest": {
- "symfony/dependency-injection": "",
- "symfony/http-kernel": ""
+ "require-dev": {
+ "phpunit/phpunit": "~4.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "1.4-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\EventDispatcher\\": ""
+ "GuzzleHttp\\Psr7\\": "src/"
},
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "src/functions_include.php"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -3525,97 +4209,100 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
},
{
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Tobias Schultze",
+ "homepage": "https://github.com/Tobion"
}
],
- "description": "Symfony EventDispatcher Component",
- "homepage": "https://symfony.com",
- "time": "2017-06-02T08:26:05+00:00"
+ "description": "PSR-7 message implementation that also provides common utility methods",
+ "keywords": [
+ "http",
+ "message",
+ "request",
+ "response",
+ "stream",
+ "uri",
+ "url"
+ ],
+ "time": "2017-03-20T17:10:46+00:00"
},
{
- "name": "symfony/filesystem",
- "version": "v3.4.4",
+ "name": "jakub-onderka/php-console-color",
+ "version": "0.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/filesystem.git",
- "reference": "e078773ad6354af38169faf31c21df0f18ace03d"
+ "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
+ "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/e078773ad6354af38169faf31c21df0f18ace03d",
- "reference": "e078773ad6354af38169faf31c21df0f18ace03d",
+ "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
+ "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
"shasum": ""
},
"require": {
- "php": "^5.5.9|>=7.0.8"
+ "php": ">=5.3.2"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.4-dev"
- }
+ "require-dev": {
+ "jakub-onderka/php-code-style": "1.0",
+ "jakub-onderka/php-parallel-lint": "0.*",
+ "jakub-onderka/php-var-dump-check": "0.*",
+ "phpunit/phpunit": "3.7.*",
+ "squizlabs/php_codesniffer": "1.*"
},
+ "type": "library",
"autoload": {
- "psr-4": {
- "Symfony\\Component\\Filesystem\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "psr-0": {
+ "JakubOnderka\\PhpConsoleColor": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-2-Clause"
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Jakub Onderka",
+ "email": "jakub.onderka@gmail.com",
+ "homepage": "http://www.acci.cz"
}
],
- "description": "Symfony Filesystem Component",
- "homepage": "https://symfony.com",
- "time": "2018-01-03T07:37:34+00:00"
+ "time": "2014-04-08T15:00:19+00:00"
},
{
- "name": "symfony/finder",
- "version": "v3.4.4",
+ "name": "jakub-onderka/php-console-highlighter",
+ "version": "v0.3.2",
"source": {
"type": "git",
- "url": "https://github.com/symfony/finder.git",
- "reference": "613e26310776f49a1773b6737c6bd554b8bc8c6f"
+ "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
+ "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/613e26310776f49a1773b6737c6bd554b8bc8c6f",
- "reference": "613e26310776f49a1773b6737c6bd554b8bc8c6f",
+ "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
+ "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
"shasum": ""
},
"require": {
- "php": "^5.5.9|>=7.0.8"
+ "jakub-onderka/php-console-color": "~0.1",
+ "php": ">=5.3.0"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.4-dev"
- }
+ "require-dev": {
+ "jakub-onderka/php-code-style": "~1.0",
+ "jakub-onderka/php-parallel-lint": "~0.5",
+ "jakub-onderka/php-var-dump-check": "~0.1",
+ "phpunit/phpunit": "~4.0",
+ "squizlabs/php_codesniffer": "~1.5"
},
+ "type": "library",
"autoload": {
- "psr-4": {
- "Symfony\\Component\\Finder\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "psr-0": {
+ "JakubOnderka\\PhpConsoleHighlighter": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3623,52 +4310,52 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Jakub Onderka",
+ "email": "acci@acci.cz",
+ "homepage": "http://www.acci.cz/"
}
],
- "description": "Symfony Finder Component",
- "homepage": "https://symfony.com",
- "time": "2018-01-03T07:37:34+00:00"
+ "time": "2015-04-20T18:58:01+00:00"
},
{
- "name": "symfony/http-foundation",
- "version": "v3.2.14",
+ "name": "league/container",
+ "version": "2.4.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-foundation.git",
- "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1"
+ "url": "https://github.com/thephpleague/container.git",
+ "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
- "reference": "107b7e6c2372ad4859b8a8c8c5b4fb9d7a208fe1",
+ "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
+ "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
- "symfony/polyfill-mbstring": "~1.1"
+ "container-interop/container-interop": "^1.2",
+ "php": "^5.4.0 || ^7.0"
+ },
+ "provide": {
+ "container-interop/container-interop-implementation": "^1.2",
+ "psr/container-implementation": "^1.0"
+ },
+ "replace": {
+ "orno/di": "~2.0"
},
"require-dev": {
- "symfony/expression-language": "~2.8|~3.0"
+ "phpunit/phpunit": "4.*"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-2.x": "2.x-dev",
+ "dev-1.x": "1.x-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\HttpFoundation\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "League\\Container\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3676,82 +4363,76 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Phil Bennett",
+ "email": "philipobenito@gmail.com",
+ "homepage": "http://www.philipobenito.com",
+ "role": "Developer"
}
],
- "description": "Symfony HttpFoundation Component",
- "homepage": "https://symfony.com",
- "time": "2017-07-20T07:58:49+00:00"
+ "description": "A fast and intuitive dependency injection container.",
+ "homepage": "https://github.com/thephpleague/container",
+ "keywords": [
+ "container",
+ "dependency",
+ "di",
+ "injection",
+ "league",
+ "provider",
+ "service"
+ ],
+ "time": "2017-05-10T09:20:27+00:00"
},
{
- "name": "symfony/http-kernel",
- "version": "v3.2.14",
+ "name": "league/flysystem",
+ "version": "1.0.43",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-kernel.git",
- "reference": "18ec42e19ec676d7da5ddff13f1eed68d88fb460"
+ "url": "https://github.com/thephpleague/flysystem.git",
+ "reference": "1ce7cc142d906ba58dc54c82915d355a9191c8a8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/18ec42e19ec676d7da5ddff13f1eed68d88fb460",
- "reference": "18ec42e19ec676d7da5ddff13f1eed68d88fb460",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1ce7cc142d906ba58dc54c82915d355a9191c8a8",
+ "reference": "1ce7cc142d906ba58dc54c82915d355a9191c8a8",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
- "psr/log": "~1.0",
- "symfony/debug": "~2.8|~3.0",
- "symfony/event-dispatcher": "~2.8|~3.0",
- "symfony/http-foundation": "~2.8.13|~3.1.6|~3.2"
+ "php": ">=5.5.9"
},
"conflict": {
- "symfony/config": "<2.8",
- "twig/twig": "<1.34|<2.4,>=2"
+ "league/flysystem-sftp": "<1.0.6"
},
"require-dev": {
- "symfony/browser-kit": "~2.8|~3.0",
- "symfony/class-loader": "~2.8|~3.0",
- "symfony/config": "~2.8|~3.0",
- "symfony/console": "~2.8|~3.0",
- "symfony/css-selector": "~2.8|~3.0",
- "symfony/dependency-injection": "~2.8|~3.0",
- "symfony/dom-crawler": "~2.8|~3.0",
- "symfony/expression-language": "~2.8|~3.0",
- "symfony/finder": "~2.8|~3.0",
- "symfony/process": "~2.8|~3.0",
- "symfony/routing": "~2.8|~3.0",
- "symfony/stopwatch": "~2.8|~3.0",
- "symfony/templating": "~2.8|~3.0",
- "symfony/translation": "~2.8|~3.0",
- "symfony/var-dumper": "~3.2"
+ "ext-fileinfo": "*",
+ "phpspec/phpspec": "^3.4",
+ "phpunit/phpunit": "^5.7"
},
"suggest": {
- "symfony/browser-kit": "",
- "symfony/class-loader": "",
- "symfony/config": "",
- "symfony/console": "",
- "symfony/dependency-injection": "",
- "symfony/finder": "",
- "symfony/var-dumper": ""
+ "ext-fileinfo": "Required for MimeType",
+ "ext-ftp": "Allows you to use FTP server storage",
+ "ext-openssl": "Allows you to use FTPS server storage",
+ "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
+ "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
+ "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
+ "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
+ "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
+ "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
+ "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
+ "league/flysystem-webdav": "Allows you to use WebDAV storage",
+ "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
+ "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
+ "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "1.1-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\HttpKernel\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "League\\Flysystem\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3759,51 +4440,65 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Frank de Jonge",
+ "email": "info@frenky.net"
}
],
- "description": "Symfony HttpKernel Component",
- "homepage": "https://symfony.com",
- "time": "2017-08-01T09:40:19+00:00"
+ "description": "Filesystem abstraction: Many filesystems, one API.",
+ "keywords": [
+ "Cloud Files",
+ "WebDAV",
+ "abstraction",
+ "aws",
+ "cloud",
+ "copy.com",
+ "dropbox",
+ "file systems",
+ "files",
+ "filesystem",
+ "filesystems",
+ "ftp",
+ "rackspace",
+ "remote",
+ "s3",
+ "sftp",
+ "storage"
+ ],
+ "time": "2018-03-01T10:27:04+00:00"
},
{
- "name": "symfony/polyfill-iconv",
- "version": "v1.7.0",
+ "name": "league/flysystem-aws-s3-v3",
+ "version": "1.0.18",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-iconv.git",
- "reference": "bd515d8f392730c833bc1ba993a4f598da64fa5b"
+ "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
+ "reference": "dc09b19f455750663b922ed52dcc0ff215bed284"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/bd515d8f392730c833bc1ba993a4f598da64fa5b",
- "reference": "bd515d8f392730c833bc1ba993a4f598da64fa5b",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/dc09b19f455750663b922ed52dcc0ff215bed284",
+ "reference": "dc09b19f455750663b922ed52dcc0ff215bed284",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "aws/aws-sdk-php": "^3.0.0",
+ "league/flysystem": "^1.0.40",
+ "php": ">=5.5.0"
},
- "suggest": {
- "ext-iconv": "For best performance"
+ "require-dev": {
+ "henrikbjorn/phpspec-code-coverage": "~1.0.1",
+ "phpspec/phpspec": "^2.0.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.7-dev"
+ "dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Polyfill\\Iconv\\": ""
- },
- "files": [
- "bootstrap.php"
- ]
+ "League\\Flysystem\\AwsS3v3\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3811,58 +4506,45 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Frank de Jonge",
+ "email": "info@frenky.net"
}
],
- "description": "Symfony polyfill for the Iconv extension",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "iconv",
- "polyfill",
- "portable",
- "shim"
- ],
- "time": "2018-01-30T19:27:44+00:00"
+ "description": "Flysystem adapter for the AWS S3 SDK v3.x",
+ "time": "2017-06-30T06:29:25+00:00"
},
{
- "name": "symfony/polyfill-mbstring",
- "version": "v1.7.0",
+ "name": "league/flysystem-replicate-adapter",
+ "version": "1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b"
+ "url": "https://github.com/thephpleague/flysystem-replicate-adapter.git",
+ "reference": "864e80409c0918b0ed6921c3941247017d9db77c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b",
- "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-replicate-adapter/zipball/864e80409c0918b0ed6921c3941247017d9db77c",
+ "reference": "864e80409c0918b0ed6921c3941247017d9db77c",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "league/flysystem": "~1.0",
+ "php": ">=5.4.0"
},
- "suggest": {
- "ext-mbstring": "For best performance"
+ "require-dev": {
+ "mockery/mockery": "0.9.*",
+ "phpunit/phpunit": "~4.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.7-dev"
+ "dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
- },
- "files": [
- "bootstrap.php"
- ]
+ "League\\Flysystem\\Replicate\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3870,55 +4552,46 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Frank de Jonge",
+ "email": "info@frenky.net"
}
],
- "description": "Symfony polyfill for the Mbstring extension",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "mbstring",
- "polyfill",
- "portable",
- "shim"
- ],
- "time": "2018-01-30T19:27:44+00:00"
+ "description": "Flysystem adapter for Replica's",
+ "time": "2015-08-18T21:07:17+00:00"
},
{
- "name": "symfony/process",
- "version": "v3.2.14",
+ "name": "masterminds/html5",
+ "version": "2.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc"
+ "url": "https://github.com/Masterminds/html5-php.git",
+ "reference": "2c37c6c520b995b761674de3be8455a381679067"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
- "reference": "b39d805dd6c4d1cba1f00cd80361ec80eed0d7bc",
+ "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
+ "reference": "2c37c6c520b995b761674de3be8455a381679067",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "ext-libxml": "*",
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "4.*",
+ "sami/sami": "~2.0",
+ "satooshi/php-coveralls": "1.0.*"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "2.2-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Process\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Masterminds\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3926,127 +4599,103 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Matt Butcher",
+ "email": "technosophos@gmail.com"
},
{
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Asmir Mustafic",
+ "email": "goetas@gmail.com"
+ },
+ {
+ "name": "Matt Farina",
+ "email": "matt@mattfarina.com"
}
],
- "description": "Symfony Process Component",
- "homepage": "https://symfony.com",
- "time": "2017-07-03T08:06:20+00:00"
+ "description": "An HTML5 parser and serializer.",
+ "homepage": "http://masterminds.github.io/html5-php",
+ "keywords": [
+ "HTML5",
+ "dom",
+ "html",
+ "parser",
+ "querypath",
+ "serializer",
+ "xml"
+ ],
+ "time": "2017-09-04T12:26:28+00:00"
},
{
- "name": "symfony/psr-http-message-bridge",
- "version": "v1.0.2",
+ "name": "mkalkbrenner/php-htmldiff-advanced",
+ "version": "0.0.8",
"source": {
- "type": "git",
- "url": "https://github.com/symfony/psr-http-message-bridge.git",
- "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c2b757934f2d9681a287e662efbc27c41fe8ef86",
- "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3",
- "psr/http-message": "~1.0",
- "symfony/http-foundation": "~2.3|~3.0|~4.0"
- },
- "require-dev": {
- "symfony/phpunit-bridge": "~3.2|4.0"
+ "type": "git",
+ "url": "https://github.com/mkalkbrenner/php-htmldiff.git",
+ "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9"
},
- "suggest": {
- "psr/http-message-implementation": "To use the HttpFoundation factory",
- "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/mkalkbrenner/php-htmldiff/zipball/3a714b48c9c3d3730baaf6d3949691e654cd37c9",
+ "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9",
+ "shasum": ""
},
- "type": "symfony-bridge",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
+ "require": {
+ "caxy/php-htmldiff": ">=0.0.6",
+ "php": ">=5.5.0"
},
+ "type": "library",
"autoload": {
- "psr-4": {
- "Symfony\\Bridge\\PsrHttpMessage\\": ""
- }
+ "files": [
+ "src/HtmlDiffAdvancedInterface.php",
+ "src/HtmlDiffAdvanced.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Symfony Community",
- "homepage": "http://symfony.com/contributors"
- },
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- }
+ "GNU General Public License V2"
],
- "description": "PSR HTTP message bridge",
- "homepage": "http://symfony.com",
+ "description": "An add-on for the php-htmldiff library for comparing two HTML files/snippets and highlighting the differences using simple HTML.",
+ "homepage": "https://github.com/mkalkbrenner/php-htmldiff",
"keywords": [
- "http",
- "http-message",
- "psr-7"
+ "diff",
+ "html"
],
- "time": "2017-12-19T00:31:44+00:00"
+ "time": "2016-07-25T17:07:32+00:00"
},
{
- "name": "symfony/routing",
- "version": "v3.2.14",
+ "name": "mtdowling/jmespath.php",
+ "version": "2.4.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/routing.git",
- "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5"
+ "url": "https://github.com/jmespath/jmespath.php.git",
+ "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/b382d7c4f443372c118efcd0cd2bf1028434f2f5",
- "reference": "b382d7c4f443372c118efcd0cd2bf1028434f2f5",
+ "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
+ "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
- },
- "conflict": {
- "symfony/config": "<2.8"
+ "php": ">=5.4.0"
},
"require-dev": {
- "doctrine/annotations": "~1.0",
- "doctrine/common": "~2.2",
- "psr/log": "~1.0",
- "symfony/config": "~2.8|~3.0",
- "symfony/expression-language": "~2.8|~3.0",
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/yaml": "~2.8|~3.0"
- },
- "suggest": {
- "doctrine/annotations": "For using the annotation loader",
- "symfony/config": "For using the all-in-one router or any loader",
- "symfony/dependency-injection": "For loading routes from a service",
- "symfony/expression-language": "For using expression matching",
- "symfony/http-foundation": "For using a Symfony Request object",
- "symfony/yaml": "For using the YAML loader"
+ "phpunit/phpunit": "~4.0"
},
+ "bin": [
+ "bin/jp.php"
+ ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "2.0-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Routing\\": ""
+ "JmesPath\\": "src/"
},
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "src/JmesPath.php"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -4055,143 +4704,96 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
}
],
- "description": "Symfony Routing Component",
- "homepage": "https://symfony.com",
+ "description": "Declaratively specify how to extract elements from a JSON document",
"keywords": [
- "router",
- "routing",
- "uri",
- "url"
+ "json",
+ "jsonpath"
],
- "time": "2017-06-23T06:35:45+00:00"
+ "time": "2016-12-03T22:08:25+00:00"
},
{
- "name": "symfony/serializer",
- "version": "v3.2.14",
+ "name": "nikic/php-parser",
+ "version": "v3.1.5",
"source": {
"type": "git",
- "url": "https://github.com/symfony/serializer.git",
- "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477"
+ "url": "https://github.com/nikic/PHP-Parser.git",
+ "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/serializer/zipball/dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
- "reference": "dc98d5ab4ae29dc47bfb1507b39806bfe13d3477",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
+ "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
- },
- "conflict": {
- "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
- "symfony/property-info": "<3.1",
- "symfony/yaml": "<3.1"
+ "ext-tokenizer": "*",
+ "php": ">=5.5"
},
"require-dev": {
- "doctrine/annotations": "~1.0",
- "doctrine/cache": "~1.0",
- "phpdocumentor/reflection-docblock": "~3.0",
- "symfony/cache": "~3.1",
- "symfony/config": "~2.8|~3.0",
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/property-access": "~2.8|~3.0",
- "symfony/property-info": "~3.1",
- "symfony/yaml": "~3.1"
- },
- "suggest": {
- "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
- "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
- "psr/cache-implementation": "For using the metadata cache.",
- "symfony/config": "For using the XML mapping loader.",
- "symfony/http-foundation": "To use the DataUriNormalizer.",
- "symfony/property-access": "For using the ObjectNormalizer.",
- "symfony/property-info": "To deserialize relations.",
- "symfony/yaml": "For using the default YAML mapping loader."
+ "phpunit/phpunit": "~4.0|~5.0"
},
+ "bin": [
+ "bin/php-parse"
+ ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "3.0-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Serializer\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "PhpParser\\": "lib/PhpParser"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Nikita Popov"
}
],
- "description": "Symfony Serializer Component",
- "homepage": "https://symfony.com",
- "time": "2017-07-06T07:39:51+00:00"
+ "description": "A PHP parser written in PHP",
+ "keywords": [
+ "parser",
+ "php"
+ ],
+ "time": "2018-02-28T20:30:58+00:00"
},
{
- "name": "symfony/translation",
- "version": "v3.2.14",
+ "name": "paragonie/random_compat",
+ "version": "v2.0.11",
"source": {
"type": "git",
- "url": "https://github.com/symfony/translation.git",
- "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50"
+ "url": "https://github.com/paragonie/random_compat.git",
+ "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/df36a48672b929bf3995eb62c58d83004b1d0d50",
- "reference": "df36a48672b929bf3995eb62c58d83004b1d0d50",
+ "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8",
+ "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "symfony/config": "<2.8"
+ "php": ">=5.2.0"
},
"require-dev": {
- "psr/log": "~1.0",
- "symfony/config": "~2.8|~3.0",
- "symfony/intl": "^2.8.18|^3.2.5",
- "symfony/yaml": "~2.8|~3.0"
+ "phpunit/phpunit": "4.*|5.*"
},
"suggest": {
- "psr/log": "To use logging capability in translator",
- "symfony/config": "",
- "symfony/yaml": ""
+ "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.2-dev"
- }
- },
"autoload": {
- "psr-4": {
- "Symfony\\Component\\Translation\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "lib/random.php"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -4200,75 +4802,46 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Paragon Initiative Enterprises",
+ "email": "security@paragonie.com",
+ "homepage": "https://paragonie.com"
}
],
- "description": "Symfony Translation Component",
- "homepage": "https://symfony.com",
- "time": "2017-06-24T16:45:17+00:00"
+ "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
+ "keywords": [
+ "csprng",
+ "pseudorandom",
+ "random"
+ ],
+ "time": "2017-09-27T21:40:39+00:00"
},
{
- "name": "symfony/validator",
- "version": "v3.2.14",
+ "name": "psr/container",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/validator.git",
- "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f"
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/validator/zipball/39244fbf580e01acc3f5df01238a8f69b1b3e46f",
- "reference": "39244fbf580e01acc3f5df01238a8f69b1b3e46f",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
"shasum": ""
},
"require": {
- "php": ">=5.5.9",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/translation": "~2.8|~3.0"
- },
- "conflict": {
- "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
- },
- "require-dev": {
- "doctrine/annotations": "~1.0",
- "doctrine/cache": "~1.0",
- "egulias/email-validator": "^1.2.8|~2.0",
- "symfony/cache": "~3.1",
- "symfony/config": "~2.8|~3.0",
- "symfony/expression-language": "~2.8|~3.0",
- "symfony/http-foundation": "~2.8|~3.0",
- "symfony/intl": "^2.8.18|^3.2.5",
- "symfony/yaml": "~2.8|~3.0"
- },
- "suggest": {
- "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
- "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
- "egulias/email-validator": "Strict (RFC compliant) email validation",
- "psr/cache-implementation": "For using the metadata cache.",
- "symfony/config": "",
- "symfony/expression-language": "For using the Expression validator",
- "symfony/http-foundation": "",
- "symfony/intl": "",
- "symfony/yaml": ""
+ "php": ">=5.3.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Validator\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Psr\\Container\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4276,64 +4849,48 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
}
],
- "description": "Symfony Validator Component",
- "homepage": "https://symfony.com",
- "time": "2017-07-26T06:34:07+00:00"
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
+ "keywords": [
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
+ ],
+ "time": "2017-02-14T16:28:37+00:00"
},
{
- "name": "symfony/var-dumper",
- "version": "v3.4.4",
+ "name": "psr/http-message",
+ "version": "1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/var-dumper.git",
- "reference": "472a9849930cf21f73abdb02240f17cf5b5bd1a7"
+ "url": "https://github.com/php-fig/http-message.git",
+ "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
},
"dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/472a9849930cf21f73abdb02240f17cf5b5bd1a7",
- "reference": "472a9849930cf21f73abdb02240f17cf5b5bd1a7",
- "shasum": ""
- },
- "require": {
- "php": "^5.5.9|>=7.0.8",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
- },
- "require-dev": {
- "ext-iconv": "*",
- "twig/twig": "~1.34|~2.4"
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
+ "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
+ "shasum": ""
},
- "suggest": {
- "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
- "ext-intl": "To show region name in time zone dump",
- "ext-symfony_debug": ""
+ "require": {
+ "php": ">=5.3.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.4-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
- "files": [
- "Resources/functions/dump.php"
- ],
"psr-4": {
- "Symfony\\Component\\VarDumper\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Psr\\Http\\Message\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4341,58 +4898,49 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
}
],
- "description": "Symfony mechanism for exploring and dumping PHP variables",
- "homepage": "https://symfony.com",
+ "description": "Common interface for HTTP messages",
+ "homepage": "https://github.com/php-fig/http-message",
"keywords": [
- "debug",
- "dump"
+ "http",
+ "http-message",
+ "psr",
+ "psr-7",
+ "request",
+ "response"
],
- "time": "2018-01-29T09:03:43+00:00"
+ "time": "2016-08-06T14:39:51+00:00"
},
{
- "name": "symfony/yaml",
- "version": "v3.2.14",
+ "name": "psr/log",
+ "version": "1.0.2",
"source": {
"type": "git",
- "url": "https://github.com/symfony/yaml.git",
- "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea"
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/78a0c5d7d43713212aac73d7c6a56754a5c26cea",
- "reference": "78a0c5d7d43713212aac73d7c6a56754a5c26cea",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
+ "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
- },
- "require-dev": {
- "symfony/console": "~2.8|~3.0"
- },
- "suggest": {
- "symfony/console": "For validating YAML files using the lint command"
+ "php": ">=5.3.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Yaml\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Psr\\Log\\": "Psr/Log/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4400,150 +4948,165 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
}
],
- "description": "Symfony Yaml Component",
- "homepage": "https://symfony.com",
- "time": "2017-06-02T09:43:35+00:00"
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
+ "keywords": [
+ "log",
+ "psr",
+ "psr-3"
+ ],
+ "time": "2016-10-10T12:19:37+00:00"
},
{
- "name": "twig/twig",
- "version": "v1.35.0",
+ "name": "psy/psysh",
+ "version": "v0.8.17",
"source": {
"type": "git",
- "url": "https://github.com/twigphp/Twig.git",
- "reference": "daa657073e55b0a78cce8fdd22682fddecc6385f"
+ "url": "https://github.com/bobthecow/psysh.git",
+ "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/twigphp/Twig/zipball/daa657073e55b0a78cce8fdd22682fddecc6385f",
- "reference": "daa657073e55b0a78cce8fdd22682fddecc6385f",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
+ "reference": "5069b70e8c4ea492c2b5939b6eddc78bfe41cfec",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "dnoegel/php-xdg-base-dir": "0.1",
+ "jakub-onderka/php-console-highlighter": "0.3.*",
+ "nikic/php-parser": "~1.3|~2.0|~3.0",
+ "php": ">=5.3.9",
+ "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
+ "symfony/var-dumper": "~2.7|~3.0|~4.0"
},
"require-dev": {
- "psr/container": "^1.0",
- "symfony/debug": "~2.7",
- "symfony/phpunit-bridge": "~3.3@dev"
+ "hoa/console": "~3.16|~1.14",
+ "phpunit/phpunit": "^4.8.35|^5.4.3",
+ "symfony/finder": "~2.1|~3.0|~4.0"
+ },
+ "suggest": {
+ "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
+ "ext-pdo-sqlite": "The doc command requires SQLite to work.",
+ "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
+ "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
+ "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
},
+ "bin": [
+ "bin/psysh"
+ ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.35-dev"
+ "dev-develop": "0.8.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Twig_": "lib/"
- },
+ "files": [
+ "src/Psy/functions.php"
+ ],
"psr-4": {
- "Twig\\": "src/"
+ "Psy\\": "src/Psy/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com",
- "homepage": "http://fabien.potencier.org",
- "role": "Lead Developer"
- },
- {
- "name": "Armin Ronacher",
- "email": "armin.ronacher@active-4.com",
- "role": "Project Founder"
- },
- {
- "name": "Twig Team",
- "homepage": "http://twig.sensiolabs.org/contributors",
- "role": "Contributors"
+ "name": "Justin Hileman",
+ "email": "justin@justinhileman.info",
+ "homepage": "http://justinhileman.com"
}
],
- "description": "Twig, the flexible, fast, and secure template language for PHP",
- "homepage": "http://twig.sensiolabs.org",
+ "description": "An interactive shell for modern PHP.",
+ "homepage": "http://psysh.org",
"keywords": [
- "templating"
+ "REPL",
+ "console",
+ "interactive",
+ "shell"
],
- "time": "2017-09-27T18:06:46+00:00"
+ "time": "2017-12-28T16:14:16+00:00"
},
{
- "name": "webflo/drupal-finder",
- "version": "1.1.0",
+ "name": "sebastian/version",
+ "version": "2.0.1",
"source": {
"type": "git",
- "url": "https://github.com/webflo/drupal-finder.git",
- "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
+ "url": "https://github.com/sebastianbergmann/version.git",
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
- "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
"shasum": ""
},
- "require-dev": {
- "mikey179/vfsstream": "^1.6",
- "phpunit/phpunit": "^4.8"
+ "require": {
+ "php": ">=5.6"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
"autoload": {
"classmap": [
- "src/DrupalFinder.php"
+ "src/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "GPL-2.0+"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Florian Weber",
- "email": "florian@webflo.org"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Helper class to locate a Drupal installation from a given path.",
- "time": "2017-10-24T08:12:11+00:00"
+ "description": "Library that helps with managing the version number of Git-hosted PHP projects",
+ "homepage": "https://github.com/sebastianbergmann/version",
+ "time": "2016-10-03T07:35:21+00:00"
},
{
- "name": "webmozart/assert",
- "version": "1.3.0",
+ "name": "stack/builder",
+ "version": "v1.0.5",
"source": {
"type": "git",
- "url": "https://github.com/webmozart/assert.git",
- "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
+ "url": "https://github.com/stackphp/builder.git",
+ "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
- "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
+ "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
+ "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
"shasum": ""
},
"require": {
- "php": "^5.3.3 || ^7.0"
+ "php": ">=5.3.0",
+ "symfony/http-foundation": "~2.1|~3.0|~4.0",
+ "symfony/http-kernel": "~2.1|~3.0|~4.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.6",
- "sebastian/version": "^1.0.1"
+ "silex/silex": "~1.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.3-dev"
+ "dev-master": "1.0-dev"
}
},
"autoload": {
- "psr-4": {
- "Webmozart\\Assert\\": "src/"
+ "psr-0": {
+ "Stack": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4552,49 +5115,46 @@
],
"authors": [
{
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
+ "name": "Igor Wiedler",
+ "email": "igor@wiedler.ch"
}
],
- "description": "Assertions to validate method input/output with nice error messages.",
+ "description": "Builder for stack middlewares based on HttpKernelInterface.",
"keywords": [
- "assert",
- "check",
- "validate"
+ "stack"
],
- "time": "2018-01-29T19:49:41+00:00"
+ "time": "2017-11-18T14:57:29+00:00"
},
{
- "name": "webmozart/path-util",
- "version": "2.3.0",
+ "name": "stecman/symfony-console-completion",
+ "version": "0.7.0",
"source": {
"type": "git",
- "url": "https://github.com/webmozart/path-util.git",
- "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
+ "url": "https://github.com/stecman/symfony-console-completion.git",
+ "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
- "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
+ "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/5461d43e53092b3d3b9dbd9d999f2054730f4bbb",
+ "reference": "5461d43e53092b3d3b9dbd9d999f2054730f4bbb",
"shasum": ""
},
"require": {
- "php": ">=5.3.3",
- "webmozart/assert": "~1.0"
+ "php": ">=5.3.2",
+ "symfony/console": "~2.3 || ~3.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.6",
- "sebastian/version": "^1.0.1"
+ "phpunit/phpunit": "~4.4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.3-dev"
+ "dev-master": "0.6.x-dev"
}
},
"autoload": {
"psr-4": {
- "Webmozart\\PathUtil\\": "src/"
+ "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4603,47 +5163,35 @@
],
"authors": [
{
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
+ "name": "Stephen Holdaway",
+ "email": "stephen@stecman.co.nz"
}
],
- "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
- "time": "2015-12-17T08:42:14+00:00"
+ "description": "Automatic BASH completion for Symfony Console Component based applications.",
+ "time": "2016-02-24T05:08:54+00:00"
},
{
- "name": "wikimedia/composer-merge-plugin",
- "version": "v1.4.1",
+ "name": "sunra/php-simple-html-dom-parser",
+ "version": "v1.5.2",
"source": {
"type": "git",
- "url": "https://github.com/wikimedia/composer-merge-plugin.git",
- "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
+ "url": "https://github.com/sunra/php-simple-html-dom-parser.git",
+ "reference": "75b9b1cb64502d8f8c04dc11b5906b969af247c6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
- "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
+ "url": "https://api.github.com/repos/sunra/php-simple-html-dom-parser/zipball/75b9b1cb64502d8f8c04dc11b5906b969af247c6",
+ "reference": "75b9b1cb64502d8f8c04dc11b5906b969af247c6",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^1.0",
+ "ext-mbstring": "*",
"php": ">=5.3.2"
},
- "require-dev": {
- "composer/composer": "~1.0.0",
- "jakub-onderka/php-parallel-lint": "~0.8",
- "phpunit/phpunit": "~4.8|~5.0",
- "squizlabs/php_codesniffer": "~2.1.0"
- },
- "type": "composer-plugin",
- "extra": {
- "branch-alias": {
- "dev-master": "1.3.x-dev"
- },
- "class": "Wikimedia\\Composer\\MergePlugin"
- },
+ "type": "library",
"autoload": {
- "psr-4": {
- "Wikimedia\\Composer\\": "src/"
+ "psr-0": {
+ "Sunra\\PhpSimple\\HtmlDomParser": "Src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4652,254 +5200,301 @@
],
"authors": [
{
- "name": "Bryan Davis",
- "email": "bd808@wikimedia.org"
+ "name": "Sunra",
+ "email": "sunra@yandex.ru",
+ "homepage": "https://github.com/sunra"
+ },
+ {
+ "name": "S.C. Chen",
+ "homepage": "http://sourceforge.net/projects/simplehtmldom/"
}
],
- "description": "Composer plugin to merge multiple composer.json files",
- "time": "2017-04-25T02:31:25+00:00"
+ "description": "Composer adaptation of: A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way! Require PHP 5+. Supports invalid HTML. Find tags on an HTML page with selectors just like jQuery. Extract contents from HTML in a single line.",
+ "homepage": "https://github.com/sunra/php-simple-html-dom-parser",
+ "keywords": [
+ "dom",
+ "html",
+ "parser"
+ ],
+ "time": "2016-11-22T22:57:47+00:00"
},
{
- "name": "zendframework/zend-diactoros",
- "version": "1.7.0",
+ "name": "symfony-cmf/routing",
+ "version": "1.4.1",
"source": {
"type": "git",
- "url": "https://github.com/zendframework/zend-diactoros.git",
- "reference": "ed6ce7e2105c400ca10277643a8327957c0384b7"
+ "url": "https://github.com/symfony-cmf/routing.git",
+ "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/ed6ce7e2105c400ca10277643a8327957c0384b7",
- "reference": "ed6ce7e2105c400ca10277643a8327957c0384b7",
+ "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
+ "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0",
- "psr/http-message": "^1.0"
- },
- "provide": {
- "psr/http-message-implementation": "1.0"
+ "php": "^5.3.9|^7.0",
+ "psr/log": "1.*",
+ "symfony/http-kernel": "^2.2|3.*",
+ "symfony/routing": "^2.2|3.*"
},
"require-dev": {
- "ext-dom": "*",
- "ext-libxml": "*",
- "phpunit/phpunit": "^5.7.16 || ^6.0.8",
- "zendframework/zend-coding-standard": "~1.0"
+ "friendsofsymfony/jsrouting-bundle": "^1.1",
+ "symfony-cmf/testing": "^1.3",
+ "symfony/config": "^2.2|3.*",
+ "symfony/dependency-injection": "^2.0.5|3.*",
+ "symfony/event-dispatcher": "^2.1|3.*"
+ },
+ "suggest": {
+ "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.7.x-dev",
- "dev-develop": "1.8.x-dev"
+ "dev-master": "1.4-dev"
}
},
"autoload": {
"psr-4": {
- "Zend\\Diactoros\\": "src/"
+ "Symfony\\Cmf\\Component\\Routing\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-2-Clause"
+ "MIT"
],
- "description": "PSR HTTP Message implementations",
- "homepage": "https://github.com/zendframework/zend-diactoros",
+ "authors": [
+ {
+ "name": "Symfony CMF Community",
+ "homepage": "https://github.com/symfony-cmf/Routing/contributors"
+ }
+ ],
+ "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
+ "homepage": "http://cmf.symfony.com",
"keywords": [
- "http",
- "psr",
- "psr-7"
+ "database",
+ "routing"
],
- "time": "2018-01-04T18:21:48+00:00"
+ "time": "2017-05-09T08:10:41+00:00"
},
{
- "name": "zendframework/zend-escaper",
- "version": "2.5.2",
+ "name": "symfony/class-loader",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/zendframework/zend-escaper.git",
- "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
+ "url": "https://github.com/symfony/class-loader.git",
+ "reference": "e63c12699822bb3b667e7216ba07fbcc3a3e203e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
- "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
+ "url": "https://api.github.com/repos/symfony/class-loader/zipball/e63c12699822bb3b667e7216ba07fbcc3a3e203e",
+ "reference": "e63c12699822bb3b667e7216ba07fbcc3a3e203e",
"shasum": ""
},
"require": {
- "php": ">=5.5"
+ "php": "^5.5.9|>=7.0.8"
},
"require-dev": {
- "fabpot/php-cs-fixer": "1.7.*",
- "phpunit/phpunit": "~4.0"
+ "symfony/finder": "~2.8|~3.0|~4.0",
+ "symfony/polyfill-apcu": "~1.1"
+ },
+ "suggest": {
+ "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.5-dev",
- "dev-develop": "2.6-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "Zend\\Escaper\\": "src/"
- }
+ "Symfony\\Component\\ClassLoader\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
- "homepage": "https://github.com/zendframework/zend-escaper",
- "keywords": [
- "escaper",
- "zf2"
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
],
- "time": "2016-06-30T19:48:38+00:00"
+ "description": "Symfony ClassLoader Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-01-03T07:37:34+00:00"
},
{
- "name": "zendframework/zend-feed",
- "version": "2.9.0",
+ "name": "symfony/config",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/zendframework/zend-feed.git",
- "reference": "abe88686124d492e0a2a84656f15e5482bfbe030"
+ "url": "https://github.com/symfony/config.git",
+ "reference": "05e10567b529476a006b00746c5f538f1636810e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/abe88686124d492e0a2a84656f15e5482bfbe030",
- "reference": "abe88686124d492e0a2a84656f15e5482bfbe030",
+ "url": "https://api.github.com/repos/symfony/config/zipball/05e10567b529476a006b00746c5f538f1636810e",
+ "reference": "05e10567b529476a006b00746c5f538f1636810e",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0",
- "zendframework/zend-escaper": "^2.5.2",
- "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
+ "php": "^5.5.9|>=7.0.8",
+ "symfony/filesystem": "~2.8|~3.0|~4.0"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<3.3",
+ "symfony/finder": "<3.3"
},
"require-dev": {
- "phpunit/phpunit": "^5.7.23 || ^6.4.3",
- "psr/http-message": "^1.0.1",
- "zendframework/zend-cache": "^2.7.2",
- "zendframework/zend-coding-standard": "~1.0.0",
- "zendframework/zend-db": "^2.8.2",
- "zendframework/zend-http": "^2.7",
- "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
- "zendframework/zend-validator": "^2.10.1"
+ "symfony/dependency-injection": "~3.3|~4.0",
+ "symfony/event-dispatcher": "~3.3|~4.0",
+ "symfony/finder": "~3.3|~4.0",
+ "symfony/yaml": "~3.0|~4.0"
},
"suggest": {
- "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
- "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
- "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
- "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
- "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
- "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
+ "symfony/yaml": "To use the yaml reference dumper"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.9-dev",
- "dev-develop": "2.10-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "Zend\\Feed\\": "src/"
- }
+ "Symfony\\Component\\Config\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
- "description": "provides functionality for consuming RSS and Atom feeds",
- "keywords": [
- "ZendFramework",
- "feed",
- "zf"
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
],
- "time": "2017-12-04T17:59:38+00:00"
+ "description": "Symfony Config Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-14T10:03:57+00:00"
},
{
- "name": "zendframework/zend-stdlib",
- "version": "3.1.0",
+ "name": "symfony/console",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/zendframework/zend-stdlib.git",
- "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78"
+ "url": "https://github.com/symfony/console.git",
+ "reference": "067339e9b8ec30d5f19f5950208893ff026b94f7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78",
- "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78",
+ "url": "https://api.github.com/repos/symfony/console/zipball/067339e9b8ec30d5f19f5950208893ff026b94f7",
+ "reference": "067339e9b8ec30d5f19f5950208893ff026b94f7",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0"
+ "php": "^5.5.9|>=7.0.8",
+ "symfony/debug": "~2.8|~3.0|~4.0",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<3.4",
+ "symfony/process": "<3.3"
},
"require-dev": {
- "athletic/athletic": "~0.1",
- "phpunit/phpunit": "~4.0",
- "squizlabs/php_codesniffer": "^2.6.2"
+ "psr/log": "~1.0",
+ "symfony/config": "~3.3|~4.0",
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
+ "symfony/lock": "~3.4|~4.0",
+ "symfony/process": "~3.3|~4.0"
+ },
+ "suggest": {
+ "psr/log": "For using the console logger",
+ "symfony/event-dispatcher": "",
+ "symfony/lock": "",
+ "symfony/process": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1-dev",
- "dev-develop": "3.2-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "Zend\\Stdlib\\": "src/"
- }
+ "Symfony\\Component\\Console\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
- "homepage": "https://github.com/zendframework/zend-stdlib",
- "keywords": [
- "stdlib",
- "zf2"
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
],
- "time": "2016-09-13T14:38:50+00:00"
- }
- ],
- "packages-dev": [
+ "description": "Symfony Console Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-26T15:46:28+00:00"
+ },
{
- "name": "behat/mink",
- "version": "dev-master",
+ "name": "symfony/css-selector",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/minkphp/Mink.git",
- "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891"
+ "url": "https://github.com/symfony/css-selector.git",
+ "reference": "544655f1fc078a9cd839fdda2b7b1e64627c826a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/minkphp/Mink/zipball/04ab7af68536ac2c80fd6c08a6fd3620d3409891",
- "reference": "04ab7af68536ac2c80fd6c08a6fd3620d3409891",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/544655f1fc078a9cd839fdda2b7b1e64627c826a",
+ "reference": "544655f1fc078a9cd839fdda2b7b1e64627c826a",
"shasum": ""
},
"require": {
- "php": ">=5.3.1",
- "symfony/css-selector": "^2.7|^3.0|^4.0"
- },
- "require-dev": {
- "symfony/phpunit-bridge": "^3.3|^4.0"
- },
- "suggest": {
- "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
- "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
- "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
- "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
+ "php": "^5.5.9|>=7.0.8"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.7.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "Behat\\Mink\\": "src/"
- }
+ "Symfony\\Component\\CssSelector\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4907,54 +5502,59 @@
],
"authors": [
{
- "name": "Konstantin Kudryashov",
- "email": "ever.zet@gmail.com",
- "homepage": "http://everzet.com"
+ "name": "Jean-François Simon",
+ "email": "jeanfrancois.simon@sensiolabs.com"
+ },
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Browser controller/emulator abstraction for PHP",
- "homepage": "http://mink.behat.org/",
- "keywords": [
- "browser",
- "testing",
- "web"
- ],
- "time": "2018-01-07T17:25:05+00:00"
+ "description": "Symfony CssSelector Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-03T14:55:07+00:00"
},
{
- "name": "behat/mink-browserkit-driver",
- "version": "v1.3.2",
+ "name": "symfony/debug",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
- "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb"
+ "url": "https://github.com/symfony/debug.git",
+ "reference": "9b1071f86e79e1999b3d3675d2e0e7684268b9bc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/10e67fb4a295efcd62ea0bf16025a85ea19534fb",
- "reference": "10e67fb4a295efcd62ea0bf16025a85ea19534fb",
+ "url": "https://api.github.com/repos/symfony/debug/zipball/9b1071f86e79e1999b3d3675d2e0e7684268b9bc",
+ "reference": "9b1071f86e79e1999b3d3675d2e0e7684268b9bc",
"shasum": ""
},
"require": {
- "behat/mink": "^1.7.1@dev",
- "php": ">=5.3.6",
- "symfony/browser-kit": "~2.3|~3.0",
- "symfony/dom-crawler": "~2.3|~3.0"
+ "php": "^5.5.9|>=7.0.8",
+ "psr/log": "~1.0"
+ },
+ "conflict": {
+ "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
},
"require-dev": {
- "silex/silex": "~1.2",
- "symfony/phpunit-bridge": "~2.7|~3.0"
+ "symfony/http-kernel": "~2.8|~3.0|~4.0"
},
- "type": "mink-driver",
+ "type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.3.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "Behat\\Mink\\Driver\\": "src/"
- }
+ "Symfony\\Component\\Debug\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4962,54 +5562,70 @@
],
"authors": [
{
- "name": "Konstantin Kudryashov",
- "email": "ever.zet@gmail.com",
- "homepage": "http://everzet.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony2 BrowserKit driver for Mink framework",
- "homepage": "http://mink.behat.org/",
- "keywords": [
- "Mink",
- "Symfony2",
- "browser",
- "testing"
- ],
- "time": "2016-03-05T08:59:47+00:00"
+ "description": "Symfony Debug Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-28T21:49:22+00:00"
},
{
- "name": "behat/mink-goutte-driver",
- "version": "v1.2.1",
+ "name": "symfony/dependency-injection",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/minkphp/MinkGoutteDriver.git",
- "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
+ "url": "https://github.com/symfony/dependency-injection.git",
+ "reference": "12e901abc1cb0d637a0e5abe9923471361d96b07"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
- "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/12e901abc1cb0d637a0e5abe9923471361d96b07",
+ "reference": "12e901abc1cb0d637a0e5abe9923471361d96b07",
"shasum": ""
},
"require": {
- "behat/mink": "~1.6@dev",
- "behat/mink-browserkit-driver": "~1.2@dev",
- "fabpot/goutte": "~1.0.4|~2.0|~3.1",
- "php": ">=5.3.1"
+ "php": "^5.5.9|>=7.0.8",
+ "psr/container": "^1.0"
+ },
+ "conflict": {
+ "symfony/config": "<3.3.7",
+ "symfony/finder": "<3.3",
+ "symfony/proxy-manager-bridge": "<3.4",
+ "symfony/yaml": "<3.4"
+ },
+ "provide": {
+ "psr/container-implementation": "1.0"
},
"require-dev": {
- "symfony/phpunit-bridge": "~2.7|~3.0"
+ "symfony/config": "~3.3|~4.0",
+ "symfony/expression-language": "~2.8|~3.0|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
+ },
+ "suggest": {
+ "symfony/config": "",
+ "symfony/expression-language": "For using expressions in service container configuration",
+ "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
+ "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
+ "symfony/yaml": ""
},
- "type": "mink-driver",
+ "type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "Behat\\Mink\\Driver\\": "src/"
- }
+ "Symfony\\Component\\DependencyInjection\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5017,55 +5633,55 @@
],
"authors": [
{
- "name": "Konstantin Kudryashov",
- "email": "ever.zet@gmail.com",
- "homepage": "http://everzet.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Goutte driver for Mink framework",
- "homepage": "http://mink.behat.org/",
- "keywords": [
- "browser",
- "goutte",
- "headless",
- "testing"
- ],
- "time": "2016-03-05T09:04:22+00:00"
+ "description": "Symfony DependencyInjection Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-03-04T03:54:53+00:00"
},
{
- "name": "doctrine/instantiator",
- "version": "1.0.5",
+ "name": "symfony/dom-crawler",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/doctrine/instantiator.git",
- "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
+ "url": "https://github.com/symfony/dom-crawler.git",
+ "reference": "2bb5d3101cc01f4fe580e536daf4f1959bc2d24d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
- "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
+ "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2bb5d3101cc01f4fe580e536daf4f1959bc2d24d",
+ "reference": "2bb5d3101cc01f4fe580e536daf4f1959bc2d24d",
"shasum": ""
},
"require": {
- "php": ">=5.3,<8.0-DEV"
+ "php": "^5.5.9|>=7.0.8",
+ "symfony/polyfill-mbstring": "~1.0"
},
"require-dev": {
- "athletic/athletic": "~0.1.8",
- "ext-pdo": "*",
- "ext-phar": "*",
- "phpunit/phpunit": "~4.0",
- "squizlabs/php_codesniffer": "~2.0"
+ "symfony/css-selector": "~2.8|~3.0|~4.0"
+ },
+ "suggest": {
+ "symfony/css-selector": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
- }
+ "Symfony\\Component\\DomCrawler\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5073,86 +5689,61 @@
],
"authors": [
{
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com",
- "homepage": "http://ocramius.github.com/"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
- "homepage": "https://github.com/doctrine/instantiator",
- "keywords": [
- "constructor",
- "instantiate"
- ],
- "time": "2015-06-14T21:17:01+00:00"
- },
- {
- "name": "drupal/coder",
- "version": "8.2.12",
- "source": {
- "type": "git",
- "url": "https://git.drupal.org/project/coder.git",
- "reference": "984c54a7b1e8f27ff1c32348df69712afd86b17f"
- },
- "require": {
- "ext-mbstring": "*",
- "php": ">=5.4.0",
- "squizlabs/php_codesniffer": ">=2.8.1 <3.0",
- "symfony/yaml": ">=2.0.0"
- },
- "require-dev": {
- "phpunit/phpunit": ">=3.7 <6"
- },
- "type": "phpcodesniffer-standard",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0+"
- ],
- "description": "Coder is a library to review Drupal code.",
- "homepage": "https://www.drupal.org/project/coder",
- "keywords": [
- "code review",
- "phpcs",
- "standards"
- ],
- "time": "2017-03-18T10:28:49+00:00"
+ "description": "Symfony DomCrawler Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-22T10:48:49+00:00"
},
{
- "name": "fabpot/goutte",
- "version": "v3.2.2",
+ "name": "symfony/event-dispatcher",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/FriendsOfPHP/Goutte.git",
- "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96"
+ "url": "https://github.com/symfony/event-dispatcher.git",
+ "reference": "58990682ac3fdc1f563b7e705452921372aad11d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/395f61d7c2e15a813839769553a4de16fa3b3c96",
- "reference": "395f61d7c2e15a813839769553a4de16fa3b3c96",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/58990682ac3fdc1f563b7e705452921372aad11d",
+ "reference": "58990682ac3fdc1f563b7e705452921372aad11d",
"shasum": ""
},
"require": {
- "guzzlehttp/guzzle": "^6.0",
- "php": ">=5.5.0",
- "symfony/browser-kit": "~2.1|~3.0|~4.0",
- "symfony/css-selector": "~2.1|~3.0|~4.0",
- "symfony/dom-crawler": "~2.1|~3.0|~4.0"
+ "php": "^5.5.9|>=7.0.8"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<3.3"
},
"require-dev": {
- "symfony/phpunit-bridge": "^3.3 || ^4"
+ "psr/log": "~1.0",
+ "symfony/config": "~2.8|~3.0|~4.0",
+ "symfony/dependency-injection": "~3.3|~4.0",
+ "symfony/expression-language": "~2.8|~3.0|~4.0",
+ "symfony/stopwatch": "~2.8|~3.0|~4.0"
+ },
+ "suggest": {
+ "symfony/dependency-injection": "",
+ "symfony/http-kernel": ""
},
- "type": "application",
+ "type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "Goutte\\": "Goutte"
+ "Symfony\\Component\\EventDispatcher\\": ""
},
"exclude-from-classmap": [
- "Goutte/Tests"
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -5163,49 +5754,46 @@
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "A simple PHP Web Scraper",
- "homepage": "https://github.com/FriendsOfPHP/Goutte",
- "keywords": [
- "scraper"
- ],
- "time": "2017-11-19T08:45:40+00:00"
+ "description": "Symfony EventDispatcher Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-14T10:03:57+00:00"
},
{
- "name": "jcalderonzumba/gastonjs",
- "version": "v1.2.0",
+ "name": "symfony/filesystem",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/jcalderonzumba/gastonjs.git",
- "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
+ "url": "https://github.com/symfony/filesystem.git",
+ "reference": "253a4490b528597aa14d2bf5aeded6f5e5e4a541"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
- "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/253a4490b528597aa14d2bf5aeded6f5e5e4a541",
+ "reference": "253a4490b528597aa14d2bf5aeded6f5e5e4a541",
"shasum": ""
},
"require": {
- "guzzlehttp/guzzle": "~5.0|~6.0",
- "php": ">=5.4"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.6",
- "silex/silex": "~1.2",
- "symfony/phpunit-bridge": "~2.7",
- "symfony/process": "~2.1"
+ "php": "^5.5.9|>=7.0.8"
},
- "type": "phantomjs-api",
+ "type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "Zumba\\GastonJS\\": "src"
- }
+ "Symfony\\Component\\Filesystem\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5213,56 +5801,48 @@
],
"authors": [
{
- "name": "Juan Francisco Calderón Zumba",
- "email": "juanfcz@gmail.com",
- "homepage": "http://github.com/jcalderonzumba"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "PhantomJS API based server for webpage automation",
- "homepage": "https://github.com/jcalderonzumba/gastonjs",
- "keywords": [
- "api",
- "automation",
- "browser",
- "headless",
- "phantomjs"
- ],
- "time": "2017-03-31T07:31:47+00:00"
+ "description": "Symfony Filesystem Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-22T10:48:49+00:00"
},
{
- "name": "jcalderonzumba/mink-phantomjs-driver",
- "version": "v0.3.3",
+ "name": "symfony/finder",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
- "reference": "008f43670e94acd39273d15add1e7348eb23848d"
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "a479817ce0a9e4adfd7d39c6407c95d97c254625"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
- "reference": "008f43670e94acd39273d15add1e7348eb23848d",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/a479817ce0a9e4adfd7d39c6407c95d97c254625",
+ "reference": "a479817ce0a9e4adfd7d39c6407c95d97c254625",
"shasum": ""
},
"require": {
- "behat/mink": "~1.7",
- "jcalderonzumba/gastonjs": "~1.0",
- "php": ">=5.4",
- "twig/twig": "~1.20|~2.0"
- },
- "require-dev": {
- "mink/driver-testsuite": "dev-master",
- "phpunit/phpunit": "~4.6"
+ "php": "^5.5.9|>=7.0.8"
},
- "type": "mink-driver",
+ "type": "library",
"extra": {
"branch-alias": {
- "dev-master": "0.4.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "Zumba\\Mink\\Driver\\": "src"
- }
+ "Symfony\\Component\\Finder\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5270,101 +5850,141 @@
],
"authors": [
{
- "name": "Juan Francisco Calderón Zumba",
- "email": "juanfcz@gmail.com",
- "homepage": "http://github.com/jcalderonzumba"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "PhantomJS driver for Mink framework",
- "homepage": "http://mink.behat.org/",
- "keywords": [
- "ajax",
- "browser",
- "headless",
- "javascript",
- "phantomjs",
- "testing"
- ],
- "time": "2016-12-01T10:57:30+00:00"
+ "description": "Symfony Finder Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-03-05T18:28:11+00:00"
},
{
- "name": "mikey179/vfsStream",
- "version": "v1.6.5",
+ "name": "symfony/http-foundation",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/mikey179/vfsStream.git",
- "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
+ "url": "https://github.com/symfony/http-foundation.git",
+ "reference": "6f5935723c11b4125fc9927db6ad2feaa196e175"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
- "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6f5935723c11b4125fc9927db6ad2feaa196e175",
+ "reference": "6f5935723c11b4125fc9927db6ad2feaa196e175",
"shasum": ""
},
"require": {
- "php": ">=5.3.0"
+ "php": "^5.5.9|>=7.0.8",
+ "symfony/polyfill-mbstring": "~1.1",
+ "symfony/polyfill-php70": "~1.6"
},
"require-dev": {
- "phpunit/phpunit": "~4.5"
+ "symfony/expression-language": "~2.8|~3.0|~4.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.6.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
- "psr-0": {
- "org\\bovigo\\vfs\\": "src/main/php"
- }
+ "psr-4": {
+ "Symfony\\Component\\HttpFoundation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Frank Kleine",
- "homepage": "http://frankkleine.de/",
- "role": "Developer"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Virtual file system to mock the real file system in unit tests.",
- "homepage": "http://vfs.bovigo.org/",
- "time": "2017-08-01T08:02:14+00:00"
+ "description": "Symfony HttpFoundation Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-22T10:48:49+00:00"
},
{
- "name": "phpdocumentor/reflection-common",
- "version": "1.0.1",
+ "name": "symfony/http-kernel",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
- "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
+ "url": "https://github.com/symfony/http-kernel.git",
+ "reference": "a443bbbd93682aa08e623fade4c94edd586ed2de"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
- "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a443bbbd93682aa08e623fade4c94edd586ed2de",
+ "reference": "a443bbbd93682aa08e623fade4c94edd586ed2de",
"shasum": ""
},
"require": {
- "php": ">=5.5"
+ "php": "^5.5.9|>=7.0.8",
+ "psr/log": "~1.0",
+ "symfony/debug": "~2.8|~3.0|~4.0",
+ "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
+ "symfony/http-foundation": "^3.4.4|^4.0.4"
+ },
+ "conflict": {
+ "symfony/config": "<2.8",
+ "symfony/dependency-injection": "<3.4.5|<4.0.5,>=4",
+ "symfony/var-dumper": "<3.3",
+ "twig/twig": "<1.34|<2.4,>=2"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.6"
+ "psr/cache": "~1.0",
+ "symfony/browser-kit": "~2.8|~3.0|~4.0",
+ "symfony/class-loader": "~2.8|~3.0",
+ "symfony/config": "~2.8|~3.0|~4.0",
+ "symfony/console": "~2.8|~3.0|~4.0",
+ "symfony/css-selector": "~2.8|~3.0|~4.0",
+ "symfony/dependency-injection": "^3.4.5|^4.0.5",
+ "symfony/dom-crawler": "~2.8|~3.0|~4.0",
+ "symfony/expression-language": "~2.8|~3.0|~4.0",
+ "symfony/finder": "~2.8|~3.0|~4.0",
+ "symfony/process": "~2.8|~3.0|~4.0",
+ "symfony/routing": "~3.4|~4.0",
+ "symfony/stopwatch": "~2.8|~3.0|~4.0",
+ "symfony/templating": "~2.8|~3.0|~4.0",
+ "symfony/translation": "~2.8|~3.0|~4.0",
+ "symfony/var-dumper": "~3.3|~4.0"
+ },
+ "suggest": {
+ "symfony/browser-kit": "",
+ "symfony/config": "",
+ "symfony/console": "",
+ "symfony/dependency-injection": "",
+ "symfony/finder": "",
+ "symfony/var-dumper": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
"psr-4": {
- "phpDocumentor\\Reflection\\": [
- "src"
- ]
- }
+ "Symfony\\Component\\HttpKernel\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5372,52 +5992,51 @@
],
"authors": [
{
- "name": "Jaap van Otterdijk",
- "email": "opensource@ijaap.nl"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
- "homepage": "http://www.phpdoc.org",
- "keywords": [
- "FQSEN",
- "phpDocumentor",
- "phpdoc",
- "reflection",
- "static analysis"
- ],
- "time": "2017-09-11T18:02:19+00:00"
+ "description": "Symfony HttpKernel Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-03-05T19:41:07+00:00"
},
{
- "name": "phpdocumentor/reflection-docblock",
- "version": "3.3.2",
+ "name": "symfony/polyfill-iconv",
+ "version": "v1.7.0",
"source": {
"type": "git",
- "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2"
+ "url": "https://github.com/symfony/polyfill-iconv.git",
+ "reference": "bd515d8f392730c833bc1ba993a4f598da64fa5b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2",
- "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2",
+ "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/bd515d8f392730c833bc1ba993a4f598da64fa5b",
+ "reference": "bd515d8f392730c833bc1ba993a4f598da64fa5b",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0",
- "phpdocumentor/reflection-common": "^1.0.0",
- "phpdocumentor/type-resolver": "^0.4.0",
- "webmozart/assert": "^1.0"
+ "php": ">=5.3.3"
},
- "require-dev": {
- "mockery/mockery": "^0.9.4",
- "phpunit/phpunit": "^4.4"
+ "suggest": {
+ "ext-iconv": "For best performance"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.7-dev"
+ }
+ },
"autoload": {
"psr-4": {
- "phpDocumentor\\Reflection\\": [
- "src/"
- ]
- }
+ "Symfony\\Polyfill\\Iconv\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5425,47 +6044,58 @@
],
"authors": [
{
- "name": "Mike van Riel",
- "email": "me@mikevanriel.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
- "time": "2017-11-10T14:09:06+00:00"
+ "description": "Symfony polyfill for the Iconv extension",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "iconv",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "time": "2018-01-30T19:27:44+00:00"
},
{
- "name": "phpdocumentor/type-resolver",
- "version": "0.4.0",
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.7.0",
"source": {
"type": "git",
- "url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
- "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/78be803ce01e55d3491c1397cf1c64beb9c1b63b",
+ "reference": "78be803ce01e55d3491c1397cf1c64beb9c1b63b",
"shasum": ""
},
"require": {
- "php": "^5.5 || ^7.0",
- "phpdocumentor/reflection-common": "^1.0"
+ "php": ">=5.3.3"
},
- "require-dev": {
- "mockery/mockery": "^0.9.4",
- "phpunit/phpunit": "^5.2||^4.8.24"
+ "suggest": {
+ "ext-mbstring": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "1.7-dev"
}
},
"autoload": {
"psr-4": {
- "phpDocumentor\\Reflection\\": [
- "src/"
- ]
- }
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5473,47 +6103,59 @@
],
"authors": [
{
- "name": "Mike van Riel",
- "email": "me@mikevanriel.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "time": "2017-07-14T14:27:02+00:00"
+ "description": "Symfony polyfill for the Mbstring extension",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "time": "2018-01-30T19:27:44+00:00"
},
{
- "name": "phpspec/prophecy",
- "version": "1.7.3",
+ "name": "symfony/polyfill-php70",
+ "version": "v1.7.0",
"source": {
"type": "git",
- "url": "https://github.com/phpspec/prophecy.git",
- "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf"
+ "url": "https://github.com/symfony/polyfill-php70.git",
+ "reference": "3532bfcd8f933a7816f3a0a59682fc404776600f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
- "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
+ "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/3532bfcd8f933a7816f3a0a59682fc404776600f",
+ "reference": "3532bfcd8f933a7816f3a0a59682fc404776600f",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.0.2",
- "php": "^5.3|^7.0",
- "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
- "sebastian/comparator": "^1.1|^2.0",
- "sebastian/recursion-context": "^1.0|^2.0|^3.0"
- },
- "require-dev": {
- "phpspec/phpspec": "^2.5|^3.2",
- "phpunit/phpunit": "^4.8.35 || ^5.7"
+ "paragonie/random_compat": "~1.0|~2.0",
+ "php": ">=5.3.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.7.x-dev"
+ "dev-master": "1.7-dev"
}
},
"autoload": {
- "psr-0": {
- "Prophecy\\": "src/"
- }
+ "psr-4": {
+ "Symfony\\Polyfill\\Php70\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ],
+ "classmap": [
+ "Resources/stubs"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5521,497 +6163,603 @@
],
"authors": [
{
- "name": "Konstantin Kudryashov",
- "email": "ever.zet@gmail.com",
- "homepage": "http://everzet.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
- "name": "Marcello Duarte",
- "email": "marcello.duarte@gmail.com"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Highly opinionated mocking framework for PHP 5.3+",
- "homepage": "https://github.com/phpspec/prophecy",
+ "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
"keywords": [
- "Double",
- "Dummy",
- "fake",
- "mock",
- "spy",
- "stub"
- ],
- "time": "2017-11-24T13:59:53+00:00"
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "time": "2018-01-30T19:27:44+00:00"
},
{
- "name": "phpunit/php-code-coverage",
- "version": "2.2.4",
+ "name": "symfony/process",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
+ "url": "https://github.com/symfony/process.git",
+ "reference": "cc4aea21f619116aaf1c58016a944e4821c8e8af"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
- "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
+ "url": "https://api.github.com/repos/symfony/process/zipball/cc4aea21f619116aaf1c58016a944e4821c8e8af",
+ "reference": "cc4aea21f619116aaf1c58016a944e4821c8e8af",
"shasum": ""
},
"require": {
- "php": ">=5.3.3",
- "phpunit/php-file-iterator": "~1.3",
- "phpunit/php-text-template": "~1.2",
- "phpunit/php-token-stream": "~1.3",
- "sebastian/environment": "^1.3.2",
- "sebastian/version": "~1.0"
- },
- "require-dev": {
- "ext-xdebug": ">=2.1.4",
- "phpunit/phpunit": "~4"
- },
- "suggest": {
- "ext-dom": "*",
- "ext-xdebug": ">=2.2.1",
- "ext-xmlwriter": "*"
+ "php": "^5.5.9|>=7.0.8"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.2.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\Process\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sb@sebastian-bergmann.de",
- "role": "lead"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
- "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
- "keywords": [
- "coverage",
- "testing",
- "xunit"
- ],
- "time": "2015-10-06T15:47:00+00:00"
+ "description": "Symfony Process Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-12T17:55:00+00:00"
},
{
- "name": "phpunit/php-file-iterator",
- "version": "1.4.5",
+ "name": "symfony/psr-http-message-bridge",
+ "version": "v1.0.2",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
+ "url": "https://github.com/symfony/psr-http-message-bridge.git",
+ "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
- "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
+ "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c2b757934f2d9681a287e662efbc27c41fe8ef86",
+ "reference": "c2b757934f2d9681a287e662efbc27c41fe8ef86",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": ">=5.3.3",
+ "psr/http-message": "~1.0",
+ "symfony/http-foundation": "~2.3|~3.0|~4.0"
},
- "type": "library",
+ "require-dev": {
+ "symfony/phpunit-bridge": "~3.2|4.0"
+ },
+ "suggest": {
+ "psr/http-message-implementation": "To use the HttpFoundation factory",
+ "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
+ },
+ "type": "symfony-bridge",
"extra": {
"branch-alias": {
- "dev-master": "1.4.x-dev"
+ "dev-master": "1.0-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Symfony\\Bridge\\PsrHttpMessage\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sb@sebastian-bergmann.de",
- "role": "lead"
+ "name": "Symfony Community",
+ "homepage": "http://symfony.com/contributors"
+ },
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
}
],
- "description": "FilterIterator implementation that filters files based on a list of suffixes.",
- "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+ "description": "PSR HTTP message bridge",
+ "homepage": "http://symfony.com",
"keywords": [
- "filesystem",
- "iterator"
+ "http",
+ "http-message",
+ "psr-7"
],
- "time": "2017-11-27T13:52:08+00:00"
+ "time": "2017-12-19T00:31:44+00:00"
},
{
- "name": "phpunit/php-text-template",
- "version": "1.2.1",
+ "name": "symfony/routing",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
- "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
+ "url": "https://github.com/symfony/routing.git",
+ "reference": "8773a9d52715f1a579576ce0e60213de34f5ef3e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
- "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/8773a9d52715f1a579576ce0e60213de34f5ef3e",
+ "reference": "8773a9d52715f1a579576ce0e60213de34f5ef3e",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^5.5.9|>=7.0.8"
+ },
+ "conflict": {
+ "symfony/config": "<2.8",
+ "symfony/dependency-injection": "<3.3",
+ "symfony/yaml": "<3.4"
+ },
+ "require-dev": {
+ "doctrine/annotations": "~1.0",
+ "doctrine/common": "~2.2",
+ "psr/log": "~1.0",
+ "symfony/config": "~2.8|~3.0|~4.0",
+ "symfony/dependency-injection": "~3.3|~4.0",
+ "symfony/expression-language": "~2.8|~3.0|~4.0",
+ "symfony/http-foundation": "~2.8|~3.0|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
+ },
+ "suggest": {
+ "doctrine/annotations": "For using the annotation loader",
+ "symfony/config": "For using the all-in-one router or any loader",
+ "symfony/dependency-injection": "For loading routes from a service",
+ "symfony/expression-language": "For using expression matching",
+ "symfony/http-foundation": "For using a Symfony Request object",
+ "symfony/yaml": "For using the YAML loader"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.4-dev"
+ }
+ },
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\Routing\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Simple template engine.",
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+ "description": "Symfony Routing Component",
+ "homepage": "https://symfony.com",
"keywords": [
- "template"
+ "router",
+ "routing",
+ "uri",
+ "url"
],
- "time": "2015-06-21T13:50:34+00:00"
+ "time": "2018-02-28T21:49:22+00:00"
},
{
- "name": "phpunit/php-timer",
- "version": "1.0.9",
+ "name": "symfony/serializer",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
+ "url": "https://github.com/symfony/serializer.git",
+ "reference": "11bea1aebe9c8d506f47c01931b0df9f18629a8f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
- "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
+ "url": "https://api.github.com/repos/symfony/serializer/zipball/11bea1aebe9c8d506f47c01931b0df9f18629a8f",
+ "reference": "11bea1aebe9c8d506f47c01931b0df9f18629a8f",
"shasum": ""
},
"require": {
- "php": "^5.3.3 || ^7.0"
+ "php": "^5.5.9|>=7.0.8"
+ },
+ "conflict": {
+ "phpdocumentor/type-resolver": "<0.2.1",
+ "symfony/dependency-injection": "<3.2",
+ "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
+ "symfony/property-info": "<3.1",
+ "symfony/yaml": "<3.4"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
+ "doctrine/annotations": "~1.0",
+ "doctrine/cache": "~1.0",
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0",
+ "symfony/cache": "~3.1|~4.0",
+ "symfony/config": "~2.8|~3.0|~4.0",
+ "symfony/dependency-injection": "~3.2|~4.0",
+ "symfony/http-foundation": "~2.8|~3.0|~4.0",
+ "symfony/property-access": "~2.8|~3.0|~4.0",
+ "symfony/property-info": "~3.1|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
+ },
+ "suggest": {
+ "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
+ "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
+ "psr/cache-implementation": "For using the metadata cache.",
+ "symfony/config": "For using the XML mapping loader.",
+ "symfony/http-foundation": "To use the DataUriNormalizer.",
+ "symfony/property-access": "For using the ObjectNormalizer.",
+ "symfony/property-info": "To deserialize relations.",
+ "symfony/yaml": "For using the default YAML mapping loader."
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\Serializer\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sb@sebastian-bergmann.de",
- "role": "lead"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Utility class for timing",
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
- "keywords": [
- "timer"
- ],
- "time": "2017-02-26T11:10:40+00:00"
+ "description": "Symfony Serializer Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-14T14:07:03+00:00"
},
{
- "name": "phpunit/php-token-stream",
- "version": "1.4.12",
+ "name": "symfony/translation",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-token-stream.git",
- "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
+ "url": "https://github.com/symfony/translation.git",
+ "reference": "80e19eaf12cbb546ac40384e5c55c36306823e57"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
- "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/80e19eaf12cbb546ac40384e5c55c36306823e57",
+ "reference": "80e19eaf12cbb546ac40384e5c55c36306823e57",
"shasum": ""
},
"require": {
- "ext-tokenizer": "*",
- "php": ">=5.3.3"
+ "php": "^5.5.9|>=7.0.8",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/config": "<2.8",
+ "symfony/dependency-injection": "<3.4",
+ "symfony/yaml": "<3.4"
},
"require-dev": {
- "phpunit/phpunit": "~4.2"
+ "psr/log": "~1.0",
+ "symfony/config": "~2.8|~3.0|~4.0",
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/finder": "~2.8|~3.0|~4.0",
+ "symfony/intl": "^2.8.18|^3.2.5|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
+ },
+ "suggest": {
+ "psr/log": "To use logging capability in translator",
+ "symfony/config": "",
+ "symfony/yaml": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.4-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Wrapper around PHP's tokenizer extension.",
- "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
- "keywords": [
- "tokenizer"
- ],
- "time": "2017-12-04T08:55:13+00:00"
+ "description": "Symfony Translation Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-22T06:28:18+00:00"
},
{
- "name": "phpunit/phpunit",
- "version": "4.8.36",
+ "name": "symfony/validator",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
+ "url": "https://github.com/symfony/validator.git",
+ "reference": "b0dcfa428168b381ac0340e5209a47780799e393"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
- "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
+ "url": "https://api.github.com/repos/symfony/validator/zipball/b0dcfa428168b381ac0340e5209a47780799e393",
+ "reference": "b0dcfa428168b381ac0340e5209a47780799e393",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "ext-json": "*",
- "ext-pcre": "*",
- "ext-reflection": "*",
- "ext-spl": "*",
- "php": ">=5.3.3",
- "phpspec/prophecy": "^1.3.1",
- "phpunit/php-code-coverage": "~2.1",
- "phpunit/php-file-iterator": "~1.4",
- "phpunit/php-text-template": "~1.2",
- "phpunit/php-timer": "^1.0.6",
- "phpunit/phpunit-mock-objects": "~2.3",
- "sebastian/comparator": "~1.2.2",
- "sebastian/diff": "~1.2",
- "sebastian/environment": "~1.3",
- "sebastian/exporter": "~1.2",
- "sebastian/global-state": "~1.0",
- "sebastian/version": "~1.0",
- "symfony/yaml": "~2.1|~3.0"
+ "php": "^5.5.9|>=7.0.8",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/translation": "~2.8|~3.0|~4.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
+ "symfony/dependency-injection": "<3.3",
+ "symfony/http-kernel": "<3.3.5",
+ "symfony/yaml": "<3.4"
+ },
+ "require-dev": {
+ "doctrine/annotations": "~1.0",
+ "doctrine/cache": "~1.0",
+ "egulias/email-validator": "^1.2.8|~2.0",
+ "symfony/cache": "~3.1|~4.0",
+ "symfony/config": "~2.8|~3.0|~4.0",
+ "symfony/dependency-injection": "~3.3|~4.0",
+ "symfony/expression-language": "~2.8|~3.0|~4.0",
+ "symfony/http-foundation": "~2.8|~3.0|~4.0",
+ "symfony/http-kernel": "^3.3.5|~4.0",
+ "symfony/intl": "^2.8.18|^3.2.5|~4.0",
+ "symfony/property-access": "~2.8|~3.0|~4.0",
+ "symfony/var-dumper": "~3.3|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
},
"suggest": {
- "phpunit/php-invoker": "~1.1"
+ "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
+ "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
+ "egulias/email-validator": "Strict (RFC compliant) email validation",
+ "psr/cache-implementation": "For using the metadata cache.",
+ "symfony/config": "",
+ "symfony/expression-language": "For using the Expression validator",
+ "symfony/http-foundation": "",
+ "symfony/intl": "",
+ "symfony/property-access": "For accessing properties within comparison constraints",
+ "symfony/yaml": ""
},
- "bin": [
- "phpunit"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.8.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\Validator\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "The PHP Unit Testing framework.",
- "homepage": "https://phpunit.de/",
- "keywords": [
- "phpunit",
- "testing",
- "xunit"
- ],
- "time": "2017-06-21T08:07:12+00:00"
+ "description": "Symfony Validator Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-03-01T10:20:19+00:00"
},
{
- "name": "phpunit/phpunit-mock-objects",
- "version": "2.3.8",
+ "name": "symfony/var-dumper",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
- "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
+ "url": "https://github.com/symfony/var-dumper.git",
+ "reference": "80964679d81da3d5618519e0e4be488c3d7ecd7d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
- "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/80964679d81da3d5618519e0e4be488c3d7ecd7d",
+ "reference": "80964679d81da3d5618519e0e4be488c3d7ecd7d",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.0.2",
- "php": ">=5.3.3",
- "phpunit/php-text-template": "~1.2",
- "sebastian/exporter": "~1.2"
+ "php": "^5.5.9|>=7.0.8",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.4"
+ "ext-iconv": "*",
+ "twig/twig": "~1.34|~2.4"
},
"suggest": {
- "ext-soap": "*"
+ "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
+ "ext-intl": "To show region name in time zone dump",
+ "ext-symfony_debug": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.3.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
+ "files": [
+ "Resources/functions/dump.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\VarDumper\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sb@sebastian-bergmann.de",
- "role": "lead"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Mock Object library for PHPUnit",
- "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
+ "description": "Symfony mechanism for exploring and dumping PHP variables",
+ "homepage": "https://symfony.com",
"keywords": [
- "mock",
- "xunit"
+ "debug",
+ "dump"
],
- "time": "2015-10-02T06:51:40+00:00"
+ "time": "2018-02-22T17:29:24+00:00"
},
{
- "name": "sebastian/comparator",
- "version": "1.2.4",
+ "name": "symfony/yaml",
+ "version": "v3.4.6",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
+ "url": "https://github.com/symfony/yaml.git",
+ "reference": "6af42631dcf89e9c616242c900d6c52bd53bd1bb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
- "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/6af42631dcf89e9c616242c900d6c52bd53bd1bb",
+ "reference": "6af42631dcf89e9c616242c900d6c52bd53bd1bb",
"shasum": ""
},
"require": {
- "php": ">=5.3.3",
- "sebastian/diff": "~1.2",
- "sebastian/exporter": "~1.2 || ~2.0"
+ "php": "^5.5.9|>=7.0.8"
+ },
+ "conflict": {
+ "symfony/console": "<3.4"
},
"require-dev": {
- "phpunit/phpunit": "~4.4"
+ "symfony/console": "~3.4|~4.0"
+ },
+ "suggest": {
+ "symfony/console": "For validating YAML files using the lint command"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2.x-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\Yaml\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
- },
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@2bepublished.at"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides the functionality to compare PHP values for equality",
- "homepage": "http://www.github.com/sebastianbergmann/comparator",
- "keywords": [
- "comparator",
- "compare",
- "equality"
- ],
- "time": "2017-01-29T09:50:25+00:00"
+ "description": "Symfony Yaml Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-02-16T09:50:28+00:00"
},
{
- "name": "sebastian/diff",
- "version": "1.4.3",
+ "name": "twig/twig",
+ "version": "v1.35.2",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
+ "url": "https://github.com/twigphp/Twig.git",
+ "reference": "9c24f2cd39dc1906b76879e099970b7e53724601"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
- "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
+ "url": "https://api.github.com/repos/twigphp/Twig/zipball/9c24f2cd39dc1906b76879e099970b7e53724601",
+ "reference": "9c24f2cd39dc1906b76879e099970b7e53724601",
"shasum": ""
},
"require": {
- "php": "^5.3.3 || ^7.0"
+ "php": ">=5.3.3"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
+ "psr/container": "^1.0",
+ "symfony/debug": "~2.7",
+ "symfony/phpunit-bridge": "~3.3@dev"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.4-dev"
+ "dev-master": "1.35-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-0": {
+ "Twig_": "lib/"
+ },
+ "psr-4": {
+ "Twig\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6019,560 +6767,463 @@
],
"authors": [
{
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com",
+ "homepage": "http://fabien.potencier.org",
+ "role": "Lead Developer"
+ },
+ {
+ "name": "Armin Ronacher",
+ "email": "armin.ronacher@active-4.com",
+ "role": "Project Founder"
},
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Twig Team",
+ "homepage": "http://twig.sensiolabs.org/contributors",
+ "role": "Contributors"
}
],
- "description": "Diff implementation",
- "homepage": "https://github.com/sebastianbergmann/diff",
+ "description": "Twig, the flexible, fast, and secure template language for PHP",
+ "homepage": "http://twig.sensiolabs.org",
"keywords": [
- "diff"
+ "templating"
],
- "time": "2017-05-22T07:24:03+00:00"
+ "time": "2018-03-03T16:21:29+00:00"
},
{
- "name": "sebastian/environment",
- "version": "1.3.8",
+ "name": "twistor/flysystem-stream-wrapper",
+ "version": "v1.0.8",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
+ "url": "https://github.com/twistor/flysystem-stream-wrapper.git",
+ "reference": "00278abc16bc4bd759e1ec4f2eadb0432fe8d5ac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
- "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
+ "url": "https://api.github.com/repos/twistor/flysystem-stream-wrapper/zipball/00278abc16bc4bd759e1ec4f2eadb0432fe8d5ac",
+ "reference": "00278abc16bc4bd759e1ec4f2eadb0432fe8d5ac",
"shasum": ""
},
"require": {
- "php": "^5.3.3 || ^7.0"
+ "league/flysystem": "~1.0",
+ "twistor/stream-util": "~1.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.8 || ^5.0"
+ "phpunit/phpunit": "~4.8"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.3.x-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Twistor\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Chris Leppanen",
+ "email": "chris.leppanen@gmail.com"
}
],
- "description": "Provides functionality to handle HHVM/PHP environments",
- "homepage": "http://www.github.com/sebastianbergmann/environment",
- "keywords": [
- "Xdebug",
- "environment",
- "hhvm"
- ],
- "time": "2016-08-18T05:49:44+00:00"
+ "description": "Adapts Flysystem filesystems to PHP stream wrappers.",
+ "homepage": "http://github.com/twistor/flysystem-stream-wrapper",
+ "time": "2017-11-06T05:32:20+00:00"
},
{
- "name": "sebastian/exporter",
- "version": "1.2.2",
+ "name": "twistor/stream-util",
+ "version": "v1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
+ "url": "https://github.com/twistor/stream-util.git",
+ "reference": "226e74e6234508a53639b960c4a2752aee61799a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
- "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
+ "url": "https://api.github.com/repos/twistor/stream-util/zipball/226e74e6234508a53639b960c4a2752aee61799a",
+ "reference": "226e74e6234508a53639b960c4a2752aee61799a",
"shasum": ""
},
"require": {
- "php": ">=5.3.3",
- "sebastian/recursion-context": "~1.0"
+ "php": ">=5.3.0"
},
"require-dev": {
- "ext-mbstring": "*",
- "phpunit/phpunit": "~4.4"
+ "phpunit/phpunit": "~4.1"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.3.x-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Twistor\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
- },
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@2bepublished.at"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
+ "name": "Chris Leppanen",
+ "email": "chris.leppanen@gmail.com"
}
],
- "description": "Provides the functionality to export PHP variables for visualization",
- "homepage": "http://www.github.com/sebastianbergmann/exporter",
- "keywords": [
- "export",
- "exporter"
- ],
- "time": "2016-06-17T09:04:28+00:00"
+ "description": "Helper utilities for dealing with streams.",
+ "homepage": "http://github.com/twistor/stream-util",
+ "time": "2015-06-12T11:33:28+00:00"
},
{
- "name": "sebastian/global-state",
- "version": "1.1.1",
+ "name": "webflo/drupal-finder",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
+ "url": "https://github.com/webflo/drupal-finder.git",
+ "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
- "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
+ "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
+ "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
"shasum": ""
},
- "require": {
- "php": ">=5.3.3"
- },
"require-dev": {
- "phpunit/phpunit": "~4.2"
- },
- "suggest": {
- "ext-uopz": "*"
+ "mikey179/vfsstream": "^1.6",
+ "phpunit/phpunit": "^4.8"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
"autoload": {
"classmap": [
- "src/"
+ "src/DrupalFinder.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "GPL-2.0+"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Florian Weber",
+ "email": "florian@webflo.org"
}
],
- "description": "Snapshotting of global state",
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
- "keywords": [
- "global state"
- ],
- "time": "2015-10-12T03:26:01+00:00"
+ "description": "Helper class to locate a Drupal installation from a given path.",
+ "time": "2017-10-24T08:12:11+00:00"
},
{
- "name": "sebastian/recursion-context",
- "version": "1.0.5",
+ "name": "webmozart/assert",
+ "version": "1.3.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
+ "url": "https://github.com/webmozart/assert.git",
+ "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
- "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
+ "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
+ "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^5.3.3 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.4"
+ "phpunit/phpunit": "^4.6",
+ "sebastian/version": "^1.0.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "1.3-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Webmozart\\Assert\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
}
],
- "description": "Provides functionality to recursively process PHP variables",
- "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
- "time": "2016-10-03T07:41:43+00:00"
+ "description": "Assertions to validate method input/output with nice error messages.",
+ "keywords": [
+ "assert",
+ "check",
+ "validate"
+ ],
+ "time": "2018-01-29T19:49:41+00:00"
},
{
- "name": "squizlabs/php_codesniffer",
- "version": "2.9.1",
+ "name": "webmozart/path-util",
+ "version": "2.3.0",
"source": {
"type": "git",
- "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
- "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
+ "url": "https://github.com/webmozart/path-util.git",
+ "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
- "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
+ "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
+ "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
"shasum": ""
},
"require": {
- "ext-simplexml": "*",
- "ext-tokenizer": "*",
- "ext-xmlwriter": "*",
- "php": ">=5.1.2"
+ "php": ">=5.3.3",
+ "webmozart/assert": "~1.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.0"
+ "phpunit/phpunit": "^4.6",
+ "sebastian/version": "^1.0.1"
},
- "bin": [
- "scripts/phpcs",
- "scripts/phpcbf"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.x-dev"
+ "dev-master": "2.3-dev"
}
},
"autoload": {
- "classmap": [
- "CodeSniffer.php",
- "CodeSniffer/CLI.php",
- "CodeSniffer/Exception.php",
- "CodeSniffer/File.php",
- "CodeSniffer/Fixer.php",
- "CodeSniffer/Report.php",
- "CodeSniffer/Reporting.php",
- "CodeSniffer/Sniff.php",
- "CodeSniffer/Tokens.php",
- "CodeSniffer/Reports/",
- "CodeSniffer/Tokenizers/",
- "CodeSniffer/DocGenerators/",
- "CodeSniffer/Standards/AbstractPatternSniff.php",
- "CodeSniffer/Standards/AbstractScopeSniff.php",
- "CodeSniffer/Standards/AbstractVariableSniff.php",
- "CodeSniffer/Standards/IncorrectPatternException.php",
- "CodeSniffer/Standards/Generic/Sniffs/",
- "CodeSniffer/Standards/MySource/Sniffs/",
- "CodeSniffer/Standards/PEAR/Sniffs/",
- "CodeSniffer/Standards/PSR1/Sniffs/",
- "CodeSniffer/Standards/PSR2/Sniffs/",
- "CodeSniffer/Standards/Squiz/Sniffs/",
- "CodeSniffer/Standards/Zend/Sniffs/"
- ]
+ "psr-4": {
+ "Webmozart\\PathUtil\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Greg Sherwood",
- "role": "lead"
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
}
],
- "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
- "homepage": "http://www.squizlabs.com/php-codesniffer",
- "keywords": [
- "phpcs",
- "standards"
- ],
- "time": "2017-05-22T02:43:20+00:00"
+ "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
+ "time": "2015-12-17T08:42:14+00:00"
},
{
- "name": "symfony/browser-kit",
- "version": "v3.4.4",
+ "name": "zendframework/zend-diactoros",
+ "version": "1.7.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/browser-kit.git",
- "reference": "490f27762705c8489bd042fe3e9377a191dba9b4"
+ "url": "https://github.com/zendframework/zend-diactoros.git",
+ "reference": "bf26aff803a11c5cc8eb7c4878a702c403ec67f1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/browser-kit/zipball/490f27762705c8489bd042fe3e9377a191dba9b4",
- "reference": "490f27762705c8489bd042fe3e9377a191dba9b4",
+ "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/bf26aff803a11c5cc8eb7c4878a702c403ec67f1",
+ "reference": "bf26aff803a11c5cc8eb7c4878a702c403ec67f1",
"shasum": ""
},
"require": {
- "php": "^5.5.9|>=7.0.8",
- "symfony/dom-crawler": "~2.8|~3.0|~4.0"
+ "php": "^5.6 || ^7.0",
+ "psr/http-message": "^1.0"
},
- "require-dev": {
- "symfony/css-selector": "~2.8|~3.0|~4.0",
- "symfony/process": "~2.8|~3.0|~4.0"
+ "provide": {
+ "psr/http-message-implementation": "1.0"
},
- "suggest": {
- "symfony/process": ""
+ "require-dev": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "phpunit/phpunit": "^5.7.16 || ^6.0.8",
+ "zendframework/zend-coding-standard": "~1.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.4-dev"
+ "dev-master": "1.7.x-dev",
+ "dev-develop": "1.8.x-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\BrowserKit\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Zend\\Diactoros\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-2-Clause"
],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
+ "description": "PSR HTTP Message implementations",
+ "homepage": "https://github.com/zendframework/zend-diactoros",
+ "keywords": [
+ "http",
+ "psr",
+ "psr-7"
],
- "description": "Symfony BrowserKit Component",
- "homepage": "https://symfony.com",
- "time": "2018-01-03T07:37:34+00:00"
+ "time": "2018-02-26T15:44:50+00:00"
},
{
- "name": "symfony/css-selector",
- "version": "v3.2.14",
+ "name": "zendframework/zend-escaper",
+ "version": "2.5.2",
"source": {
"type": "git",
- "url": "https://github.com/symfony/css-selector.git",
- "reference": "02983c144038e697c959e6b06ef6666de759ccbc"
+ "url": "https://github.com/zendframework/zend-escaper.git",
+ "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/02983c144038e697c959e6b06ef6666de759ccbc",
- "reference": "02983c144038e697c959e6b06ef6666de759ccbc",
+ "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
+ "reference": "2dcd14b61a72d8b8e27d579c6344e12c26141d4e",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "php": ">=5.5"
+ },
+ "require-dev": {
+ "fabpot/php-cs-fixer": "1.7.*",
+ "phpunit/phpunit": "~4.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "2.5-dev",
+ "dev-develop": "2.6-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\CssSelector\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Zend\\Escaper\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
- "authors": [
- {
- "name": "Jean-François Simon",
- "email": "jeanfrancois.simon@sensiolabs.com"
- },
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
+ "homepage": "https://github.com/zendframework/zend-escaper",
+ "keywords": [
+ "escaper",
+ "zf2"
],
- "description": "Symfony CssSelector Component",
- "homepage": "https://symfony.com",
- "time": "2017-05-01T14:55:58+00:00"
+ "time": "2016-06-30T19:48:38+00:00"
},
{
- "name": "symfony/dom-crawler",
- "version": "v3.4.4",
+ "name": "zendframework/zend-feed",
+ "version": "2.9.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/dom-crawler.git",
- "reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a"
+ "url": "https://github.com/zendframework/zend-feed.git",
+ "reference": "abe88686124d492e0a2a84656f15e5482bfbe030"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/09bd97b844b3151fab82f2fdd62db9c464b3910a",
- "reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a",
+ "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/abe88686124d492e0a2a84656f15e5482bfbe030",
+ "reference": "abe88686124d492e0a2a84656f15e5482bfbe030",
"shasum": ""
},
"require": {
- "php": "^5.5.9|>=7.0.8",
- "symfony/polyfill-mbstring": "~1.0"
+ "php": "^5.6 || ^7.0",
+ "zendframework/zend-escaper": "^2.5.2",
+ "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
},
"require-dev": {
- "symfony/css-selector": "~2.8|~3.0|~4.0"
+ "phpunit/phpunit": "^5.7.23 || ^6.4.3",
+ "psr/http-message": "^1.0.1",
+ "zendframework/zend-cache": "^2.7.2",
+ "zendframework/zend-coding-standard": "~1.0.0",
+ "zendframework/zend-db": "^2.8.2",
+ "zendframework/zend-http": "^2.7",
+ "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
+ "zendframework/zend-validator": "^2.10.1"
},
"suggest": {
- "symfony/css-selector": ""
+ "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
+ "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
+ "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
+ "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
+ "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
+ "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.4-dev"
+ "dev-master": "2.9-dev",
+ "dev-develop": "2.10-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\DomCrawler\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Zend\\Feed\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
+ "description": "provides functionality for consuming RSS and Atom feeds",
+ "keywords": [
+ "ZendFramework",
+ "feed",
+ "zf"
],
- "description": "Symfony DomCrawler Component",
- "homepage": "https://symfony.com",
- "time": "2018-01-03T07:37:34+00:00"
+ "time": "2017-12-04T17:59:38+00:00"
},
{
- "name": "symfony/phpunit-bridge",
- "version": "v3.2.14",
+ "name": "zendframework/zend-stdlib",
+ "version": "3.1.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/phpunit-bridge.git",
- "reference": "9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f"
+ "url": "https://github.com/zendframework/zend-stdlib.git",
+ "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f",
- "reference": "9e5c470da4b1e3e9cd8e29fecbd7c91eb961d15f",
+ "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/debedcfc373a293f9250cc9aa03cf121428c8e78",
+ "reference": "debedcfc373a293f9250cc9aa03cf121428c8e78",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
- },
- "conflict": {
- "phpunit/phpunit": ">=6.0"
+ "php": "^5.6 || ^7.0"
},
- "suggest": {
- "ext-zip": "Zip support is required when using bin/simple-phpunit",
- "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
+ "require-dev": {
+ "athletic/athletic": "~0.1",
+ "phpunit/phpunit": "~4.0",
+ "squizlabs/php_codesniffer": "^2.6.2"
},
- "bin": [
- "bin/simple-phpunit"
- ],
- "type": "symfony-bridge",
+ "type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2-dev"
+ "dev-master": "3.1-dev",
+ "dev-develop": "3.2-dev"
}
},
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Bridge\\PhpUnit\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Zend\\Stdlib\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
+ "homepage": "https://github.com/zendframework/zend-stdlib",
+ "keywords": [
+ "stdlib",
+ "zf2"
],
- "description": "Symfony PHPUnit Bridge",
- "homepage": "https://symfony.com",
- "time": "2017-06-02T09:43:35+00:00"
+ "time": "2016-09-13T14:38:50+00:00"
}
],
+ "packages-dev": [],
"aliases": [],
"minimum-stability": "dev",
"stability-flags": {
+ "drupal/diff": 5,
+ "drupal/entity_embed": 10,
+ "drupal/flysystem_s3": 15,
"drupal/inline_entity_form": 10,
+ "drupal/masquerade": 10,
+ "drupal/rules": 15,
"drupal/time_formatter": 20,
- "behat/mink": 20
+ "drupal/tour_ui": 15
},
"prefer-stable": true,
"prefer-lowest": false,
"platform": {
- "php": ">=5.5.9"
+ "php": "^7.1.0"
},
"platform-dev": []
}
diff --git a/config/sync/.htaccess b/config/sync/.htaccess
deleted file mode 100644
index 1238c0d..0000000
--- a/config/sync/.htaccess
+++ /dev/null
@@ -1,23 +0,0 @@
-# Deny all requests from Apache 2.4+.
-
The requested URL "@path" was not found on this server.
'; + +/** + * Load services definition file. + */ +$settings['container_yamls'][] = $app_root . '/' . $site_path . '/services.yml'; + +/** + * Override the default service container class. + * + * This is useful for example to trace the service container for performance + * tracking purposes, for testing a service container with an error condition or + * to test a service container that throws an exception. + */ +# $settings['container_base_class'] = '\Drupal\Core\DependencyInjection\Container'; + +/** + * Override the default yaml parser class. + * + * Provide a fully qualified class name here if you would like to provide an + * alternate implementation YAML parser. The class must implement the + * \Drupal\Component\Serialization\SerializationInterface interface. + */ +# $settings['yaml_parser_class'] = NULL; + +/** + * Trusted host configuration. + * + * Drupal core can use the Symfony trusted host mechanism to prevent HTTP Host + * header spoofing. + * + * To enable the trusted host mechanism, you enable your allowable hosts + * in $settings['trusted_host_patterns']. This should be an array of regular + * expression patterns, without delimiters, representing the hosts you would + * like to allow. + * + * For example: + * @code + * $settings['trusted_host_patterns'] = array( + * '^www\.example\.com$', + * ); + * @endcode + * will allow the site to only run from www.example.com. + * + * If you are running multisite, or if you are running your site from + * different domain names (eg, you don't redirect http://www.example.com to + * http://example.com), you should specify all of the host patterns that are + * allowed by your site. + * + * For example: + * @code + * $settings['trusted_host_patterns'] = array( + * '^example\.com$', + * '^.+\.example\.com$', + * '^example\.org$', + * '^.+\.example\.org$', + * ); + * @endcode + * will allow the site to run off of all variants of example.com and + * example.org, with all subdomains included. + */ + +/** + * The default list of directories that will be ignored by Drupal's file API. + * + * By default ignore node_modules and bower_components folders to avoid issues + * with common frontend tools and recursive scanning of directories looking for + * extensions. + * + * @see file_scan_directory() + * @see \Drupal\Core\Extension\ExtensionDiscovery::scanDirectory() + */ +$settings['file_scan_ignore_directories'] = [ + 'node_modules', + 'bower_components', +]; + +/** + * The default number of entities to update in a batch process. + * + * This is used by update and post-update functions that need to go through and + * change all the entities on a site, so it is useful to increase this number + * if your hosting configuration (i.e. RAM allocation, CPU speed) allows for a + * larger number of entities to be processed in a single batch run. + */ +$settings['entity_update_batch_size'] = 50; + +/** + * Load local development override configuration, if available. + * + * Use settings.local.php to override variables on secondary (staging, + * development, etc) installations of this site. Typically used to disable + * caching, JavaScript/CSS compression, re-routing of outgoing emails, and + * other things that should not happen on development and testing sites. + * + * Keep this code block at the end of this file to take full effect. + */ +# +# if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) { +# include $app_root . '/' . $site_path . '/settings.local.php'; +# } diff --git a/web/sites/default/settings.cf.php b/web/sites/default/settings.cf.php new file mode 100644 index 0000000..aded671 --- /dev/null +++ b/web/sites/default/settings.cf.php @@ -0,0 +1,51 @@ + $service_list) { + foreach ($service_list as $service) { + if ($service['name'] === 'database') { + $databases['default']['default'] = array ( + 'database' => $service['credentials']['db_name'], + 'username' => $service['credentials']['username'], + 'password' => $service['credentials']['password'], + 'prefix' => '', + 'host' => $service['credentials']['host'], + 'port' => $service['credentials']['port'], + 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql', + 'driver' => 'mysql', + ); + } + if ($service['name'] === 'secrets') { + $settings['hash_salt'] = $service['credentials']['HASH_SALT']; + } + if ($service['name'] === 'storage') { + $settings['flysystem']['s3'] = array( + 'driver' => 's3', + 'config' => array( + 'key' => $service['credentials']['access_key_id'], + 'secret' => $service['credentials']['secret_access_key'], + 'region' => $service['credentials']['region'], + 'bucket' => $service['credentials']['bucket'], + // Optional configuration settings. + 'options' => array( + 'ACL' => 'public-read', + 'ServerSideEncryption' => 'AES256', + ), + 'protocol' => 'https', // Will be autodetected based on the current request. + 'prefix' => 'flysystem-s3', // Directory prefix for all uploaded/viewed files. + ), + 'cache' => TRUE, // Creates a metadata cache to speed up lookups. + ); + } + } +} + +// CSS and JS aggregation need per dyno/container cache. +// This is from https://www.fomfus.com/articles/how-to-create-a-drupal-8-project-for-heroku-part-1 +// included here without fully understanding implications: +$settings['cache']['bins']['data'] = 'cache.backend.php'; diff --git a/web/sites/default/settings.php b/web/sites/default/settings.php new file mode 100644 index 0000000..8bde4e3 --- /dev/null +++ b/web/sites/default/settings.php @@ -0,0 +1,790 @@ + 'databasename', + * 'username' => 'sqlusername', + * 'password' => 'sqlpassword', + * 'host' => 'localhost', + * 'port' => '3306', + * 'driver' => 'mysql', + * 'prefix' => '', + * 'collation' => 'utf8mb4_general_ci', + * ); + * @endcode + */ +$databases = array(); + +/** + * Customizing database settings. + * + * Many of the values of the $databases array can be customized for your + * particular database system. Refer to the sample in the section above as a + * starting point. + * + * The "driver" property indicates what Drupal database driver the + * connection should use. This is usually the same as the name of the + * database type, such as mysql or sqlite, but not always. The other + * properties will vary depending on the driver. For SQLite, you must + * specify a database file name in a directory that is writable by the + * webserver. For most other drivers, you must specify a + * username, password, host, and database name. + * + * Transaction support is enabled by default for all drivers that support it, + * including MySQL. To explicitly disable it, set the 'transactions' key to + * FALSE. + * Note that some configurations of MySQL, such as the MyISAM engine, don't + * support it and will proceed silently even if enabled. If you experience + * transaction related crashes with such configuration, set the 'transactions' + * key to FALSE. + * + * For each database, you may optionally specify multiple "target" databases. + * A target database allows Drupal to try to send certain queries to a + * different database if it can but fall back to the default connection if not. + * That is useful for primary/replica replication, as Drupal may try to connect + * to a replica server when appropriate and if one is not available will simply + * fall back to the single primary server (The terms primary/replica are + * traditionally referred to as master/slave in database server documentation). + * + * The general format for the $databases array is as follows: + * @code + * $databases['default']['default'] = $info_array; + * $databases['default']['replica'][] = $info_array; + * $databases['default']['replica'][] = $info_array; + * $databases['extra']['default'] = $info_array; + * @endcode + * + * In the above example, $info_array is an array of settings described above. + * The first line sets a "default" database that has one primary database + * (the second level default). The second and third lines create an array + * of potential replica databases. Drupal will select one at random for a given + * request as needed. The fourth line creates a new database with a name of + * "extra". + * + * You can optionally set prefixes for some or all database table names + * by using the 'prefix' setting. If a prefix is specified, the table + * name will be prepended with its value. Be sure to use valid database + * characters only, usually alphanumeric and underscore. If no prefixes + * are desired, leave it as an empty string ''. + * + * To have all database names prefixed, set 'prefix' as a string: + * @code + * 'prefix' => 'main_', + * @endcode + * + * Per-table prefixes are deprecated as of Drupal 8.2, and will be removed in + * Drupal 9.0. After that, only a single prefix for all tables will be + * supported. + * + * To provide prefixes for specific tables, set 'prefix' as an array. + * The array's keys are the table names and the values are the prefixes. + * The 'default' element is mandatory and holds the prefix for any tables + * not specified elsewhere in the array. Example: + * @code + * 'prefix' => array( + * 'default' => 'main_', + * 'users' => 'shared_', + * 'sessions' => 'shared_', + * 'role' => 'shared_', + * 'authmap' => 'shared_', + * ), + * @endcode + * You can also use a reference to a schema/database as a prefix. This may be + * useful if your Drupal installation exists in a schema that is not the default + * or you want to access several databases from the same code base at the same + * time. + * Example: + * @code + * 'prefix' => array( + * 'default' => 'main.', + * 'users' => 'shared.', + * 'sessions' => 'shared.', + * 'role' => 'shared.', + * 'authmap' => 'shared.', + * ); + * @endcode + * NOTE: MySQL and SQLite's definition of a schema is a database. + * + * Advanced users can add or override initial commands to execute when + * connecting to the database server, as well as PDO connection settings. For + * example, to enable MySQL SELECT queries to exceed the max_join_size system + * variable, and to reduce the database connection timeout to 5 seconds: + * @code + * $databases['default']['default'] = array( + * 'init_commands' => array( + * 'big_selects' => 'SET SQL_BIG_SELECTS=1', + * ), + * 'pdo' => array( + * PDO::ATTR_TIMEOUT => 5, + * ), + * ); + * @endcode + * + * WARNING: The above defaults are designed for database portability. Changing + * them may cause unexpected behavior, including potential data loss. See + * https://www.drupal.org/developing/api/database/configuration for more + * information on these defaults and the potential issues. + * + * More details can be found in the constructor methods for each driver: + * - \Drupal\Core\Database\Driver\mysql\Connection::__construct() + * - \Drupal\Core\Database\Driver\pgsql\Connection::__construct() + * - \Drupal\Core\Database\Driver\sqlite\Connection::__construct() + * + * Sample Database configuration format for PostgreSQL (pgsql): + * @code + * $databases['default']['default'] = array( + * 'driver' => 'pgsql', + * 'database' => 'databasename', + * 'username' => 'sqlusername', + * 'password' => 'sqlpassword', + * 'host' => 'localhost', + * 'prefix' => '', + * ); + * @endcode + * + * Sample Database configuration format for SQLite (sqlite): + * @code + * $databases['default']['default'] = array( + * 'driver' => 'sqlite', + * 'database' => '/path/to/databasefilename', + * ); + * @endcode + */ + +/** + * Location of the site configuration files. + * + * The $config_directories array specifies the location of file system + * directories used for configuration data. On install, the "sync" directory is + * created. This is used for configuration imports. The "active" directory is + * not created by default since the default storage for active configuration is + * the database rather than the file system. (This can be changed. See "Active + * configuration settings" below). + * + * The default location for the "sync" directory is inside a randomly-named + * directory in the public files path. The setting below allows you to override + * the "sync" location. + * + * If you use files for the "active" configuration, you can tell the + * Configuration system where this directory is located by adding an entry with + * array key CONFIG_ACTIVE_DIRECTORY. + * + * Example: + * @code + * $config_directories = array( + * CONFIG_SYNC_DIRECTORY => '/directory/outside/webroot', + * ); + * @endcode + */ +$config_directories = array(); + +/** + * Settings: + * + * $settings contains environment-specific configuration, such as the files + * directory and reverse proxy address, and temporary configuration, such as + * security overrides. + * + * @see \Drupal\Core\Site\Settings::get() + */ + +/** + * The active installation profile. + * + * Changing this after installation is not recommended as it changes which + * directories are scanned during extension discovery. If this is set prior to + * installation this value will be rewritten according to the profile selected + * by the user. + * + * @see install_select_profile() + * + * @deprecated in Drupal 8.3.0 and will be removed before Drupal 9.0.0. The + * install profile is written to the core.extension configuration. If a + * service requires the install profile use the 'install_profile' container + * parameter. Functional code can use \Drupal::installProfile(). + */ +# $settings['install_profile'] = ''; + +/** + * Salt for one-time login links, cancel links, form tokens, etc. + * + * This variable will be set to a random value by the installer. All one-time + * login links will be invalidated if the value is changed. Note that if your + * site is deployed on a cluster of web servers, you must ensure that this + * variable has the same value on each server. + * + * For enhanced security, you may set this variable to the contents of a file + * outside your document root; you should also ensure that this file is not + * stored with backups of your database. + * + * Example: + * @code + * $settings['hash_salt'] = file_get_contents('/home/example/salt.txt'); + * @endcode + */ +$settings['hash_salt'] = 'sA51ewzJYcoqJ2YPKNHVvjD43fCZAgJfcEuilLEBpfHKHgy2ZACgSfccbW_cRgH9orAVtjioZg'; + +/** + * Deployment identifier. + * + * Drupal's dependency injection container will be automatically invalidated and + * rebuilt when the Drupal core version changes. When updating contributed or + * custom code that changes the container, changing this identifier will also + * allow the container to be invalidated as soon as code is deployed. + */ +# $settings['deployment_identifier'] = \Drupal::VERSION; + +/** + * Access control for update.php script. + * + * If you are updating your Drupal installation using the update.php script but + * are not logged in using either an account with the "Administer software + * updates" permission or the site maintenance account (the account that was + * created during installation), you will need to modify the access check + * statement below. Change the FALSE to a TRUE to disable the access check. + * After finishing the upgrade, be sure to open this file again and change the + * TRUE back to a FALSE! + */ +$settings['update_free_access'] = FALSE; + +/** + * External access proxy settings: + * + * If your site must access the Internet via a web proxy then you can enter the + * proxy settings here. Set the full URL of the proxy, including the port, in + * variables: + * - $settings['http_client_config']['proxy']['http']: The proxy URL for HTTP + * requests. + * - $settings['http_client_config']['proxy']['https']: The proxy URL for HTTPS + * requests. + * You can pass in the user name and password for basic authentication in the + * URLs in these settings. + * + * You can also define an array of host names that can be accessed directly, + * bypassing the proxy, in $settings['http_client_config']['proxy']['no']. + */ +# $settings['http_client_config']['proxy']['http'] = 'http://proxy_user:proxy_pass@example.com:8080'; +# $settings['http_client_config']['proxy']['https'] = 'http://proxy_user:proxy_pass@example.com:8080'; +# $settings['http_client_config']['proxy']['no'] = ['127.0.0.1', 'localhost']; + +/** + * Reverse Proxy Configuration: + * + * Reverse proxy servers are often used to enhance the performance + * of heavily visited sites and may also provide other site caching, + * security, or encryption benefits. In an environment where Drupal + * is behind a reverse proxy, the real IP address of the client should + * be determined such that the correct client IP address is available + * to Drupal's logging, statistics, and access management systems. In + * the most simple scenario, the proxy server will add an + * X-Forwarded-For header to the request that contains the client IP + * address. However, HTTP headers are vulnerable to spoofing, where a + * malicious client could bypass restrictions by setting the + * X-Forwarded-For header directly. Therefore, Drupal's proxy + * configuration requires the IP addresses of all remote proxies to be + * specified in $settings['reverse_proxy_addresses'] to work correctly. + * + * Enable this setting to get Drupal to determine the client IP from + * the X-Forwarded-For header (or $settings['reverse_proxy_header'] if set). + * If you are unsure about this setting, do not have a reverse proxy, + * or Drupal operates in a shared hosting environment, this setting + * should remain commented out. + * + * In order for this setting to be used you must specify every possible + * reverse proxy IP address in $settings['reverse_proxy_addresses']. + * If a complete list of reverse proxies is not available in your + * environment (for example, if you use a CDN) you may set the + * $_SERVER['REMOTE_ADDR'] variable directly in settings.php. + * Be aware, however, that it is likely that this would allow IP + * address spoofing unless more advanced precautions are taken. + */ +# $settings['reverse_proxy'] = TRUE; + +/** + * Specify every reverse proxy IP address in your environment. + * This setting is required if $settings['reverse_proxy'] is TRUE. + */ +# $settings['reverse_proxy_addresses'] = array('a.b.c.d', ...); + +/** + * Set this value if your proxy server sends the client IP in a header + * other than X-Forwarded-For. + */ +# $settings['reverse_proxy_header'] = 'X_CLUSTER_CLIENT_IP'; + +/** + * Set this value if your proxy server sends the client protocol in a header + * other than X-Forwarded-Proto. + */ +# $settings['reverse_proxy_proto_header'] = 'X_FORWARDED_PROTO'; + +/** + * Set this value if your proxy server sends the client protocol in a header + * other than X-Forwarded-Host. + */ +# $settings['reverse_proxy_host_header'] = 'X_FORWARDED_HOST'; + +/** + * Set this value if your proxy server sends the client protocol in a header + * other than X-Forwarded-Port. + */ +# $settings['reverse_proxy_port_header'] = 'X_FORWARDED_PORT'; + +/** + * Set this value if your proxy server sends the client protocol in a header + * other than Forwarded. + */ +# $settings['reverse_proxy_forwarded_header'] = 'FORWARDED'; + +/** + * Page caching: + * + * By default, Drupal sends a "Vary: Cookie" HTTP header for anonymous page + * views. This tells a HTTP proxy that it may return a page from its local + * cache without contacting the web server, if the user sends the same Cookie + * header as the user who originally requested the cached page. Without "Vary: + * Cookie", authenticated users would also be served the anonymous page from + * the cache. If the site has mostly anonymous users except a few known + * editors/administrators, the Vary header can be omitted. This allows for + * better caching in HTTP proxies (including reverse proxies), i.e. even if + * clients send different cookies, they still get content served from the cache. + * However, authenticated users should access the site directly (i.e. not use an + * HTTP proxy, and bypass the reverse proxy if one is used) in order to avoid + * getting cached pages from the proxy. + */ +# $settings['omit_vary_cookie'] = TRUE; + + +/** + * Cache TTL for client error (4xx) responses. + * + * Items cached per-URL tend to result in a large number of cache items, and + * this can be problematic on 404 pages which by their nature are unbounded. A + * fixed TTL can be set for these items, defaulting to one hour, so that cache + * backends which do not support LRU can purge older entries. To disable caching + * of client error responses set the value to 0. Currently applies only to + * page_cache module. + */ +# $settings['cache_ttl_4xx'] = 3600; + +/** + * Expiration of cached forms. + * + * Drupal's Form API stores details of forms in a cache and these entries are + * kept for at least 6 hours by default. Expired entries are cleared by cron. + * + * @see \Drupal\Core\Form\FormCache::setCache() + */ +# $settings['form_cache_expiration'] = 21600; + +/** + * Class Loader. + * + * If the APC extension is detected, the Symfony APC class loader is used for + * performance reasons. Detection can be prevented by setting + * class_loader_auto_detect to false, as in the example below. + */ +# $settings['class_loader_auto_detect'] = FALSE; + +/* + * If the APC extension is not detected, either because APC is missing or + * because auto-detection has been disabled, auto-loading falls back to + * Composer's ClassLoader, which is good for development as it does not break + * when code is moved in the file system. You can also decorate the base class + * loader with another cached solution than the Symfony APC class loader, as + * all production sites should have a cached class loader of some sort enabled. + * + * To do so, you may decorate and replace the local $class_loader variable. For + * example, to use Symfony's APC class loader without automatic detection, + * uncomment the code below. + */ +/* +if ($settings['hash_salt']) { + $prefix = 'drupal.' . hash('sha256', 'drupal.' . $settings['hash_salt']); + $apc_loader = new \Symfony\Component\ClassLoader\ApcClassLoader($prefix, $class_loader); + unset($prefix); + $class_loader->unregister(); + $apc_loader->register(); + $class_loader = $apc_loader; +} +*/ + +/** + * Authorized file system operations: + * + * The Update Manager module included with Drupal provides a mechanism for + * site administrators to securely install missing updates for the site + * directly through the web user interface. On securely-configured servers, + * the Update manager will require the administrator to provide SSH or FTP + * credentials before allowing the installation to proceed; this allows the + * site to update the new files as the user who owns all the Drupal files, + * instead of as the user the webserver is running as. On servers where the + * webserver user is itself the owner of the Drupal files, the administrator + * will not be prompted for SSH or FTP credentials (note that these server + * setups are common on shared hosting, but are inherently insecure). + * + * Some sites might wish to disable the above functionality, and only update + * the code directly via SSH or FTP themselves. This setting completely + * disables all functionality related to these authorized file operations. + * + * @see https://www.drupal.org/node/244924 + * + * Remove the leading hash signs to disable. + */ +# $settings['allow_authorize_operations'] = FALSE; + +/** + * Default mode for directories and files written by Drupal. + * + * Value should be in PHP Octal Notation, with leading zero. + */ +# $settings['file_chmod_directory'] = 0775; +# $settings['file_chmod_file'] = 0664; + +/** + * Public file base URL: + * + * An alternative base URL to be used for serving public files. This must + * include any leading directory path. + * + * A different value from the domain used by Drupal to be used for accessing + * public files. This can be used for a simple CDN integration, or to improve + * security by serving user-uploaded files from a different domain or subdomain + * pointing to the same server. Do not include a trailing slash. + */ +# $settings['file_public_base_url'] = 'http://downloads.example.com/files'; + +/** + * Public file path: + * + * A local file system path where public files will be stored. This directory + * must exist and be writable by Drupal. This directory must be relative to + * the Drupal installation directory and be accessible over the web. + */ +# $settings['file_public_path'] = 'sites/default/files'; + +/** + * Private file path: + * + * A local file system path where private files will be stored. This directory + * must be absolute, outside of the Drupal installation directory and not + * accessible over the web. + * + * Note: Caches need to be cleared when this value is changed to make the + * private:// stream wrapper available to the system. + * + * See https://www.drupal.org/documentation/modules/file for more information + * about securing private files. + */ +# $settings['file_private_path'] = ''; + +/** + * Session write interval: + * + * Set the minimum interval between each session write to database. + * For performance reasons it defaults to 180. + */ +# $settings['session_write_interval'] = 180; + +/** + * String overrides: + * + * To override specific strings on your site with or without enabling the Locale + * module, add an entry to this list. This functionality allows you to change + * a small number of your site's default English language interface strings. + * + * Remove the leading hash signs to enable. + * + * The "en" part of the variable name, is dynamic and can be any langcode of + * any added language. (eg locale_custom_strings_de for german). + */ +# $settings['locale_custom_strings_en'][''] = array( +# 'forum' => 'Discussion board', +# '@count min' => '@count minutes', +# ); + +/** + * A custom theme for the offline page: + * + * This applies when the site is explicitly set to maintenance mode through the + * administration page or when the database is inactive due to an error. + * The template file should also be copied into the theme. It is located inside + * 'core/modules/system/templates/maintenance-page.html.twig'. + * + * Note: This setting does not apply to installation and update pages. + */ +# $settings['maintenance_theme'] = 'bartik'; + +/** + * PHP settings: + * + * To see what PHP settings are possible, including whether they can be set at + * runtime (by using ini_set()), read the PHP documentation: + * http://php.net/manual/ini.list.php + * See \Drupal\Core\DrupalKernel::bootEnvironment() for required runtime + * settings and the .htaccess file for non-runtime settings. + * Settings defined there should not be duplicated here so as to avoid conflict + * issues. + */ + +/** + * If you encounter a situation where users post a large amount of text, and + * the result is stripped out upon viewing but can still be edited, Drupal's + * output filter may not have sufficient memory to process it. If you + * experience this issue, you may wish to uncomment the following two lines + * and increase the limits of these variables. For more information, see + * http://php.net/manual/pcre.configuration.php. + */ +# ini_set('pcre.backtrack_limit', 200000); +# ini_set('pcre.recursion_limit', 200000); + +/** + * Active configuration settings. + * + * By default, the active configuration is stored in the database in the + * {config} table. To use a different storage mechanism for the active + * configuration, do the following prior to installing: + * - Create an "active" directory and declare its path in $config_directories + * as explained under the 'Location of the site configuration files' section + * above in this file. To enhance security, you can declare a path that is + * outside your document root. + * - Override the 'bootstrap_config_storage' setting here. It must be set to a + * callable that returns an object that implements + * \Drupal\Core\Config\StorageInterface. + * - Override the service definition 'config.storage.active'. Put this + * override in a services.yml file in the same directory as settings.php + * (definitions in this file will override service definition defaults). + */ +# $settings['bootstrap_config_storage'] = array('Drupal\Core\Config\BootstrapConfigStorageFactory', 'getFileStorage'); + +/** + * Configuration overrides. + * + * To globally override specific configuration values for this site, + * set them here. You usually don't need to use this feature. This is + * useful in a configuration file for a vhost or directory, rather than + * the default settings.php. + * + * Note that any values you provide in these variable overrides will not be + * viewable from the Drupal administration interface. The administration + * interface displays the values stored in configuration so that you can stage + * changes to other environments that don't have the overrides. + * + * There are particular configuration values that are risky to override. For + * example, overriding the list of installed modules in 'core.extension' is not + * supported as module install or uninstall has not occurred. Other examples + * include field storage configuration, because it has effects on database + * structure, and 'core.menu.static_menu_link_overrides' since this is cached in + * a way that is not config override aware. Also, note that changing + * configuration values in settings.php will not fire any of the configuration + * change events. + */ +# $config['system.file']['path']['temporary'] = '/tmp'; +# $config['system.site']['name'] = 'My Drupal site'; +# $config['system.theme']['default'] = 'stark'; +# $config['user.settings']['anonymous'] = 'Visitor'; + +/** + * Fast 404 pages: + * + * Drupal can generate fully themed 404 pages. However, some of these responses + * are for images or other resource files that are not displayed to the user. + * This can waste bandwidth, and also generate server load. + * + * The options below return a simple, fast 404 page for URLs matching a + * specific pattern: + * - $config['system.performance']['fast_404']['exclude_paths']: A regular + * expression to match paths to exclude, such as images generated by image + * styles, or dynamically-resized images. The default pattern provided below + * also excludes the private file system. If you need to add more paths, you + * can add '|path' to the expression. + * - $config['system.performance']['fast_404']['paths']: A regular expression to + * match paths that should return a simple 404 page, rather than the fully + * themed 404 page. If you don't have any aliases ending in htm or html you + * can add '|s?html?' to the expression. + * - $config['system.performance']['fast_404']['html']: The html to return for + * simple 404 pages. + * + * Remove the leading hash signs if you would like to alter this functionality. + */ +# $config['system.performance']['fast_404']['exclude_paths'] = '/\/(?:styles)|(?:system\/files)\//'; +# $config['system.performance']['fast_404']['paths'] = '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'; +# $config['system.performance']['fast_404']['html'] = 'The requested URL "@path" was not found on this server.
'; + +/** + * Load services definition file. + */ +$settings['container_yamls'][] = $app_root . '/' . $site_path . '/services.yml'; + +/** + * Override the default service container class. + * + * This is useful for example to trace the service container for performance + * tracking purposes, for testing a service container with an error condition or + * to test a service container that throws an exception. + */ +# $settings['container_base_class'] = '\Drupal\Core\DependencyInjection\Container'; + +/** + * Override the default yaml parser class. + * + * Provide a fully qualified class name here if you would like to provide an + * alternate implementation YAML parser. The class must implement the + * \Drupal\Component\Serialization\SerializationInterface interface. + */ +# $settings['yaml_parser_class'] = NULL; + +/** + * Trusted host configuration. + * + * Drupal core can use the Symfony trusted host mechanism to prevent HTTP Host + * header spoofing. + * + * To enable the trusted host mechanism, you enable your allowable hosts + * in $settings['trusted_host_patterns']. This should be an array of regular + * expression patterns, without delimiters, representing the hosts you would + * like to allow. + * + * For example: + * @code + * $settings['trusted_host_patterns'] = array( + * '^www\.example\.com$', + * ); + * @endcode + * will allow the site to only run from www.example.com. + * + * If you are running multisite, or if you are running your site from + * different domain names (eg, you don't redirect http://www.example.com to + * http://example.com), you should specify all of the host patterns that are + * allowed by your site. + * + * For example: + * @code + * $settings['trusted_host_patterns'] = array( + * '^example\.com$', + * '^.+\.example\.com$', + * '^example\.org$', + * '^.+\.example\.org$', + * ); + * @endcode + * will allow the site to run off of all variants of example.com and + * example.org, with all subdomains included. + */ + +/** + * The default list of directories that will be ignored by Drupal's file API. + * + * By default ignore node_modules and bower_components folders to avoid issues + * with common frontend tools and recursive scanning of directories looking for + * extensions. + * + * @see file_scan_directory() + * @see \Drupal\Core\Extension\ExtensionDiscovery::scanDirectory() + */ +$settings['file_scan_ignore_directories'] = [ + 'node_modules', + 'bower_components', +]; + +/** + * The default number of entities to update in a batch process. + * + * This is used by update and post-update functions that need to go through and + * change all the entities on a site, so it is useful to increase this number + * if your hosting configuration (i.e. RAM allocation, CPU speed) allows for a + * larger number of entities to be processed in a single batch run. + */ +$settings['entity_update_batch_size'] = 50; + +$config_directories['sync'] = '../config/sync'; +$settings['install_profile'] = 'standard'; +include $app_root . '/' . $site_path . '/settings.cf.php'; + +/** + * Load local development override configuration, if available. + * + * Use settings.local.php to override variables on secondary (staging, + * development, etc) installations of this site. Typically used to disable + * caching, JavaScript/CSS compression, re-routing of outgoing emails, and + * other things that should not happen on development and testing sites. + * + * Keep this code block at the end of this file to take full effect. + */ +if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) { + include $app_root . '/' . $site_path . '/settings.local.php'; +}