diff --git a/.circleci/config.yml b/.circleci/config.yml index 26bf3d509..0c9a8985b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -68,9 +68,10 @@ commands: - run: name: Switch dof-dss packages to HEAD on development branch command: | - composer require dof-dss/nicsdru_unity_theme:dev-development \ - dof-dss/nicsdru_origins_modules:dev-development \ - dof-dss/nicsdru_unity_modules:dev-development + composer require dof-dss/nicsdru_unity_theme:dev-10.x-dev \ + dof-dss/nicsdru_origins_modules:dev-10.x-dev \ + dof-dss/nicsdru_unity_modules:dev-10.x-dev \ + dof-dss/nicsdru_unity_profile:dev-10.x-dev install_psh_cli: description: "Install the Platform.sh CLI tool" steps: @@ -168,6 +169,7 @@ jobs: GIT_AUTHOR_NAME: "Circle CI" EDGE_BUILD_BRANCH: "edge" PLATFORM_REGION: "uk-1.platform.sh" + CPPFLAGS: "-DPNG_ARM_NEON_OPT=0" steps: - hosts_keyscan - checkout_code @@ -202,26 +204,15 @@ jobs: export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion - nvm install v15.14.0 - for site in `ls -l ~/project/project/sites | grep ^d | awk '{print $9}'` - do - if [[ -d ~/project/project/sites/${site}/themes/${site}_theme ]]; then - echo "*** Building theme for ${site} ***" - cd ~/project/project/sites/${site}/themes/${site}_theme - sed -i -e "s/\"nicsdru_unity_theme.*/\"nicsdru_unity_theme\": \"github:dof-dss\/nicsdru_unity_theme#development\",/" package.json - npm install - npm rebuild node-sass - npm run build - - git add *.css - git commit -m "Theme rebuild" - else - echo "No theme folder detected under ~/project/project/sites/${site}/themes/${site}_theme, skipping." - fi - done + nvm install v14.21.3 + cd $PROJECT_ROOT + ./build-themes.sh --sites-dir $PROJECT_ROOT/project/sites # Push to fixed, non-integrating build branch. GitHub webhook integration will propagate this # to platform.sh for later steps to use. + cd $PROJECT_ROOT + git add *.css + git commit -m "Theme rebuild" git push -f origin $EDGE_BUILD_BRANCH # Separate task to allow us to sync data on PSH environments, without pauses in other jobs. @@ -259,7 +250,7 @@ jobs: do result=$(platform drush "st -l ${site}" -y -p $PLATFORM_PROJECT -e $EDGE_BUILD_BRANCH | (grep "Drupal bootstrap : Successful" || true) ) if [[ -n $result ]]; then - result2=$(platform drush "pml -l ${site}" -p $PLATFORM_PROJECT -e $EDGE_BUILD_BRANCH | (grep "Fastly (fastly)" || true) ) + result2=$(platform drush "pml --status=enabled -l ${site}" -p $PLATFORM_PROJECT -e $EDGE_BUILD_BRANCH | (grep "Fastly (fastly)" || true) ) if [[ -n $result2 ]]; then echo "***** Uninstall Fastly - ${site} *****" platform drush "pmu fastly -l ${site}" -y -p $PLATFORM_PROJECT -e $EDGE_BUILD_BRANCH @@ -342,9 +333,9 @@ workflows: - deprecated_code: requires: - build - - check_illegal_updates: - requires: - - build + #- check_illegal_updates: + # requires: + # - build # A nightly build of the project, using all dof-dss packages at HEAD from development branch. nightly-edge-build: diff --git a/.lando.base.yml b/.lando.base.yml new file mode 100644 index 000000000..e9e92cd24 --- /dev/null +++ b/.lando.base.yml @@ -0,0 +1,175 @@ +name: unity_base +recipe: drupal9 +config: + webroot: web + database: mariadb + php: '8.1' + composer_version: '2.5.8' + config: + php: .lando/config/php.ini + database: .lando/config/my.cnf +compose: + - docker-compose.yml +env_file: + - .env +services: + appserver: + scanner: false + overrides: + environment: + CPPFLAGS: "-DPNG_ARM_NEON_OPT=0" + xdebug: debug + build_as_root: + - /app/.lando/scripts/appserver_build.sh + database: + build_as_root: + - "sh /app/.lando/scripts/create_databases.sh" + redis: + type: redis:5.0 + persist: true + config: + server: .lando/config/redis.conf + mailhog: + type: mailhog + portforward: true + hogfrom: + - appserver +tooling: + drupal: + cmd: "/app/vendor/bin/drupal --root=/app/web" + xdebug-on: + service: appserver + description: Enable xdebug + cmd: "docker-php-ext-enable xdebug && /etc/init.d/apache2 reload" + user: root + xdebug-off: + service: appserver + description: Disable xdebug + cmd: "rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini && /etc/init.d/apache2 reload" + user: root + npm: + service: appserver + cmd: /usr/bin/npm + yarn: + service: appserver + cmd: yarn + 'nightwatch [site] [test]': + service: appserver + description: "Run Nightwatch.js functional tests.\n\n + Usage:\n + > Run a specific test with tag\n + lando nightwatch --tag your-tag\n + > Run a single test suite file, relative to Drupal core location\n + lando nightwatch ../modules/custom/modulename/tests/src/Nightwatch/Tests/yourTestSuite.js\n + > Run all tests except Core\n + lando nightwatch --skiptags core\n" + cmd: "sh /app/.lando/scripts/run_nightwatch.sh" + options: + site: + passthrough: true + description: Multisite to run tests on + alias: + - s + interactive: + type: input + message: Which Unity site (e.g. uregni) ? + weight: 1 + test: + passthrough: true + phpunit: + description: "Run PHPUnit tests. You can pass options, e.g. --group=unity, as you require" + service: appserver + cmd: cd /app/web/core && /app/vendor/bin/phpunit -c /app/web/core/phpunit.xml + phpcs: + description: Run PHPCS checks against all custom Drupal 8 code + service: appserver + cmd: /app/phpcs.sh "/app" "/app/web/sites /app/web/modules/origins /app/web/modules/custom /app/web/themes/custom /app/web/profiles/unity" + drck: + description: Run drupal-check for Drupal 9 compatibility e.g. 'lando drck ./' + service: appserver + cmd: /app/vendor/bin/drupal-check + drush: + server: appserver + cmd: drush -r /app/web + 'db-export [file]': disabled + 'db-import ': disabled + 'db-export [name]': + service: database + description: Exports database to a file. To export all databases, don't provide the name' + cmd: "sh /app/.lando/scripts/export_database.sh" + user: root + options: + name: + description: Database to export + alias: + - n + 'db-import [database] [file]': + service: database + description: Import file to database + cmd: "sh /app/.lando/scripts/import_database.sh" + user: root + options: + database: + passthrough: true + description: Database to import to + alias: + - d + interactive: + type: input + message: Which database to import to? + weight: 1 + file: + passthrough: true + description: File to import + alias: + - f + interactive: + type: input + message: Which file to import? + weight: 2 + 'db-create [name]': + service: database + description: Create a new database + cmd: "sh /app/.lando/scripts/create_database.sh" + user: root + options: + name: + passthrough: true + description: Name of the database to create + alias: + - n + interactive: + type: input + message: What do you want to call this database? + weight: 1 + 'db-delete [name]': + service: database + description: Delete a database + cmd: "sh /app/.lando/scripts/delete_database.sh" + user: root + options: + name: + passthrough: true + description: Name of the database to delete + alias: + - n + interactive: + type: input + message: Which database do you want to delete? + weight: 1 + db-list: + service: database + description: List all databases + cmd: mysql -uroot -e "SHOW DATABASES;" + user: root + rebuild-unity-site-themes: + service: appserver + description: "Re-builds the Unity themes for each sites. Examples:\n\n + > Rebuild all site themes\n + lando rebuild-unity-site-themes\n + > Rebuild single site theme\n + lando rebuild-unity-site-themes --site-names octf\n + > Rebuild site themes specified - comma separated\n + lando rebuild-unity-site-themes --site-names octf,pbni" + cmd: "/app/build-themes.sh" + diff --git a/.lando/config/my.cnf b/.lando/config/my.cnf new file mode 100644 index 000000000..65455a504 --- /dev/null +++ b/.lando/config/my.cnf @@ -0,0 +1,4 @@ +[mysqld] +max_allowed_packet=32M +innodb_locks_unsafe_for_binlog = 1 +transaction-isolation=REPEATABLE-READ diff --git a/.lando/config/php.ini b/.lando/config/php.ini new file mode 100644 index 000000000..80b9d30ee --- /dev/null +++ b/.lando/config/php.ini @@ -0,0 +1,45 @@ +[PHP] + +;;;;;;;;;;;;;;; +; PHP Globals ; +;;;;;;;;;;;;;;; + +short_open_tag = Off +output_buffering = 4096 +allow_call_time_pass_reference = Off +request_order = "GP" +register_long_arrays = Off +register_argc_argv = Off +magic_quotes_gpc = Off +enable_dl = Off +allow_url_fopen = On +realpath_cache_size = "800K" +realpath_cache_ttl = "86400" +disable_functions = +sendmail_path=/bin/true + +[Date] +date.timezone = "UTC" + +;;;;;;;;;;;;;;;;;;;;;; +;; PACKAGE SETTINGS ;; +;;;;;;;;;;;;;;;;;;;;;; + +; Xdebug +xdebug.start_with_request=yes +xdebug.max_nesting_level = 512 +xdebug.client_host="${LANDO_HOST_IP}" + +; Globals +expose_php = on +max_execution_time = 180 +max_input_time = 900 +max_input_vars = 10000 +memory_limit = -1 +upload_max_filesize = 100M +post_max_size = 200M +error_reporting = E_ALL & ~E_DEPRECATED +ignore_repeated_errors = on +html_errors = off +display_errors = on +log_errors = on diff --git a/.lando/config/redis.conf b/.lando/config/redis.conf new file mode 100644 index 000000000..843107c40 --- /dev/null +++ b/.lando/config/redis.conf @@ -0,0 +1,3 @@ +databases 17 +maxmemory 64mb +maxmemory-policy volatile-lru \ No newline at end of file diff --git a/.lando/config/solr/7.x/default/accents_en.txt b/.lando/config/solr/7.x/default/accents_en.txt new file mode 100755 index 000000000..bed051477 --- /dev/null +++ b/.lando/config/solr/7.x/default/accents_en.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Ą => A +"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ę => E +"\u0118" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ł => L +"\u0141" => "L" +# Ñ => N +"\u00D1" => "N" +# Ń => N +"\u0143" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# Ś => S +"\u015a" => "S" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# Ź => Z +"\u0179" => "Z" +# Ż => Z +"\u017b" => "Z" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/.lando/config/solr/7.x/default/accents_und.txt b/.lando/config/solr/7.x/default/accents_und.txt new file mode 100755 index 000000000..7c883f87a --- /dev/null +++ b/.lando/config/solr/7.x/default/accents_und.txt @@ -0,0 +1,148 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ñ => N +"\u00D1" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/.lando/config/solr/7.x/default/elevate.xml b/.lando/config/solr/7.x/default/elevate.xml new file mode 100755 index 000000000..193a0e727 --- /dev/null +++ b/.lando/config/solr/7.x/default/elevate.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/.lando/config/solr/7.x/default/protwords_en.txt b/.lando/config/solr/7.x/default/protwords_en.txt new file mode 100755 index 000000000..8b1378917 --- /dev/null +++ b/.lando/config/solr/7.x/default/protwords_en.txt @@ -0,0 +1 @@ + diff --git a/.lando/config/solr/7.x/default/protwords_und.txt b/.lando/config/solr/7.x/default/protwords_und.txt new file mode 100755 index 000000000..8b1378917 --- /dev/null +++ b/.lando/config/solr/7.x/default/protwords_und.txt @@ -0,0 +1 @@ + diff --git a/.lando/config/solr/7.x/default/schema.xml b/.lando/config/solr/7.x/default/schema.xml new file mode 100644 index 000000000..80567fa8a --- /dev/null +++ b/.lando/config/solr/7.x/default/schema.xml @@ -0,0 +1,478 @@ + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &extrafields; + + + &extratypes; + + + id + + + + + diff --git a/.lando/config/solr/7.x/default/schema_extra_fields.xml b/.lando/config/solr/7.x/default/schema_extra_fields.xml new file mode 100755 index 000000000..f5d74188a --- /dev/null +++ b/.lando/config/solr/7.x/default/schema_extra_fields.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.lando/config/solr/7.x/default/schema_extra_types.xml b/.lando/config/solr/7.x/default/schema_extra_types.xml new file mode 100755 index 000000000..46a81379b --- /dev/null +++ b/.lando/config/solr/7.x/default/schema_extra_types.xml @@ -0,0 +1,252 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.lando/config/solr/7.x/default/solrconfig.xml b/.lando/config/solr/7.x/default/solrconfig.xml new file mode 100644 index 000000000..2cca95fcd --- /dev/null +++ b/.lando/config/solr/7.x/default/solrconfig.xml @@ -0,0 +1,811 @@ + + + + + + +]> + + + + + + + ${solr.abortOnConfigurationError:true} + + + ${solr.luceneMatchVersion:7.0} + + + + + + + + + + + + + + + + + + + + + ${solr.data.dir:} + + + + + + + + + ${solr.hdfs.home:} + + ${solr.hdfs.confdir:} + + ${solr.hdfs.blockcache.enabled:true} + + ${solr.hdfs.blockcache.global:true} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${solr.lock.type:native} + + + + + + + + + + + + + true + + + &index; + + + + + + + + + ${solr.ulog.dir:} + + + + + ${solr.autoCommit.MaxDocs:-1} + ${solr.autoCommit.MaxTime:15000} + false + + + + + + ${solr.autoSoftCommit.MaxDocs:-1} + ${solr.autoSoftCommit.MaxTime:-1} + + + + + + + + + + + + + + + + &query; + + + + + + + + + + + + static firstSearcher warming in solrconfig.xml + + + + + + false + + + + + + + + + &requestdispatcher; + + + + + + + &extra; + + + + + + + + + 100 + + + + + + + + 70 + + 0.5 + + [-\w ,/\n\"']{20,200} + + + + + + + ]]> + ]]> + + + + + + + + + + + + + + + + + + + + + + + + ,, + ,, + ,, + ,, + ,]]> + ]]> + + + + + + 10 + .,!? + + + + + + + WORD + + + en + US + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + + + + + + + + + + + + + + + diff --git a/.lando/config/solr/7.x/default/solrconfig_extra.xml b/.lando/config/solr/7.x/default/solrconfig_extra.xml new file mode 100755 index 000000000..2bae3c950 --- /dev/null +++ b/.lando/config/solr/7.x/default/solrconfig_extra.xml @@ -0,0 +1,203 @@ + + + en + spellcheck_en + solr.DirectSolrSpellChecker + internal + 0.01 + 2 + 3 + 10 + 3 + 0.1 + .0001 + false + + + + und + spellcheck_und + solr.DirectSolrSpellChecker + internal + 0.01 + 2 + 3 + 10 + 3 + 0.1 + .0001 + false + + + + + en + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_en + sm_context_tags + true + false + + + + und + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_und + sm_context_tags + true + false + + + + + + false + false + false + true + false + 1 + false + 10 + + + terms + spellcheck + suggest + + + + + + + explicit + id + + + elevator + + + + + + + true + ignored_ + true + links + ignored_ + + + + + + + 1 + 1 + false + ${solr.mlt.timeAllowed:2000} + + + + + + + lucene + id + explicit + true + ${solr.selectSearchHandler.timeAllowed:-1} + true + + + spellcheck + elevator + + + + + + + id + und + wordbreak + on + false + false + 1 + 5 + 5 + true + true + 10 + 5 + + + spellcheck + + + + + + + true + und + 10 + + + suggest + + + + + + + id + true + + + tvComponent + + + + + + string + elevate.xml + + + diff --git a/.lando/config/solr/7.x/default/solrconfig_index.xml b/.lando/config/solr/7.x/default/solrconfig_index.xml new file mode 100755 index 000000000..e69de29bb diff --git a/.lando/config/solr/7.x/default/solrconfig_query.xml b/.lando/config/solr/7.x/default/solrconfig_query.xml new file mode 100755 index 000000000..5bdd69690 --- /dev/null +++ b/.lando/config/solr/7.x/default/solrconfig_query.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + true + + false + + 20 + 200 + 1024 diff --git a/.lando/config/solr/7.x/default/solrconfig_requestdispatcher.xml b/.lando/config/solr/7.x/default/solrconfig_requestdispatcher.xml new file mode 100755 index 000000000..3a3f17d1c --- /dev/null +++ b/.lando/config/solr/7.x/default/solrconfig_requestdispatcher.xml @@ -0,0 +1,6 @@ + + + diff --git a/.lando/config/solr/7.x/default/solrcore.properties b/.lando/config/solr/7.x/default/solrcore.properties new file mode 100755 index 000000000..c24f6d97f --- /dev/null +++ b/.lando/config/solr/7.x/default/solrcore.properties @@ -0,0 +1,14 @@ +solr.replication.master=false +solr.replication.slave=false +solr.replication.pollInterval=00:00:60 +solr.replication.masterUrl=http://localhost:8983/solr +solr.replication.confFiles=schema.xml,schema_extra_types.xml,schema_extra_fields.xml,elevate.xml,stopwords_en.txt,synonyms_en.txt,protwords_en.txt,accents_en.txt,stopwords_und.txt,synonyms_und.txt,protwords_und.txt,accents_und.txt +solr.mlt.timeAllowed=2000 +solr.luceneMatchVersion=7.7 +solr.selectSearchHandler.timeAllowed=-1 +solr.autoCommit.MaxDocs=-1 +solr.autoCommit.MaxTime=15000 +solr.autoSoftCommit.MaxDocs=-1 +solr.autoSoftCommit.MaxTime=-1 +solr.install.dir=../../.. +solr.install.dir=/opt/solr diff --git a/.lando/config/solr/7.x/default/solrcore.properties.old b/.lando/config/solr/7.x/default/solrcore.properties.old new file mode 100755 index 000000000..a13ec539d --- /dev/null +++ b/.lando/config/solr/7.x/default/solrcore.properties.old @@ -0,0 +1,13 @@ +solr.replication.master=false +solr.replication.slave=false +solr.replication.pollInterval=00:00:60 +solr.replication.masterUrl=http://localhost:8983/solr +solr.replication.confFiles=schema.xml,schema_extra_types.xml,schema_extra_fields.xml,elevate.xml,stopwords_en.txt,synonyms_en.txt,protwords_en.txt,accents_en.txt,stopwords_und.txt,synonyms_und.txt,protwords_und.txt,accents_und.txt +solr.mlt.timeAllowed=2000 +solr.luceneMatchVersion=7.7 +solr.selectSearchHandler.timeAllowed=-1 +solr.autoCommit.MaxDocs=-1 +solr.autoCommit.MaxTime=15000 +solr.autoSoftCommit.MaxDocs=-1 +solr.autoSoftCommit.MaxTime=-1 +solr.install.dir=../../.. diff --git a/.lando/config/solr/7.x/default/stopwords_en.txt b/.lando/config/solr/7.x/default/stopwords_en.txt new file mode 100755 index 000000000..698105071 --- /dev/null +++ b/.lando/config/solr/7.x/default/stopwords_en.txt @@ -0,0 +1,35 @@ +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with diff --git a/.lando/config/solr/7.x/default/stopwords_und.txt b/.lando/config/solr/7.x/default/stopwords_und.txt new file mode 100755 index 000000000..084397b6d --- /dev/null +++ b/.lando/config/solr/7.x/default/stopwords_und.txt @@ -0,0 +1,36 @@ +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with + diff --git a/.lando/config/solr/7.x/default/synonyms_en.txt b/.lando/config/solr/7.x/default/synonyms_en.txt new file mode 100755 index 000000000..91689ff92 --- /dev/null +++ b/.lando/config/solr/7.x/default/synonyms_en.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/.lando/config/solr/7.x/default/synonyms_und.txt b/.lando/config/solr/7.x/default/synonyms_und.txt new file mode 100755 index 000000000..91689ff92 --- /dev/null +++ b/.lando/config/solr/7.x/default/synonyms_und.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/.lando/scripts/appserver_build.sh b/.lando/scripts/appserver_build.sh new file mode 100755 index 000000000..f5edee963 --- /dev/null +++ b/.lando/scripts/appserver_build.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash + +# Variables to indicate key settings files or directories for Drupal. +DRUPAL_ROOT=/app/web +DRUPAL_CUSTOM_CODE=$DRUPAL_ROOT/modules/custom + +# Semaphore files to control whether we need to trigger an install +# of supporting software or config files. +NODE_YARN_INSTALLED=/etc/NODE_YARN_INSTALLED + +# Set Simple test variables and put PHPUnit config in place. +if [ ! -f "${DRUPAL_ROOT}/core/phpunit.xml" ]; then + echo "Adding localised PHPUnit config to Drupal webroot" + cp $DRUPAL_ROOT/core/phpunit.xml.dist $DRUPAL_ROOT/core/phpunit.xml + # Fix bootstrap path + sed -i -e "s|bootstrap=\"tests/bootstrap.php\"|bootstrap=\"${DRUPAL_ROOT}/core/tests/bootstrap.php\"|g" $DRUPAL_ROOT/core/phpunit.xml + # Inject database params for kernel tests. + sed -i -e "s|name=\"SIMPLETEST_DB\" value=\"\"|name=\"SIMPLETEST_DB\" value=\"${DB_DRIVER}://${DB_USER}:${DB_PASS}@${DB_HOST}/${DB_NAME}\"|g" $DRUPAL_ROOT/core/phpunit.xml + # Uncomment option to switch off Symfony deprecatons helper (we use drupal-check for this). + sed -i -e "s|||g" $DRUPAL_ROOT/core/phpunit.xml + # Set the base URL for kernel tests. + sed -i -e "s|name=\"SIMPLETEST_BASE_URL\" value=\"\"|name=\"SIMPLETEST_BASE_URL\" value=\"http:\/\/${LANDO_APP_NAME}.${LANDO_DOMAIN}\"|g" $DRUPAL_ROOT/core/phpunit.xml +fi + +# Add yarn/nodejs packages to allow functional testing on this service. +if [ ! -f "$NODE_YARN_INSTALLED" ]; then + # Update packages and add gnupg and https for apt to fetch yarn packages. + apt update + apt install -y gnupg apt-transport-https + # Add yarn deb repo. + curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - + echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list + apt update + apt install -y yarn + # Add and fetch up to date nodejs to allow yarn to run correctly. + curl -sL https://deb.nodesource.com/setup_14.x | bash - + apt install -y nodejs + + # Copy Drupal .env.example file, inject Lando vars and set in place for use by Nightwatch conf. + cat $DRUPAL_ROOT/core/.env.example | sed -e "s|\(^DRUPAL_TEST_BASE_URL\)\(.\+\)|\1=http:\/\/${LANDO_APP_NAME}.${LANDO_DOMAIN}|g" > $DRUPAL_ROOT/core/.env + # Alter a few more variables. + sed -i -e "s|\(#\)\(DRUPAL_NIGHTWATCH_SEARCH_DIRECTORY\)=|\2=../|g" $DRUPAL_ROOT/core/.env + sed -i -e "s|sqlite:\/\/localhost\/sites\/default\/files/db.sqlite|${DB_DRIVER}://${DB_USER}:${DB_PASS}@${DB_HOST}/${DB_NAME}|g" $DRUPAL_ROOT/core/.env + sed -i -e "s|\(^DRUPAL_TEST_WEBDRIVER_HOSTNAME\)=localhost|\1=chromedriver|g" $DRUPAL_ROOT/core/.env + sed -i -e "s|^DRUPAL_TEST_CHROMEDRIVER_AUTOSTART=true|DRUPAL_TEST_CHROMEDRIVER_AUTOSTART=false|g" $DRUPAL_ROOT/core/.env + sed -i -e "s|\(#\)\(DRUPAL_TEST_WEBDRIVER_CHROME_ARGS\)=|\2=\"--disable-gpu --headless --no-sandbox\"|g" $DRUPAL_ROOT/core/.env + sed -i -e "s|\(^DRUPAL_NIGHTWATCH_OUTPUT\)=reports/nightwatch|\1=/app/.lando/exports/nightwatch-reports|g" $DRUPAL_ROOT/core/.env + + # Fetch and install node packages if they're not already present. + if [ ! -d "${DRUPAL_ROOT}/core/node_modules" ]; then + cd $DRUPAL_ROOT/core && yarn install + fi + + # Install any known extra npm packges for, eg: migrations. + if [ ! -d "${DRUPAL_CUSTOM_CODE}/node_modules" ]; then + cd $DRUPAL_CUSTOM_CODE + npm install + fi + + touch $NODE_YARN_INSTALLED + +fi diff --git a/.lando/scripts/create_database.sh b/.lando/scripts/create_database.sh new file mode 100644 index 000000000..e64c795d9 --- /dev/null +++ b/.lando/scripts/create_database.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +. /helpers/log.sh + +# Parse command options & flags. +for i in "$@" +do +case $i in + -n=*|--name=*) + database="${i#*=}" + shift # past argument=value. + ;; + *) + # unknown option. + ;; +esac +done + +lando_green "Creating database: ${database}"; + +# Create the database with the default Lando database credentials if +# it doesn't already exist. +mysql -uroot -e "CREATE DATABASE IF NOT EXISTS ${database}; \ + GRANT ALL PRIVILEGES ON ${database}.* TO 'drupal8'@'%' IDENTIFIED by 'drupal8';" diff --git a/.lando/scripts/create_databases.sh b/.lando/scripts/create_databases.sh new file mode 100644 index 000000000..060d3cf8e --- /dev/null +++ b/.lando/scripts/create_databases.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +. /helpers/log.sh + +# Iterate every symlink (which web create for each site) under web/sites and create a database with the default +# Lando database credentials if it doesn't already exist. +for dir in $(find /app/web/sites/ -mindepth 1 -maxdepth 1 -type l) ; do + database=${dir##*/} ; + + # Ignore the standard 'default' folder under web/sites. + if [ $database != 'default' ]; then + lando_green "Creating databases ${database} and ${database}_legacy"; + # Create the Drupal 9 and Drupal 7 legacy databases with the default Lando + # credentials if they don't already exist. + mysql -uroot -e "CREATE DATABASE IF NOT EXISTS $database; \ + GRANT ALL PRIVILEGES ON $database.* TO 'drupal9'@'%' IDENTIFIED by 'drupal9'; \ + CREATE DATABASE IF NOT EXISTS ${database}_legacy; \ + GRANT ALL PRIVILEGES ON ${database}_legacy.* TO 'drupal9'@'%' IDENTIFIED by 'drupal9';" | cut -f1 -d":"; + fi +done diff --git a/.lando/scripts/delete_database.sh b/.lando/scripts/delete_database.sh new file mode 100644 index 000000000..3cd323913 --- /dev/null +++ b/.lando/scripts/delete_database.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +. /helpers/log.sh + +# Parse command options & flags. +for i in "$@" +do +case $i in + -n=*|--name=*) + database="${i#*=}" + shift # past argument=value + ;; + *) + # unknown option + ;; +esac +done + +# Ensure we are not deleting anything critical! +if { [ $database = 'mysql' ] || [ $database = 'information_schema' ] || [ $database = 'performance_schema' ]; }; then + lando_red "I'm sorry Dave, I'm afraid I can't do that" +else + lando_green "Deleting database: ${database}"; + + # Drop the database if it exists. + mysql -uroot -e "DROP DATABASE IF EXISTS ${database}"; +fi diff --git a/.lando/scripts/export_database.sh b/.lando/scripts/export_database.sh new file mode 100644 index 000000000..a76543485 --- /dev/null +++ b/.lando/scripts/export_database.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +. /helpers/log.sh + +# If the first command option is missing then dump every database. +if [ -z "$1" ]; then + for dir in $(find /app/web/sites/ -mindepth 1 -maxdepth 1 -type l) ; do + database=${dir##*/} ; + + # Ignore the standard 'default' folder under web/sites. + if [ $database != 'default' ]; then + lando_green "Exporting database: ${database}" + mysqldump --opt --user=${USER} --host=${HOST} --port=${PORT} --databases $database > `date +%Y-%m-%d`.$database.sql + fi + done +else + # Export a single database. + lando_green "Exporting database: ${1}" + mysqldump --opt --user=${USER} --host=${HOST} --port=${PORT} --databases ${1} > `date +%Y-%m-%d`.${1}.sql +fi + + + diff --git a/.lando/scripts/import_database.sh b/.lando/scripts/import_database.sh new file mode 100644 index 000000000..199e74292 --- /dev/null +++ b/.lando/scripts/import_database.sh @@ -0,0 +1,42 @@ +#!/bin/bash + +. /helpers/log.sh + +# Parse command options & flags. +for i in "$@" +do +case $i in + -d=*|--database=*) + database="${i#*=}" + shift # past argument=value + ;; + -f=*|--file=*) + file="${i#*=}" + shift # past argument=value + ;; + *) + # unknown option + ;; +esac +done + +# Check the dump file is present on the filesystem. +if [ -f "$file" ]; then + + # Reusable database connection. + sqlconn="mysql -u root -h $DB_HOST -D $database" + + # Fetch all the tables for this database. + tables=$($sqlconn -e 'SHOW TABLES' | awk '{ print $1}' | grep -v '^Tables' || true) + + # We drop each table to cleanup the database before import. + for t in $tables; do + lando_yellow "Dropping $t table from $database database..." + $sqlconn -e "DROP TABLE $t" + done + + lando_green "Importing to $database" + $sqlconn < $file +else + lando_red "File '$file' does not exist. Aborting import" +fi diff --git a/.lando/scripts/run_nightwatch.sh b/.lando/scripts/run_nightwatch.sh new file mode 100644 index 000000000..4425a6a3b --- /dev/null +++ b/.lando/scripts/run_nightwatch.sh @@ -0,0 +1,42 @@ +#!/bin/bash + +. /helpers/log.sh + +# Parse command options & flags. +for i in "$@" +do +case $i in + -s=*|--site=*) + site="${i#*=}" + shift # past argument=value + ;; + -t=*|--test=*) + test="${i#*=}" + shift # past argument=value + ;; + *) + # unknown option + ;; +esac +done + +lando_green "Running Nightwatch test for site: $site"; + +# Will need to add more sites in here as we go, code could +# possibly be improved to derive site URL from site name (as the +# database name is predictable) ? +if [ $site = "uregni" ]; then +export DRUPAL_TEST_BASE_URL=http://uregni.gov.uk.lndo.site +export DRUPAL_TEST_DB_URL=mysql://drupal8:drupal8@database/uregni +elif [ $site = "liofa" ]; then +export DRUPAL_TEST_BASE_URL=http://liofa.eu.lndo.site +export DRUPAL_TEST_DB_URL=mysql://drupal8:drupal8@database/liofa +elif [ $site = "fictcommission" ]; then +export DRUPAL_TEST_BASE_URL=http://fictcommission.org.lndo.site +export DRUPAL_TEST_DB_URL=mysql://drupal8:drupal8@database/fictcommission +else +lando_red "Please specify a valid Unity site in which to run the tests" +exit 1 +fi + +yarn --cwd=/app/web/core test:nightwatch $test diff --git a/.platform.app.yaml b/.platform.app.yaml new file mode 100644 index 000000000..6d8d63786 --- /dev/null +++ b/.platform.app.yaml @@ -0,0 +1,136 @@ +############################################################################# +### --== IMPORTANT ==-- ### +############################################################################# +# If you require changes to this file you must edit the file within the # +# original repository.Any changes here will be overwritten when the project # +# is built. # +############################################################################# +name: unity_svr_3 +type: 'php:8.1' +dependencies: + php: + composer/composer: ^2 +runtime: + extensions: + - apcu + - redis +disk: 25000 +mounts: + /web/files: + source: local + source_path: files + /tmp: + source: local + source_path: tmp + /private: + source: local + source_path: private + /.drush: + source: local + source_path: drush + /drush-backups: + source: local + source_path: drush-backups + /.console: + source: local + source_path: console + /log: + source: local + source_path: log +build: + flavor: composer +hooks: + build: "set -e\necho \"Update robots.txt with Unity customisations\"\ncp -f web/robots_unity.txt web/robots.txt\n" + post_deploy: "set -e\n\n# Save the Fastly service value and overwrite with a dummy one in order to break\n# the connection to Fastly, otherwise any cache clear of any site will purge the\n# entire Fastly cache - we don't want this to happen as we'd like Fastly to continue\n# serving the sites to anonymous users during a release.\necho \"***** Breaking connection to Fastly ******\"\ntemp=$FASTLY_API_SERVICE\nexport FASTLY_API_SERVICE=dummyservice\n\n# For each multi site - run db-updates and import config.\nfor site in pacni judiciaryni boundarycommission industrialcourt interchangeni infolibrarynics pressclippingsnics parolecomni lgbcni semcommittee nibureau\ndo\n result=$(drush -l $site st | grep \"Drupal bootstrap : Successful\" | awk {'print $4'})\n if [ \"$result\" = \"Successful\" ]; then\n echo \"****** $site deployment ******\"\n cd /app/web/sites/$site\n # Disable Fastly logging\n drush -l $site disable-fastly-logging\n # Readonlymode module should be installed on all sites,\n # but we'll just make sure.\n drush en readonlymode -l $site -y\n # Set site to readonly just in case editors are logged on.\n drush -l $site cset readonlymode.settings enabled 1 -y\n drush -l $site -y cache-rebuild\n drush -l $site -y updatedb\n drush -l $site -y config-import\n drush -l $site import-all-if-installed safe\n if [ \"$PLATFORM_ENVIRONMENT_TYPE\" = production ]; then\n # Disable QA logons\n drush -l $site bulk_update_qa_accounts disable\n else\n # Enable QA logons\n drush -l $site bulk_update_qa_accounts enable\n fi\n # Turn off readonly mode.\n drush -l $site cset readonlymode.settings enabled 0 -y\n else\n echo \"****** Skipping $site as there is no database ******\"\n echo \"\"\n fi\ndone\n\n# Reconnect to Fastly\necho \"***** Reinstate connection to Fastly ******\"\nexport FASTLY_API_SERVICE=$temp\n\n# For each multi site - clear cache (including Fastly cache)\nfor site in pacni judiciaryni boundarycommission industrialcourt interchangeni infolibrarynics pressclippingsnics parolecomni lgbcni semcommittee nibureau\ndo\n result=$(drush -l $site st | grep \"Drupal bootstrap : Successful\" | awk {'print $4'})\n if [ \"$result\" = \"Successful\" ]; then\n echo \"****** $site cache clear ******\"\n cd /app/web/sites/$site\n drush -l $site -y cache-rebuild\n # Enable Fastly logging\n drush -l $site enable-fastly-logging\n fi\ndone\n" +web: + locations: + /: + root: web + expires: 5m + passthru: /index.php + allow: false + rules: + '\.(jpe?g|png|gif|svgz?|css|js|map|ico|bmp|eot|woff2?|otf|ttf)$': + allow: true + ^/robots\.txt$: + allow: true + ^/sitemap\.xml$: + allow: true + ^\/sites\/.+\/themes\/.+\/images\/favicons\/.+\.webmanifest$: + allow: true + expires: 2w + ^/sites/sites\.php$: + scripts: false + '^/sites/[^/]+/settings.*?\.php$': + scripts: false + /files: + allow: true + expires: 1d + passthru: /index.php + root: web/files + scripts: false + rules: + ^/sites/default/files/(css|js): + expires: 2w +relationships: + redis: 'redis:redis' + pacni: 'db:pacni' + pacni_solr: 'solr:pacni' + judiciaryni: 'db:judiciaryni' + judiciaryni_solr: 'solr:judiciaryni' + boundarycommission: 'db:boundarycommission' + boundarycommission_solr: 'solr:boundarycommission' + industrialcourt: 'db:industrialcourt' + industrialcourt_solr: 'solr:industrialcourt' + interchangeni: 'db:interchangeni' + interchangeni_solr: 'solr:interchangeni' + infolibrarynics: 'db:infolibrarynics' + pressclippingsnics: 'db:pressclippingsnics' + pressclippingsnics_solr: 'solr:pressclippingsnics' + parolecomni: 'db:parolecomni' + parolecomni_solr: 'solr:parolecomni' + lgbcni: 'db:lgbcni' + lgbcni_solr: 'solr:lgbcni' + semcommittee: 'db:semcommittee' + semcommittee_solr: 'solr:semcommittee' + nibureau: 'db:nibureau' + nibureau_solr: 'solr:nibureau' +crons: + pacni: + spec: '10 * * * *' + cmd: 'cd web/sites/pacni ; drush core-cron' + logging: + spec: '*/5 * * * *' + commands: + start: '/bin/bash /app/cronjob.sh' + shutdown_timeout: 290 + judiciaryni: + spec: '10 * * * *' + cmd: 'cd web/sites/judiciaryni ; drush core-cron' + boundarycommission: + spec: '10 * * * *' + cmd: 'cd web/sites/boundarycommission ; drush core-cron' + industrialcourt: + spec: '10 * * * *' + cmd: 'cd web/sites/industrialcourt ; drush core-cron' + interchangeni: + spec: '10 * * * *' + cmd: 'cd web/sites/interchangeni ; drush core-cron' + infolibrarynics: + spec: '10 * * * *' + cmd: 'cd web/sites/infolibrarynics ; drush core-cron' + pressclippingsnics: + spec: '10 * * * *' + cmd: 'cd web/sites/pressclippingsnics ; drush core-cron' + parolecomni: + spec: '10 * * * *' + cmd: 'cd web/sites/parolecomni ; drush core-cron' + lgbcni: + spec: '10 * * * *' + cmd: 'cd web/sites/lgbcni ; drush core-cron' + semcommittee: + spec: '10 * * * *' + cmd: 'cd web/sites/semcommittee ; drush core-cron' + nibureau: + spec: '10 * * * *' + cmd: 'cd web/sites/nibureau ; drush core-cron' diff --git a/.platform/routes.yaml b/.platform/routes.yaml new file mode 100644 index 000000000..36d469730 --- /dev/null +++ b/.platform/routes.yaml @@ -0,0 +1,81 @@ +############################################################################# +### --== IMPORTANT ==-- ### +############################################################################# +# If you require changes to this file you must edit the file within the # +# original repository.Any changes here will be overwritten when the project # +# is built. # +############################################################################# +'https://www.pacni.gov.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://pacni.gov.uk/': + type: redirect + to: 'https://www.pacni.gov.uk/' +'https://www.judiciaryni.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://judiciaryni.uk/': + type: redirect + to: 'https://www.judiciaryni.uk/' +'https://www.boundarycommission.org.uk.{default}/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://boundarycommission.org.uk.{default}/': + type: redirect + to: 'https://www.boundarycommission.org.uk.{default}/' +'https://info.library.nics.gov.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://pressclippings.nics.gov.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://www.parolecomni.org.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://parolecomni.org.uk/': + type: redirect + to: 'https://www.parolecomni.org.uk/' +'https://www.lgbc-ni.org.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://lgbc-ni.org.uk/': + type: redirect + to: 'https://www.lgbc-ni.org.uk/' +'https://www.semcommittee.com/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://semcommittee.com/': + type: redirect + to: 'https://www.semcommittee.com/' +'https://www.nibureau.com/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://nibureau.com/': + type: redirect + to: 'https://www.nibureau.com/' +'https://www.{all}/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://{all}/': + type: redirect + to: 'https://www.{all}/' diff --git a/.platform/services.yaml b/.platform/services.yaml new file mode 100644 index 000000000..8ec1bdd9f --- /dev/null +++ b/.platform/services.yaml @@ -0,0 +1,116 @@ +############################################################################# +### --== IMPORTANT ==-- ### +############################################################################# +# If you require changes to this file you must edit the file within the # +# original repository.Any changes here will be overwritten when the project # +# is built. # +############################################################################# +db: + type: 'mariadb:10.4' + disk: 14000 + configuration: + schemas: + - pacnidb + - judiciarynidb + - boundarycommissiondb + - industrialcourtdb + - interchangenidb + - infolibrarynicsdb + - pressclippingsnicsdb + - parolecomnidb + - lgbcnidb + - semcommitteedb + - nibureaudb + endpoints: + pacni: + default_schema: pacnidb + privileges: + pacnidb: admin + judiciaryni: + default_schema: judiciarynidb + privileges: + judiciarynidb: admin + boundarycommission: + default_schema: boundarycommissiondb + privileges: + boundarycommissiondb: admin + industrialcourt: + default_schema: industrialcourtdb + privileges: + industrialcourtdb: admin + interchangeni: + default_schema: interchangenidb + privileges: + interchangenidb: admin + infolibrarynics: + default_schema: infolibrarynicsdb + privileges: + infolibrarynicsdb: admin + pressclippingsnics: + default_schema: pressclippingsnicsdb + privileges: + pressclippingsnicsdb: admin + parolecomni: + default_schema: parolecomnidb + privileges: + parolecomnidb: admin + lgbcni: + default_schema: lgbcnidb + privileges: + lgbcnidb: admin + semcommittee: + default_schema: semcommitteedb + privileges: + semcommitteedb: admin + nibureau: + default_schema: nibureaudb + privileges: + nibureaudb: admin +solr: + type: 'solr:7.7' + disk: 1024 + configuration: + cores: + pacni_index: + conf_dir: !archive solr_config/ + judiciaryni_index: + conf_dir: !archive solr_config/ + boundarycommission_index: + conf_dir: !archive solr_config/ + industrialcourt_index: + conf_dir: !archive solr_config/ + interchangeni_index: + conf_dir: !archive solr_config/ + pressclippingsnics_index: + conf_dir: !archive solr_config/ + parolecomni_index: + conf_dir: !archive solr_config/ + lgbcni_index: + conf_dir: !archive solr_config/ + semcommittee_index: + conf_dir: !archive solr_config/ + nibureau_index: + conf_dir: !archive solr_config/ + endpoints: + pacni: + core: pacni_index + judiciaryni: + core: judiciaryni_index + boundarycommission: + core: boundarycommission_index + industrialcourt: + core: industrialcourt_index + interchangeni: + core: interchangeni_index + pressclippingsnics: + core: pressclippingsnics_index + parolecomni: + core: parolecomni_index + lgbcni: + core: lgbcni_index + semcommittee: + core: semcommittee_index + nibureau: + core: nibureau_index +redis: + type: 'redis:6.0' diff --git a/.platform/solr_config/.gitkeep b/.platform/solr_config/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/.platform/solr_config/accents_en.txt b/.platform/solr_config/accents_en.txt new file mode 100644 index 000000000..bed051477 --- /dev/null +++ b/.platform/solr_config/accents_en.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Ą => A +"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ę => E +"\u0118" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ł => L +"\u0141" => "L" +# Ñ => N +"\u00D1" => "N" +# Ń => N +"\u0143" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# Ś => S +"\u015a" => "S" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# Ź => Z +"\u0179" => "Z" +# Ż => Z +"\u017b" => "Z" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/.platform/solr_config/accents_und.txt b/.platform/solr_config/accents_und.txt new file mode 100644 index 000000000..7c883f87a --- /dev/null +++ b/.platform/solr_config/accents_und.txt @@ -0,0 +1,148 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ñ => N +"\u00D1" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/.platform/solr_config/elevate.xml b/.platform/solr_config/elevate.xml new file mode 100644 index 000000000..193a0e727 --- /dev/null +++ b/.platform/solr_config/elevate.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/.platform/solr_config/protwords_en.txt b/.platform/solr_config/protwords_en.txt new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/.platform/solr_config/protwords_en.txt @@ -0,0 +1 @@ + diff --git a/.platform/solr_config/protwords_und.txt b/.platform/solr_config/protwords_und.txt new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/.platform/solr_config/protwords_und.txt @@ -0,0 +1 @@ + diff --git a/.platform/solr_config/schema.xml b/.platform/solr_config/schema.xml new file mode 100644 index 000000000..1c3c115bc --- /dev/null +++ b/.platform/solr_config/schema.xml @@ -0,0 +1,478 @@ + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &extrafields; + + + &extratypes; + + + id + + + + + diff --git a/.platform/solr_config/schema_extra_fields.xml b/.platform/solr_config/schema_extra_fields.xml new file mode 100644 index 000000000..78c3fea36 --- /dev/null +++ b/.platform/solr_config/schema_extra_fields.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.platform/solr_config/schema_extra_types.xml b/.platform/solr_config/schema_extra_types.xml new file mode 100644 index 000000000..3ebc30952 --- /dev/null +++ b/.platform/solr_config/schema_extra_types.xml @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.platform/solr_config/solrconfig.xml b/.platform/solr_config/solrconfig.xml new file mode 100644 index 000000000..475b35a38 --- /dev/null +++ b/.platform/solr_config/solrconfig.xml @@ -0,0 +1,811 @@ + + + + + + +]> + + + + + + + ${solr.abortOnConfigurationError:true} + + + ${solr.luceneMatchVersion:LUCENE_70} + + + + + + + + + + + + + + + + + + + + + ${solr.data.dir:} + + + + + + + + + ${solr.hdfs.home:} + + ${solr.hdfs.confdir:} + + ${solr.hdfs.blockcache.enabled:true} + + ${solr.hdfs.blockcache.global:true} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${solr.lock.type:native} + + + + + + + + + + + + + true + + + &index; + + + + + + + + + ${solr.ulog.dir:} + + + + + ${solr.autoCommit.MaxDocs:-1} + ${solr.autoCommit.MaxTime:15000} + false + + + + + + ${solr.autoSoftCommit.MaxDocs:-1} + ${solr.autoSoftCommit.MaxTime:5000} + + + + + + + + + + + + + + + + &query; + + + + + + + + + + + + static firstSearcher warming in solrconfig.xml + + + + + + false + + + + + + + + + &requestdispatcher; + + + + + + + &extra; + + + + + + + + + 100 + + + + + + + + 70 + + 0.5 + + [-\w ,/\n\"']{20,200} + + + + + + + ]]> + ]]> + + + + + + + + + + + + + + + + + + + + + + + + ,, + ,, + ,, + ,, + ,]]> + ]]> + + + + + + 10 + .,!? + + + + + + + WORD + + + en + US + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + + + + + + + + + + + + + + + diff --git a/.platform/solr_config/solrconfig_extra.xml b/.platform/solr_config/solrconfig_extra.xml new file mode 100644 index 000000000..1a59c4593 --- /dev/null +++ b/.platform/solr_config/solrconfig_extra.xml @@ -0,0 +1,188 @@ + + + en + spellcheck_en + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + und + spellcheck_und + solr.DirectSolrSpellChecker + internal + 0.5 + 2 + 1 + 5 + 4 + 0.01 + .01 + true + + + + + en + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_en + sm_context_tags + true + false + + + + und + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_und + sm_context_tags + true + false + + + + + + false + false + false + true + false + 1 + false + 10 + + + terms + spellcheck + suggest + + + + + + + true + ignored_ + true + links + ignored_ + + + + + + + 1 + 1 + false + ${solr.mlt.timeAllowed:2000} + + + + + + + lucene + id + explicit + true + ${solr.selectSearchHandler.timeAllowed:-1} + false + + + spellcheck + elevator + + + + + + + id + und + on + false + false + 1 + 5 + 5 + true + true + 10 + 5 + + + spellcheck + + + + + + + true + und + 10 + + + suggest + + + + + + + id + true + + + tvComponent + + + + + + string + elevate.xml + + + diff --git a/.platform/solr_config/solrconfig_index.xml b/.platform/solr_config/solrconfig_index.xml new file mode 100644 index 000000000..e69de29bb diff --git a/.platform/solr_config/solrconfig_query.xml b/.platform/solr_config/solrconfig_query.xml new file mode 100644 index 000000000..5bdd69690 --- /dev/null +++ b/.platform/solr_config/solrconfig_query.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + true + + false + + 20 + 200 + 1024 diff --git a/.platform/solr_config/solrconfig_requestdispatcher.xml b/.platform/solr_config/solrconfig_requestdispatcher.xml new file mode 100644 index 000000000..3a3f17d1c --- /dev/null +++ b/.platform/solr_config/solrconfig_requestdispatcher.xml @@ -0,0 +1,6 @@ + + + diff --git a/.platform/solr_config/solrcore.properties b/.platform/solr_config/solrcore.properties new file mode 100644 index 000000000..20bf32d6c --- /dev/null +++ b/.platform/solr_config/solrcore.properties @@ -0,0 +1,13 @@ +solr.replication.master=false +solr.replication.slave=false +solr.replication.pollInterval=00:00:60 +solr.replication.masterUrl=http://localhost:8983/solr +solr.replication.confFiles=schema.xml,schema_extra_types.xml,schema_extra_fields.xml,elevate.xml,stopwords_en.txt,protwords_en.txt,accents_en.txt,synonyms_en.txt,stopwords_und.txt,protwords_und.txt,accents_und.txt,synonyms_und.txt +solr.mlt.timeAllowed=2000 +solr.selectSearchHandler.timeAllowed=-1 +solr.autoCommit.MaxDocs=-1 +solr.autoCommit.MaxTime=15000 +solr.autoSoftCommit.MaxDocs=-1 +solr.autoSoftCommit.MaxTime=5000 + +solr.luceneMatchVersion=7.7 diff --git a/.platform/solr_config/stopwords_en.txt b/.platform/solr_config/stopwords_en.txt new file mode 100644 index 000000000..698105071 --- /dev/null +++ b/.platform/solr_config/stopwords_en.txt @@ -0,0 +1,35 @@ +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with diff --git a/.platform/solr_config/stopwords_und.txt b/.platform/solr_config/stopwords_und.txt new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/.platform/solr_config/stopwords_und.txt @@ -0,0 +1 @@ + diff --git a/.platform/solr_config/synonyms_en.txt b/.platform/solr_config/synonyms_en.txt new file mode 100644 index 000000000..91689ff92 --- /dev/null +++ b/.platform/solr_config/synonyms_en.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/.platform/solr_config/synonyms_und.txt b/.platform/solr_config/synonyms_und.txt new file mode 100644 index 000000000..91689ff92 --- /dev/null +++ b/.platform/solr_config/synonyms_und.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/README.md b/README.md index 232bf812a..bc8fa37fd 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ deployed direct to a hosting environment and instead is used to create 'server s When a core or contrib update is required for Unity sites it is first performed against this repository, pushed to Github and then each 'server instance' fork will pull from this upstream source. It is imperative that any changes to the files within this repository are not altered directly on the server instance fork as any future pulls -could possibly overwrite those changes. +could possibly overwrite those changes. ## Structure diff --git a/build-themes.sh b/build-themes.sh new file mode 100755 index 000000000..b5ee56178 --- /dev/null +++ b/build-themes.sh @@ -0,0 +1,58 @@ +#!/usr/bin/env bash + +echo "Starting unity theme update" + +# Defaults +sites_dir="/app/project/sites" +site_names=() + +# Parse named parameters +while [[ $# -gt 0 ]]; do + key="$1" + case $key in + --sites-dir) + sites_dir="$2" + shift + shift + ;; + --site-names) + IFS=',' read -r -a site_names <<< "$2" + shift + shift + ;; + *) + echo "Unknown option: $1" + exit 1 + ;; + esac +done + +# If no site names provided, process all sites +if [ ${#site_names[@]} -eq 0 ]; then + site_names=($(ls -1 "$sites_dir")) +fi + +# Process each site +for site_name in "${site_names[@]}"; do + # Trim leading and trailing whitespace from site name + site_name=$(echo "$site_name" | xargs) + + # Skip empty site names + if [ -z "$site_name" ]; then + continue + fi + + site_path="$sites_dir/$site_name" + themes_dir="$site_path/themes/${site_name}_theme" + + if [ -d "$themes_dir" ]; then + echo "Running npm install in $themes_dir" + cd "$themes_dir" + + npm install --silent --no-progress + npm install nicsdru_unity_theme --silent --no-progress + npm run build + else + echo "Themes directory not found for $site_name" + fi +done diff --git a/cachewarmer_1.sh b/cachewarmer_1.sh new file mode 100755 index 000000000..33114279f --- /dev/null +++ b/cachewarmer_1.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +clear + +echo "Warming up unity 3 sites with HTTrack ..." + +echo "Warming Boundary Commission..." +httrack https://www.boundarycommission.org.uk/ -c5R2b0s0aqzvp0C0r3F "HTTrack cache builder" "-*.jpg" "-*.css" "-*.js" "-*.png" "-*.gif" "-*.jpeg" "-*.ico" "-*/type/*" "-*/topic/*" "-*/date/*" "-*page=*" + +echo "Warming Industrial Court..." +httrack https://www.industrialcourt.gov.uk/ -c5R2b0s0aqzvp0C0r3F "HTTrack cache builder" "-*.jpg" "-*.css" "-*.js" "-*.png" "-*.gif" "-*.jpeg" "-*.ico" "-*/type/*" "-*/topic/*" "-*/date/*" "-*page=*" + +echo "Warming Interchange NI..." +httrack https://www.interchangeni.org.uk/ -c5R2b0s0aqzvp0C0r3F "HTTrack cache builder" "-*.jpg" "-*.css" "-*.js" "-*.png" "-*.gif" "-*.jpeg" "-*.ico" "-*/type/*" "-*/topic/*" "-*/date/*" "-*page=*" + +echo "---------------------------------------------------" + +echo "Warming complete.:" diff --git a/composer.json b/composer.json index 133425105..87b21bb4d 100644 --- a/composer.json +++ b/composer.json @@ -11,21 +11,6 @@ "type": "composer", "url": "https://packages.drupal.org/8" }, - { - "type": "package", - "package": { - "name": "harvesthq/chosen", - "version": "1.8.7", - "type": "drupal-library", - "dist": { - "url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip", - "type": "zip" - }, - "require": { - "composer/installers": "^1.2.0" - } - } - }, { "type": "package", "package": { @@ -37,7 +22,7 @@ "type": "zip" }, "require": { - "composer/installers": "^1.2.0" + "composer/installers": "^2.0" } } }, @@ -58,133 +43,123 @@ } ], "require": { - "composer/installers": "^1.9", + "composer-runtime-api": "*", + "composer/installers": "^2.0", "cweagans/composer-patches": "^1.7", - "dinbror/blazy": "^1.8", - "dof-dss/nicsdru_origins_modules": "^9.1", - "dof-dss/nicsdru_origins_profile": "^0.1", - "dof-dss/nicsdru_unity_modules": "^9.1", - "dof-dss/nicsdru_unity_profile": "^9.1", - "dof-dss/nicsdru_unity_theme": "^9.1", - "drupal/address": "^1.7", - "drupal/admin_toolbar": "^2.0", - "drupal/adminimal_theme": "^1.5", - "drupal/allowed_formats": "^1.3", - "drupal/auto_entityqueue": "^2.0", - "drupal/block_blacklist": "^1.0", - "drupal/block_content_permissions": "^1.10", + "dof-dss/nicsdru_origins_modules": "^10.1", + "dof-dss/nicsdru_unity_modules": "^10.1", + "dof-dss/nicsdru_unity_profile": "^10.1", + "dof-dss/nicsdru_unity_theme": "^10.1", + "drupal/address": "^1.12", + "drupal/admin_toolbar": "^3.4", + "drupal/adminimal_theme": "^1.7", + "drupal/allowed_formats": "^2.0", + "drupal/auto_entityqueue": "^2.1", + "drupal/blazy": "2.16.0", + "drupal/block_content_permissions": "^1.11", "drupal/block_field": "^1.0@RC", "drupal/block_list_override": "^1.0", - "drupal/block_visibility_groups": "^1.3", - "drupal/chosen": "^3.0", - "drupal/clientside_validation": "^3.0-rc4", - "drupal/clone_nodes": "1.1.x-dev", - "drupal/config_filter": "^1.4", - "drupal/config_ignore": "^2.1", + "drupal/block_visibility_groups": "^2.0", + "drupal/ckeditor": "^1.0", + "drupal/ckeditor5_allowed_html": "^1.0@dev", + "drupal/ckeditor5_premium_features": "^1.2", + "drupal/classy": "^1.0", + "drupal/clientside_validation": "^4.0", + "drupal/clone_nodes": "^1.2@dev", + "drupal/config_filter": "^1.10", + "drupal/config_ignore": "^2.4", "drupal/config_readonly": "^1.0@beta", - "drupal/config_split": "^1.4", - "drupal/config_update": "^1.6", - "drupal/console": "^1.9", - "drupal/content_lock": "^2.2", - "drupal/cookie_content_blocker": "^2.0", - "drupal/core-composer-scaffold": "9.5.*", - "drupal/core-recommended": "9.5.*", - "drupal/csp": "^1.15", - "drupal/date_facet_drilldown": "4.x-dev@dev", - "drupal/diff": "^1.0", - "drupal/draggableviews": "^2.0", - "drupal/embed": "^1.6", + "drupal/config_split": "^1.9", + "drupal/config_update": "^2.0@alpha", + "drupal/content_lock": "^2.3", + "drupal/cookie_content_blocker": "^2.2", + "drupal/core-composer-scaffold": "^10.1", + "drupal/core-project-message": "^10.1", + "drupal/core-recommended": "^10.1", + "drupal/csp": "^1.20", + "drupal/date_facet_drilldown": "^5.0@dev", + "drupal/diff": "^1.1", + "drupal/draggableviews": "^2.1", "drupal/entity_browser": "^2.9", - "drupal/entity_embed": "^1.0", - "drupal/entityqueue": "^1.2", - "drupal/eu_cookie_compliance": "^1.8", + "drupal/entity_embed": "^1.4", + "drupal/entity_reference_revisions": "^1.10", + "drupal/entityqueue": "^1.6", + "drupal/eu_cookie_compliance": "^1.24", "drupal/facets": "^2.0", "drupal/facets_pretty_paths": "^1.4", - "drupal/faqfield": "^7.0", - "drupal/fastly": "^3.9", - "drupal/field_group": "^3.0", + "drupal/fastly": "^4.0", + "drupal/field_group": "^3.4", "drupal/file_delete_ui": "^1.0@beta", "drupal/filelog": "^2.1", "drupal/flag": "^4.0@beta", - "drupal/geocoder": "^3.20", - "drupal/geolocation": "3.x", - "drupal/google_tag": "^1.5", - "drupal/handy_cache_tags": "^1.0", + "drupal/geocoder": "^4.9", + "drupal/geolocation": "^3.12", + "drupal/google_tag": "^2.0", + "drupal/handy_cache_tags": "^1.4", "drupal/honeypot": "^2.1", - "drupal/http_cache_control": "^2.0", - "drupal/inline_entity_form": "^1.0@RC", - "drupal/layout_builder_restrictions": "^2.12", + "drupal/http_cache_control": "^2.1", + "drupal/inline_entity_form": "^2.0@RC", + "drupal/jquery_ui_accordion": "^2.0", + "drupal/layout_builder_modal": "^1.2", + "drupal/layout_builder_restrictions": "^2.19", "drupal/link_fix_absolute_urls": "^1.0", - "drupal/linkit": "^6.0.0", - "drupal/media_entity_browser": "^2.0", + "drupal/linkit": "^6.1", + "drupal/media_entity_browser": "^2.0@alpha", "drupal/media_file_delete": "^1.3", "drupal/media_library_edit": "^3.0", - "drupal/menu_admin_per_menu": "^1.3", - "drupal/menu_breadcrumb": "^1.13", - "drupal/metatag": "1.16.0", - "drupal/migrate_absolute_links": "^2.0", - "drupal/migrate_upgrade": "^3.2", - "drupal/moderation_sidebar": "1.4", - "drupal/node_edit_protection": "^1.0", - "drupal/noreferrer": "^1.7", + "drupal/menu_admin_per_menu": "^1.5", + "drupal/menu_breadcrumb": "^2.0@alpha", + "drupal/metatag": "^2.0", + "drupal/migrate_absolute_links": "4.0.x-dev@dev", + "drupal/migrate_upgrade": "^4.0", + "drupal/moderation_sidebar": "^1.7", + "drupal/node_edit_protection": "^1.1", + "drupal/noreferrer": "^1.16", "drupal/oembed_providers": "^2.1", - "drupal/paragraphs": "^1.12", - "drupal/pathauto": "^1.8.0", - "drupal/readonlymode": "^1.1", - "drupal/redirect": "^1.6.0", - "drupal/redis": "^1.5", - "drupal/scheduled_transitions": "^2.0", - "drupal/scheduler": "^1.3", - "drupal/scheduler_content_moderation_integration": "^1.1", - "drupal/schema_metatag": "^1.4", + "drupal/paragraphs": "^1.15", + "drupal/pathauto": "^1.11", + "drupal/rdf": "^2.1", + "drupal/readonlymode": "^1.2", + "drupal/redirect": "^1.8", + "drupal/redis": "^1.7", + "drupal/scheduled_transitions": "^2.3", + "drupal/scheduler": "^2.0", + "drupal/scheduler_content_moderation_integration": "^2.0@beta", + "drupal/schema_metatag": "^3.0", "drupal/search_api": "^1.26", "drupal/search_api_autocomplete": "^1.4", "drupal/search_api_location": "^1.0@alpha", - "drupal/search_api_solr": "^4.2", + "drupal/search_api_solr": "4.2.12", "drupal/search_api_spellcheck": "^4.0", + "drupal/seven": "^1.0", "drupal/shs": "^2.0@RC", - "drupal/simplei": "^1.1", - "drupal/slick": "^2.2", - "drupal/slick_views": "^2.3", - "drupal/smart_date": "^3.7", + "drupal/simplei": "^2.1", + "drupal/slick": "2.9.0", + "drupal/slick_views": "2.7.0", + "drupal/smart_date": "^4.0", + "drupal/stable": "^2.0", "drupal/structure_sync": "^2.0", - "drupal/taxonomy_access_fix": "^3.1", + "drupal/taxonomy_access_fix": "^4.0", "drupal/taxonomy_manager": "^2.0", - "drupal/telephone_plus": "1.x-dev", - "drupal/timefield": "^1.0", - "drupal/token": "^1.5", - "drupal/token_filter": "^1.1", + "drupal/telephone_plus": "^9.1", + "drupal/timefield_d10": "1.0.x-dev@dev", + "drupal/token": "^1.12", + "drupal/token_filter": "^2.0", "drupal/twig_field_value": "^2.0", - "drupal/twig_tweak": "^2.4", + "drupal/twig_tweak": "^3.2", "drupal/ultimate_cron": "^2.0@alpha", - "drupal/views_contextual_filters_or": "^1.1", - "drupal/views_custom_cache_tag": "^1.1", - "drupal/webform": "^6.0", + "drupal/views_contextual_filters_or": "^1.4", + "drupal/views_custom_cache_tag": "^1.3", + "drupal/webform": "^6.2@beta", "drupal/whatlinkshere": "^2.1", - "drush/drush": "^10.3", - "geocoder-php/google-maps-provider": "^4.6", + "drush/drush": "^11", + "geocoder-php/google-maps-provider": "^4.7", "harvesthq/chosen": "^1.8", "kenwheeler/slick": "^1.8", "oomphinc/composer-installers-extender": "^2.0", "platformsh/config-reader": "^2.4", - "vlucas/phpdotenv": "^2.4" - }, - "require-dev": { - "dof-dss/maestro-hosting": "^1.0", - "dof-dss/maestro-shell": "^1.0", - "drupal/coder": "^8.3", - "drupal/core-dev": "^9.0.0", - "drupal/devel": "^4.1", - "drupal/easy_install": "^10.1", - "drupal/migrate_plus": "^5.1", - "drupal/migrate_tools": "^5.0", - "drupal/permissions_filter": "^1.1", - "drupal/stage_file_proxy": "^1.1", - "drupal/upgrade_status": "^3.18", - "kint-php/kint": "^3.3", - "mglaman/drupal-check": "^1.4", - "previousnext/phpunit-finder": "^1.0@alpha", - "slevomat/coding-standard": "^7.0" + "symfony/http-client": "^5.4", + "vlucas/phpdotenv": "^5.5" }, "conflict": { "drupal/drupal": "*" @@ -192,41 +167,33 @@ "minimum-stability": "dev", "prefer-stable": true, "config": { - "sort-packages": true, "allow-plugins": { "composer/installers": true, + "drupal/core-composer-scaffold": true, + "drupal/core-project-message": true, + "phpstan/extension-installer": true, "dealerdirect/phpcodesniffer-composer-installer": true, - "drupal/console-extend-plugin": true, "cweagans/composer-patches": true, - "drupal/core-composer-scaffold": true, - "oomphinc/composer-installers-extender": true, "php-http/discovery": true, - "phpstan/extension-installer": true, - "drupal/core-project-message": true - } + "oomphinc/composer-installers-extender": true + }, + "sort-packages": true }, "extra": { "patches": { "drupal/clientside_validation": { - "core/jquery.once is required": "https://www.drupal.org/files/issues/2021-02-23/3200022-01.patch", - "Cientside validation errors revert to being output as a label in webform wizard pages with ajax enabled": "https://www.drupal.org/files/issues/2021-02-24/3110890-reroll-for-3.0.x.patch" + "core/jquery.once is required": "https://www.drupal.org/files/issues/2021-02-23/3200022-01.patch" }, "drupal/core": { "Render blocks in preview page": "https://www.drupal.org/files/issues/2019-10-03/3085364_2.patch", - "Provide options to sanitize filenames (transliterate, lowercase, replace whitespace, etc)": "https://www.drupal.org/files/issues/2021-07-26/2492171-311.patch", - "Provide link to latest revision of moderated entity": "https://www.drupal.org/files/issues/2021-11-29/2906455-34.patch", "User enable email exception": "https://www.drupal.org/files/issues/2023-05-19/user_email_exception-3355151-3.patch", "Expand menu_tree field sizes": "https://www.drupal.org/files/issues/2022-10-11/3106205-36.patch", - "Typeerror when adding page to book": "https://www.drupal.org/files/issues/2023-10-02/book_typeerror-3391035-1.patch", - "Inconsistent behaviour when adding a page to a book": "https://www.drupal.org/files/issues/2023-10-02/book_page_addition_bugfix-3391049-1.patch" + "Fix TypeError when adding book page": "https://www.drupal.org/files/issues/2023-10-02/book_typeerror-3391063-1.patch" }, "drupal/easy_install": { "Handle missing core version": "https://www.drupal.org/files/issues/2019-12-19/easy_install_core_version-3101883-0.patch", "non-existent service entity.manager": "https://www.drupal.org/files/issues/2020-12-08/3162621-4.patch" }, - "drupal/entityqueue": { - "Allow unique records only": "https://www.drupal.org/files/issues/2021-02-07/entity_queue_unique_records-1240856-3197148.patch" - }, "drupal/facets": { "Pass facet object onto child items": "https://www.drupal.org/files/issues/2019-11-13/child_item-3094143-2.patch" }, @@ -239,11 +206,8 @@ "drupal/hms_field": { "Drupal 9 compatability": "https://www.drupal.org/files/issues/2020-06-06/hms_field.1.x-dev.rector.patch" }, - "drupal/link_fix_absolute_urls": { - "Allow use of module on PHP 8": "https://git.drupalcode.org/project/link_fix_absolute_urls/-/merge_requests/1.diff" - }, "drupal/linkit": { - "Use aliased path": "https://www.drupal.org/files/issues/2022-08-16/linkit-2877535-link-shown-after-autocomplete-is-bare-41.patch" + "Show URL alias after autocomplete selection instead of internal route (e.g., /node/123)": "https://www.drupal.org/files/issues/2023-10-03/linkit-2877535-62.patch" }, "drupal/media_browser_responsive_images": { "Form alter applies for any media browser, not just image related ones": "https://www.drupal.org/files/issues/2019-12-17/media-browser-hook-checks-for-image-types.patch" @@ -253,23 +217,11 @@ "URL redirects listing only displays operations": "https://www.drupal.org/files/issues/2019-04-05/redirects_list_builder-3031125-9-d8.patch", "Fix ajax error when creating redirects": "https://www.drupal.org/files/issues/2020-12-14/validation-issue-3057250-29.patch" }, - "drupal/search_api_solr": { - "Specific languages undefined array key": "https://www.drupal.org/files/issues/2022-10-24/search_api_solr-empty-specific-languages-3314711-21.patch" - }, "drupal/scheduled_transitions": { "No scheduled revisions appear for migrated nodes": "https://www.drupal.org/files/issues/2021-11-01/scheduled_transitions_base_language_3091006_2x.patch" }, - "drupal/ultimate_cron": { - "Fix test function issue": "https://www.drupal.org/files/issues/2021-04-13/kernel_test-3208608-1.patch" - }, "drupal/readonlymode": { "Fatal typerror fix": "https://www.drupal.org/files/issues/2020-12-23/readonlymode-string_not_array-3115119-9.patch" - }, - "drupal/cookie_content_blocker": { - "Disable XSS for tag settings to allow HTML output": "https://gist.githubusercontent.com/omahm/eb99bc8278b57798a7d82bf06c27b8d1/raw/d9d75e06300a102b072dd8166f82ec381f211b9d/cookie_content_blocker_disable_xss" - }, - "drupal/google_tag": { - "aria-hidden attribute should not be used on noscript tag": "https://www.drupal.org/files/issues/2021-02-23/3199758-3.patch" } }, "drupal-scaffold": { @@ -328,7 +280,7 @@ " ", "", "Next steps:", - " * Install the site: https://www.drupal.org/docs/8/install", + " * Install the site: https://www.drupal.org/docs/installing-drupal", " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html", " * Get support: https://www.drupal.org/support", " * Get involved with the Drupal community:", @@ -338,9 +290,20 @@ ] } }, - "scripts": { - "post-package-update": [ - "Maestro\\Shell\\Events\\ComposerEventListener::postPackageUpdate" - ] + "require-dev": { + "dof-dss/maestro-hosting": "^1.0", + "dof-dss/maestro-shell": "^10.1", + "drupal/coder": "^8.3", + "drupal/core-dev": "^10.1", + "drupal/devel": "^5.1", + "drupal/easy_install_d10": "^10.0@dev", + "drupal/migrate_plus": "^6.0", + "drupal/migrate_tools": "^6.0", + "drupal/permissions_filter": "^1.3", + "drupal/stage_file_proxy": "^2.0", + "kint-php/kint": "^5.0", + "mglaman/drupal-check": "^1.4", + "previousnext/phpunit-finder": "^2.0", + "slevomat/coding-standard": "^8.13" } } diff --git a/composer.lock b/composer.lock index 0edd933bf..5c2426826 100644 --- a/composer.lock +++ b/composer.lock @@ -4,108 +4,40 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "cbcbc1d3b85ad61da19590205dcbffe6", + "content-hash": "5c55083d8e3054bac8f853f3220c7452", "packages": [ - { - "name": "alchemy/zippy", - "version": "0.4.9", - "source": { - "type": "git", - "url": "https://github.com/alchemy-fr/Zippy.git", - "reference": "59fbeefb9a249122867ef25e53addfcce31850d7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7", - "reference": "59fbeefb9a249122867ef25e53addfcce31850d7", - "shasum": "" - }, - "require": { - "doctrine/collections": "~1.0", - "php": ">=5.5", - "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0", - "symfony/polyfill-mbstring": "^1.3", - "symfony/process": "^2.1 || ^3.0 || ^4.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 || ^4.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" - ], - "support": { - "issues": "https://github.com/alchemy-fr/Zippy/issues", - "source": "https://github.com/alchemy-fr/Zippy/tree/master" - }, - "time": "2018-02-22T13:58:36+00:00" - }, { "name": "asm89/stack-cors", - "version": "1.3.0", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/asm89/stack-cors.git", - "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08" + "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08", - "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", + "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a", "shasum": "" }, "require": { - "php": ">=5.5.9", - "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0", - "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0" + "php": "^7.2|^8.0", + "symfony/http-foundation": "^4|^5|^6", + "symfony/http-kernel": "^4|^5|^6" }, "require-dev": { - "phpunit/phpunit": "^5.0 || ^4.8.10", - "squizlabs/php_codesniffer": "^2.3" + "phpunit/phpunit": "^7|^9", + "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2-dev" + "dev-master": "2.1-dev" } }, "autoload": { "psr-4": { - "Asm89\\Stack\\": "src/Asm89/Stack/" + "Asm89\\Stack\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -126,22 +58,22 @@ ], "support": { "issues": "https://github.com/asm89/stack-cors/issues", - "source": "https://github.com/asm89/stack-cors/tree/1.3.0" + "source": "https://github.com/asm89/stack-cors/tree/v2.1.1" }, - "time": "2019-12-24T22:41:47+00:00" + "time": "2022-01-18T09:12:03+00:00" }, { "name": "caxy/php-htmldiff", - "version": "v0.1.12", + "version": "v0.1.14", "source": { "type": "git", "url": "https://github.com/caxy/php-htmldiff.git", - "reference": "7fb8aa0ad77864f1d3604ae4a31af9cbabb91485" + "reference": "3f8ee7edda3d7c6d2e58a02d70a12d3242c84ea5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/7fb8aa0ad77864f1d3604ae4a31af9cbabb91485", - "reference": "7fb8aa0ad77864f1d3604ae4a31af9cbabb91485", + "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/3f8ee7edda3d7c6d2e58a02d70a12d3242c84ea5", + "reference": "3f8ee7edda3d7c6d2e58a02d70a12d3242c84ea5", "shasum": "" }, "require": { @@ -187,33 +119,45 @@ ], "support": { "issues": "https://github.com/caxy/php-htmldiff/issues", - "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.12" + "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.14" }, - "time": "2021-04-05T21:19:33+00:00" + "time": "2022-01-19T11:09:59+00:00" }, { "name": "chi-teck/drupal-code-generator", - "version": "1.33.1", + "version": "2.6.2", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388" + "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388", - "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/22ed1cc02dc47814e8239de577da541e9b9bd980", + "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980", "shasum": "" }, "require": { "ext-json": "*", - "php": ">=5.5.9", - "symfony/console": "^3.4 || ^4.0", - "symfony/filesystem": "^2.7 || ^3.4 || ^4.0", - "twig/twig": "^1.41 || ^2.12" + "php": ">=7.4", + "psr/log": "^1.1 || ^2.0 || ^3.0", + "symfony/console": "^4.4.15 || ^5.1 || ^6.0", + "symfony/filesystem": "^4.4 || ^5.1 || ^6", + "symfony/polyfill-php80": "^1.23", + "symfony/string": "^5.1 || ^6", + "twig/twig": "^2.14.11 || ^3.1" }, "conflict": { - "drush/drush": "< 10.3.2" + "squizlabs/php_codesniffer": "<3.6" + }, + "require-dev": { + "chi-teck/drupal-coder-extension": "^1.2", + "drupal/coder": "^8.3.14", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.4", + "squizlabs/php_codesniffer": "^3.5", + "symfony/var-dumper": "^5.2 || ^6.0", + "symfony/yaml": "^5.2 || ^6.0" }, "bin": [ "bin/dcg" @@ -221,13 +165,10 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { - "files": [ - "src/bootstrap.php" - ], "psr-4": { "DrupalCodeGenerator\\": "src" } @@ -239,22 +180,22 @@ "description": "Drupal code generator", "support": { "issues": "https://github.com/Chi-teck/drupal-code-generator/issues", - "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.33.1" + "source": "https://github.com/Chi-teck/drupal-code-generator/tree/2.6.2" }, - "time": "2020-12-05T05:59:11+00:00" + "time": "2022-11-11T15:34:04+00:00" }, { "name": "clue/stream-filter", - "version": "v1.5.0", + "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/clue/stream-filter.git", - "reference": "aeb7d8ea49c7963d3b581378955dbf5bc49aa320" + "reference": "d6169430c7731d8509da7aecd0af756a5747b78e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/clue/stream-filter/zipball/aeb7d8ea49c7963d3b581378955dbf5bc49aa320", - "reference": "aeb7d8ea49c7963d3b581378955dbf5bc49aa320", + "url": "https://api.github.com/repos/clue/stream-filter/zipball/d6169430c7731d8509da7aecd0af756a5747b78e", + "reference": "d6169430c7731d8509da7aecd0af756a5747b78e", "shasum": "" }, "require": { @@ -295,7 +236,7 @@ ], "support": { "issues": "https://github.com/clue/stream-filter/issues", - "source": "https://github.com/clue/stream-filter/tree/v1.5.0" + "source": "https://github.com/clue/stream-filter/tree/v1.6.0" }, "funding": [ { @@ -307,24 +248,24 @@ "type": "github" } ], - "time": "2020-10-02T12:38:20+00:00" + "time": "2022-02-21T13:15:14+00:00" }, { "name": "commerceguys/addressing", - "version": "v1.4.1", + "version": "v1.4.2", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "8b1bcd45971733e8f4224e539cb92838f18c4d06" + "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/8b1bcd45971733e8f4224e539cb92838f18c4d06", - "reference": "8b1bcd45971733e8f4224e539cb92838f18c4d06", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", + "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", "shasum": "" }, "require": { - "doctrine/collections": "^1.2", + "doctrine/collections": "^1.2 || ^2.0", "php": ">=7.3" }, "require-dev": { @@ -369,45 +310,43 @@ ], "support": { "issues": "https://github.com/commerceguys/addressing/issues", - "source": "https://github.com/commerceguys/addressing/tree/v1.4.1" + "source": "https://github.com/commerceguys/addressing/tree/v1.4.2" }, - "time": "2022-08-09T11:42:51+00:00" + "time": "2023-02-15T10:11:14+00:00" }, { "name": "composer/installers", - "version": "v1.12.0", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19" + "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19", - "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19", + "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35", + "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0" - }, - "replace": { - "roundcube/plugin-installer": "*", - "shama/baton": "*" + "composer-plugin-api": "^1.0 || ^2.0", + "php": "^7.2 || ^8.0" }, "require-dev": { "composer/composer": "1.6.* || ^2.0", "composer/semver": "^1 || ^3", "phpstan/phpstan": "^0.12.55", "phpstan/phpstan-phpunit": "^0.12.16", - "symfony/phpunit-bridge": "^4.2 || ^5", - "symfony/process": "^2.3" + "symfony/phpunit-bridge": "^5.3", + "symfony/process": "^5" }, "type": "composer-plugin", "extra": { "class": "Composer\\Installers\\Plugin", "branch-alias": { - "dev-main": "1.x-dev" - } + "dev-main": "2.x-dev" + }, + "plugin-modifies-install-path": true }, "autoload": { "psr-4": { @@ -428,7 +367,6 @@ "description": "A multi-framework Composer library installer", "homepage": "https://composer.github.io/installers/", "keywords": [ - "Craft", "Dolibarr", "Eliasis", "Hurad", @@ -449,7 +387,6 @@ "Whmcs", "WolfCMS", "agl", - "aimeos", "annotatecms", "attogram", "bitrix", @@ -468,7 +405,6 @@ "grav", "installer", "itop", - "joomla", "known", "kohana", "laravel", @@ -477,6 +413,7 @@ "magento", "majima", "mako", + "matomo", "mediawiki", "miaoxing", "modulework", @@ -496,9 +433,7 @@ "silverstripe", "sydes", "sylius", - "symfony", "tastyigniter", - "typo3", "wordpress", "yawik", "zend", @@ -506,7 +441,7 @@ ], "support": { "issues": "https://github.com/composer/installers/issues", - "source": "https://github.com/composer/installers/tree/v1.12.0" + "source": "https://github.com/composer/installers/tree/v2.2.0" }, "funding": [ { @@ -522,7 +457,7 @@ "type": "tidelift" } ], - "time": "2021-09-13T08:19:44+00:00" + "time": "2022-08-20T06:45:11+00:00" }, { "name": "composer/semver", @@ -607,25 +542,25 @@ }, { "name": "consolidation/annotated-command", - "version": "4.6.1", + "version": "4.9.1", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "76835d35fcb0b879170129e82adfa1536b72921f" + "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/76835d35fcb0b879170129e82adfa1536b72921f", - "reference": "76835d35fcb0b879170129e82adfa1536b72921f", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9", + "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9", "shasum": "" }, "require": { - "consolidation/output-formatters": "^4.1.1", + "consolidation/output-formatters": "^4.3.1", "php": ">=7.1.3", - "psr/log": "^1|^2|^3", - "symfony/console": "^4.4.8|^5|^6", - "symfony/event-dispatcher": "^4.4.8|^5|^6", - "symfony/finder": "^4.4.8|^5|^6" + "psr/log": "^1 || ^2 || ^3", + "symfony/console": "^4.4.8 || ^5 || ^6", + "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6", + "symfony/finder": "^4.4.8 || ^5 || ^6" }, "require-dev": { "composer-runtime-api": "^2.0", @@ -657,71 +592,46 @@ "description": "Initialize Symfony Console commands from annotated command class methods.", "support": { "issues": "https://github.com/consolidation/annotated-command/issues", - "source": "https://github.com/consolidation/annotated-command/tree/4.6.1" + "source": "https://github.com/consolidation/annotated-command/tree/4.9.1" }, - "time": "2022-11-09T18:31:17+00:00" + "time": "2023-05-20T04:19:01+00:00" }, { "name": "consolidation/config", - "version": "1.2.1", + "version": "2.1.2", "source": { "type": "git", "url": "https://github.com/consolidation/config.git", - "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1" + "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1", - "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1", + "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae", + "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", - "grasmash/expander": "^1", - "php": ">=5.4.0" + "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", + "grasmash/expander": "^2.0.1 || ^3", + "php": ">=7.1.3", + "symfony/event-dispatcher": "^4 || ^5 || ^6" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^1", - "phpunit/phpunit": "^5", - "squizlabs/php_codesniffer": "2.*", - "symfony/console": "^2.5|^3|^4", - "symfony/yaml": "^2.8.11|^3|^4" + "ext-json": "*", + "phpunit/phpunit": ">=7.5.20", + "squizlabs/php_codesniffer": "^3", + "symfony/console": "^4 || ^5 || ^6", + "symfony/yaml": "^4 || ^5 || ^6", + "yoast/phpunit-polyfills": "^1" }, "suggest": { + "symfony/event-dispatcher": "Required to inject configuration into Command options", "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader" }, "type": "library", "extra": { - "scenarios": { - "symfony4": { - "require-dev": { - "symfony/console": "^4.0" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - }, - "symfony2": { - "require-dev": { - "symfony/console": "^2.8", - "symfony/event-dispatcher": "^2.8", - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - } - } - }, "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -742,57 +652,37 @@ "description": "Provide configuration services for a commandline tool.", "support": { "issues": "https://github.com/consolidation/config/issues", - "source": "https://github.com/consolidation/config/tree/master" + "source": "https://github.com/consolidation/config/tree/2.1.2" }, - "time": "2019-03-03T19:37:04+00:00" + "time": "2022-10-06T17:48:03+00:00" }, { "name": "consolidation/filter-via-dot-access-data", - "version": "1.0.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/consolidation/filter-via-dot-access-data.git", - "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6" + "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6", - "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6", + "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b", + "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", - "php": ">=5.5.0" + "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0", + "php": ">=7.1.3" }, "require-dev": { - "consolidation/robo": "^1.2.3", - "g1a/composer-test-scenarios": "^3", - "knplabs/github-api": "^2.7", - "php-coveralls/php-coveralls": "^1", - "php-http/guzzle6-adapter": "^1.1", - "phpunit/phpunit": "^5", - "squizlabs/php_codesniffer": "^2.8", - "symfony/console": "^2.8|^3|^4" + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", "extra": { - "scenarios": { - "phpunit5": { - "require-dev": { - "phpunit/phpunit": "^5.7.27" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.6.33" - } - } - } - }, "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -812,28 +702,28 @@ ], "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.", "support": { - "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0" + "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2" }, - "time": "2019-01-18T06:05:07+00:00" + "time": "2021-12-30T03:56:08+00:00" }, { "name": "consolidation/log", - "version": "2.0.2", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1" + "reference": "caaad9d70dae54eb49002666f000e3c607066878" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1", - "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1", + "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878", + "reference": "caaad9d70dae54eb49002666f000e3c607066878", "shasum": "" }, "require": { - "php": ">=7.1.3", - "psr/log": "^1.0", - "symfony/console": "^4|^5" + "php": ">=8.0.0", + "psr/log": "^3", + "symfony/console": "^5 || ^6" }, "require-dev": { "phpunit/phpunit": ">=7.5.20", @@ -864,47 +754,42 @@ "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.", "support": { "issues": "https://github.com/consolidation/log/issues", - "source": "https://github.com/consolidation/log/tree/2.0.2" + "source": "https://github.com/consolidation/log/tree/3.0.0" }, - "time": "2020-12-10T16:26:23+00:00" + "time": "2022-04-05T16:53:32+00:00" }, { "name": "consolidation/output-formatters", - "version": "4.2.3", + "version": "4.3.2", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "cbb50cc86775f14972003f797b61e232788bee1f" + "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/cbb50cc86775f14972003f797b61e232788bee1f", - "reference": "cbb50cc86775f14972003f797b61e232788bee1f", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58", + "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58", "shasum": "" }, "require": { "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", "php": ">=7.1.3", - "symfony/console": "^4|^5|^6", - "symfony/finder": "^4|^5|^6" + "symfony/console": "^4 || ^5 || ^6", + "symfony/finder": "^4 || ^5 || ^6" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", - "phpunit/phpunit": ">=7", + "phpunit/phpunit": "^7 || ^8 || ^9", "squizlabs/php_codesniffer": "^3", - "symfony/var-dumper": "^4|^5|^6", - "symfony/yaml": "^4|^5|^6", - "yoast/phpunit-polyfills": "^0.2.0" + "symfony/var-dumper": "^4 || ^5 || ^6", + "symfony/yaml": "^4 || ^5 || ^6", + "yoast/phpunit-polyfills": "^1" }, "suggest": { "symfony/var-dumper": "For using the var_dump formatter" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "4.x-dev" - } - }, "autoload": { "psr-4": { "Consolidation\\OutputFormatters\\": "src" @@ -923,89 +808,61 @@ "description": "Format text by applying transformations provided by plug-in formatters.", "support": { "issues": "https://github.com/consolidation/output-formatters/issues", - "source": "https://github.com/consolidation/output-formatters/tree/4.2.3" + "source": "https://github.com/consolidation/output-formatters/tree/4.3.2" }, - "time": "2022-10-17T04:01:40+00:00" + "time": "2023-07-06T04:45:41+00:00" }, { "name": "consolidation/robo", - "version": "2.2.2", + "version": "4.0.6", "source": { "type": "git", - "url": "https://github.com/consolidation/Robo.git", - "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c" + "url": "https://github.com/consolidation/robo.git", + "reference": "55a272370940607649e5c46eb173c5c54f7c166d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/b365df174d9cfb0f5814e4f3275a1c558b17bc4c", - "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c", + "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d", + "reference": "55a272370940607649e5c46eb173c5c54f7c166d", "shasum": "" }, "require": { - "consolidation/annotated-command": "^4.2.1", - "consolidation/config": "^1.2.1|^2", - "consolidation/log": "^1.1.1|^2.0.1", - "consolidation/output-formatters": "^4.1.1", - "consolidation/self-update": "^1.2", - "league/container": "^2.4.1", - "php": ">=7.1.3", - "symfony/console": "^4.4.11|^5", - "symfony/event-dispatcher": "^4.4.11|^5", - "symfony/filesystem": "^4.4.11|^5", - "symfony/finder": "^4.4.11|^5", - "symfony/process": "^4.4.11|^5", - "symfony/yaml": "^4.0 || ^5.0" + "consolidation/annotated-command": "^4.8.1", + "consolidation/config": "^2.0.1", + "consolidation/log": "^2.0.2 || ^3", + "consolidation/output-formatters": "^4.1.2", + "consolidation/self-update": "^2.0", + "league/container": "^3.3.1 || ^4.0", + "php": ">=8.0", + "phpowermove/docblock": "^4.0", + "symfony/console": "^6", + "symfony/event-dispatcher": "^6", + "symfony/filesystem": "^6", + "symfony/finder": "^6", + "symfony/process": "^6", + "symfony/yaml": "^6" }, "conflict": { "codegyre/robo": "*" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", "natxet/cssmin": "3.0.4", "patchwork/jsqueeze": "^2", "pear/archive_tar": "^1.4.4", - "php-coveralls/php-coveralls": "^2.2", - "phpdocumentor/reflection-docblock": "^4.3.2", - "phpunit/phpunit": "^6.5.14", - "squizlabs/php_codesniffer": "^3" + "phpunit/phpunit": "^7.5.20 || ^8", + "squizlabs/php_codesniffer": "^3.6", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { - "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch", "natxet/cssmin": "For minifying CSS files in taskMinify", "patchwork/jsqueeze": "For minifying JS files in taskMinify", - "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively." + "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.", + "totten/lurkerlite": "For monitoring filesystem changes in taskWatch" }, "bin": [ "robo" ], "type": "library", - "extra": { - "scenarios": { - "symfony4": { - "require": { - "symfony/console": "^4.4.11", - "symfony/event-dispatcher": "^4.4.11", - "symfony/filesystem": "^4.4.11", - "symfony/finder": "^4.4.11", - "symfony/process": "^4.4.11", - "phpunit/phpunit": "^6", - "nikic/php-parser": "^2" - }, - "remove": [ - "codeception/phpunit-wrapper" - ], - "config": { - "platform": { - "php": "7.1.3" - } - } - } - }, - "branch-alias": { - "dev-master": "2.x-dev", - "dev-main": "2.x-dev" - } - }, "autoload": { "psr-4": { "Robo\\": "src" @@ -1023,29 +880,30 @@ ], "description": "Modern task runner", "support": { - "issues": "https://github.com/consolidation/Robo/issues", - "source": "https://github.com/consolidation/Robo/tree/2.2.2" + "issues": "https://github.com/consolidation/robo/issues", + "source": "https://github.com/consolidation/robo/tree/4.0.6" }, - "time": "2020-12-18T22:09:18+00:00" + "time": "2023-04-30T21:49:04+00:00" }, { "name": "consolidation/self-update", - "version": "1.2.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/consolidation/self-update.git", - "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4" + "reference": "972a1016761c9b63314e040836a12795dff6953a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4", - "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4", + "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a", + "reference": "972a1016761c9b63314e040836a12795dff6953a", "shasum": "" }, "require": { + "composer/semver": "^3.2", "php": ">=5.5.0", - "symfony/console": "^2.8|^3|^4|^5", - "symfony/filesystem": "^2.5|^3|^4|^5" + "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6", + "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6" }, "bin": [ "scripts/release" @@ -1053,7 +911,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -1078,28 +936,29 @@ "description": "Provides a self:update command for Symfony Console applications.", "support": { "issues": "https://github.com/consolidation/self-update/issues", - "source": "https://github.com/consolidation/self-update/tree/1.2.0" + "source": "https://github.com/consolidation/self-update/tree/2.2.0" }, - "time": "2020-04-13T02:49:20+00:00" + "time": "2023-03-18T01:37:41+00:00" }, { "name": "consolidation/site-alias", - "version": "3.1.0", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c" + "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", - "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5", + "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1|^2", - "php": ">=5.5.0", - "symfony/finder": "~2.3|^3|^4.4|^5" + "consolidation/config": "^1.2.1 || ^2", + "php": ">=7.4", + "symfony/filesystem": "^5.4 || ^6", + "symfony/finder": "^5 || ^6" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", @@ -1111,7 +970,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.x-dev" + "dev-main": "4.x-dev" } }, "autoload": { @@ -1136,40 +995,39 @@ "description": "Manage alias records for local and remote sites.", "support": { "issues": "https://github.com/consolidation/site-alias/issues", - "source": "https://github.com/consolidation/site-alias/tree/3.1.0" + "source": "https://github.com/consolidation/site-alias/tree/4.0.1" }, - "time": "2021-02-20T20:03:10+00:00" + "time": "2023-04-29T17:18:10+00:00" }, { "name": "consolidation/site-process", - "version": "4.1.0", + "version": "5.2.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c" + "reference": "6c44638d7af8a8b4abe12c3180701243f480539d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/ef57711d7049f7606ce936ded16ad93f1ad7f02c", - "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d", + "reference": "6c44638d7af8a8b4abe12c3180701243f480539d", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1|^2", - "consolidation/site-alias": "^3", - "php": ">=7.1.3", - "symfony/console": "^2.8.52|^3|^4.4|^5", - "symfony/process": "^4.3.4" + "consolidation/config": "^2", + "consolidation/site-alias": "^3 || ^4", + "php": ">=8.0.14", + "symfony/console": "^5.4 || ^6", + "symfony/process": "^6" }, "require-dev": { - "phpunit/phpunit": "^7.5.20|^8.5.14", - "squizlabs/php_codesniffer": "^3", - "yoast/phpunit-polyfills": "^0.2.0" + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "4.x-dev" + "dev-main": "5.x-dev" } }, "autoload": { @@ -1194,58 +1052,22 @@ "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.", "support": { "issues": "https://github.com/consolidation/site-process/issues", - "source": "https://github.com/consolidation/site-process/tree/4.1.0" - }, - "time": "2021-02-21T02:53:33+00:00" - }, - { - "name": "container-interop/container-interop", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/container-interop/container-interop.git", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "shasum": "" - }, - "require": { - "psr/container": "^1.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Interop\\Container\\": "src/Interop/Container/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", - "homepage": "https://github.com/container-interop/container-interop", - "support": { - "issues": "https://github.com/container-interop/container-interop/issues", - "source": "https://github.com/container-interop/container-interop/tree/master" + "source": "https://github.com/consolidation/site-process/tree/5.2.0" }, - "abandoned": "psr/container", - "time": "2017-02-14T19:40:03+00:00" + "time": "2022-12-06T17:57:16+00:00" }, { "name": "cweagans/composer-patches", - "version": "1.7.2", + "version": "1.7.3", "source": { "type": "git", "url": "https://github.com/cweagans/composer-patches.git", - "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871" + "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e9969cfc0796e6dea9b4e52f77f18e1065212871", - "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db", + "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db", "shasum": "" }, "require": { @@ -1278,34 +1100,37 @@ "description": "Provides a way to patch Composer packages.", "support": { "issues": "https://github.com/cweagans/composer-patches/issues", - "source": "https://github.com/cweagans/composer-patches/tree/1.7.2" + "source": "https://github.com/cweagans/composer-patches/tree/1.7.3" }, - "time": "2022-01-25T19:21:20+00:00" + "time": "2022-12-20T22:53:13+00:00" }, { "name": "davedevelopment/stiphle", - "version": "0.9.2", + "version": "0.9.4", "source": { "type": "git", "url": "https://github.com/davedevelopment/stiphle.git", - "reference": "76151e6474741adee258c1a4860a0460e319563b" + "reference": "5d1c244f0525d265e231a65db538b74eb5483768" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/76151e6474741adee258c1a4860a0460e319563b", - "reference": "76151e6474741adee258c1a4860a0460e319563b", + "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/5d1c244f0525d265e231a65db538b74eb5483768", + "reference": "5d1c244f0525d265e231a65db538b74eb5483768", "shasum": "" }, "require": { - "php": ">=5.3.1" + "php": "^5.6.0|^7.0|^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.5", - "predis/predis": "^1.1" + "doctrine/cache": "^1.0", + "phpunit/phpunit": "^6.5|^7.5|^8.4", + "predis/predis": "^1.1", + "zendframework/zend-cache": "^2.8" }, "suggest": { "doctrine/cache": "~1.0", - "predis/predis": "~1.1" + "predis/predis": "~1.1", + "zendframework/zend-cache": "^2.8" }, "type": "library", "autoload": { @@ -1334,44 +1159,43 @@ ], "support": { "issues": "https://github.com/davedevelopment/stiphle/issues", - "source": "https://github.com/davedevelopment/stiphle/tree/0.9.2" + "source": "https://github.com/davedevelopment/stiphle/tree/0.9.4" }, - "time": "2017-08-16T07:58:18+00:00" + "time": "2022-11-25T16:30:20+00:00" }, { - "name": "dflydev/dot-access-configuration", - "version": "v1.0.3", + "name": "dflydev/dot-access-data", + "version": "v3.0.2", "source": { "type": "git", - "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git", - "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49" + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "f41715465d65213d644d3141a6a93081be5d3549" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49", - "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", + "reference": "f41715465d65213d644d3141a6a93081be5d3549", "shasum": "" }, "require": { - "dflydev/dot-access-data": "1.*", - "dflydev/placeholder-resolver": "1.*", - "php": ">=5.3.2" + "php": "^7.1 || ^8.0" }, "require-dev": { - "symfony/yaml": "~2.1" - }, - "suggest": { - "symfony/yaml": "Required for using the YAML Configuration Builders" + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "3.x-dev" } }, "autoload": { - "psr-0": { - "Dflydev\\DotAccessConfiguration": "src" + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -1388,46 +1212,67 @@ "name": "Beau Simensen", "email": "beau@dflydev.com", "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" } ], - "description": "Given a deep data structure representing a configuration, access configuration by dot notation.", - "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration", + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", "keywords": [ - "config", - "configuration" + "access", + "data", + "dot", + "notation" ], "support": { - "issues": "https://github.com/dflydev/dflydev-dot-access-configuration/issues", - "source": "https://github.com/dflydev/dflydev-dot-access-configuration/tree/master" + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" }, - "time": "2018-09-08T23:00:17+00:00" + "time": "2022-10-27T11:44:00+00:00" }, { - "name": "dflydev/dot-access-data", - "version": "v1.1.0", + "name": "doctrine/annotations", + "version": "1.14.3", "source": { "type": "git", - "url": "https://github.com/dflydev/dflydev-dot-access-data.git", - "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a" + "url": "https://github.com/doctrine/annotations.git", + "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a", - "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", + "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", "shasum": "" }, "require": { - "php": ">=5.3.2" + "doctrine/lexer": "^1 || ^2", + "ext-tokenizer": "*", + "php": "^7.1 || ^8.0", + "psr/cache": "^1 || ^2 || ^3" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } + "require-dev": { + "doctrine/cache": "^1.11 || ^2.0", + "doctrine/coding-standard": "^9 || ^10", + "phpstan/phpstan": "~1.4.10 || ^1.8.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "symfony/cache": "^4.4 || ^5.4 || ^6", + "vimeo/psalm": "^4.10" + }, + "suggest": { + "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations" }, + "type": "library", "autoload": { - "psr-0": { - "Dflydev\\DotAccessData": "src" + "psr-4": { + "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" } }, "notification-url": "https://packagist.org/downloads/", @@ -1436,61 +1281,69 @@ ], "authors": [ { - "name": "Dragonfly Development Inc.", - "email": "info@dflydev.com", - "homepage": "http://dflydev.com" + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" }, { - "name": "Beau Simensen", - "email": "beau@dflydev.com", - "homepage": "http://beausimensen.com" + "name": "Roman Borschel", + "email": "roman@code-factory.org" }, { - "name": "Carlos Frutos", - "email": "carlos@kiwing.it", - "homepage": "https://github.com/cfrutos" + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" } ], - "description": "Given a deep data structure, access data by dot notation.", - "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "description": "Docblock Annotations Parser", + "homepage": "https://www.doctrine-project.org/projects/annotations.html", "keywords": [ - "access", - "data", - "dot", - "notation" + "annotations", + "docblock", + "parser" ], "support": { - "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", - "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master" + "issues": "https://github.com/doctrine/annotations/issues", + "source": "https://github.com/doctrine/annotations/tree/1.14.3" }, - "time": "2017-01-20T21:14:22+00:00" + "time": "2023-02-01T09:20:38+00:00" }, { - "name": "dflydev/placeholder-resolver", - "version": "v1.0.2", + "name": "doctrine/collections", + "version": "2.1.4", "source": { "type": "git", - "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git", - "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356" + "url": "https://github.com/doctrine/collections.git", + "reference": "72328a11443a0de79967104ad36ba7b30bded134" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356", - "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356", + "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134", + "reference": "72328a11443a0de79967104ad36ba7b30bded134", "shasum": "" }, "require": { - "php": ">=5.3.2" + "doctrine/deprecations": "^1", + "php": "^8.1" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } + "require-dev": { + "doctrine/coding-standard": "^12", + "ext-json": "*", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^5.11" }, + "type": "library", "autoload": { - "psr-0": { - "Dflydev\\PlaceholderResolver": "src" + "psr-4": { + "Doctrine\\Common\\Collections\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1499,151 +1352,8 @@ ], "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" - ], - "support": { - "issues": "https://github.com/dflydev/dflydev-placeholder-resolver/issues", - "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.2" - }, - "time": "2012-10-28T21:08:28+00:00" - }, - { - "name": "dinbror/blazy", - "version": "1.8.2", - "dist": { - "type": "zip", - "url": "https://github.com/dinbror/blazy/archive/1.8.2.zip" - }, - "require": { - "composer/installers": "^1.2.0" - }, - "type": "drupal-library" - }, - { - "name": "doctrine/annotations", - "version": "1.13.3", - "source": { - "type": "git", - "url": "https://github.com/doctrine/annotations.git", - "reference": "648b0343343565c4a056bfc8392201385e8d89f0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0", - "reference": "648b0343343565c4a056bfc8392201385e8d89f0", - "shasum": "" - }, - "require": { - "doctrine/lexer": "1.*", - "ext-tokenizer": "*", - "php": "^7.1 || ^8.0", - "psr/cache": "^1 || ^2 || ^3" - }, - "require-dev": { - "doctrine/cache": "^1.11 || ^2.0", - "doctrine/coding-standard": "^6.0 || ^8.1", - "phpstan/phpstan": "^1.4.10 || ^1.8.0", - "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5", - "symfony/cache": "^4.4 || ^5.2", - "vimeo/psalm": "^4.10" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "Docblock Annotations Parser", - "homepage": "https://www.doctrine-project.org/projects/annotations.html", - "keywords": [ - "annotations", - "docblock", - "parser" - ], - "support": { - "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/1.13.3" - }, - "time": "2022-07-02T10:48:51+00:00" - }, - { - "name": "doctrine/collections", - "version": "1.8.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/collections.git", - "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e", - "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e", - "shasum": "" - }, - "require": { - "doctrine/deprecations": "^0.5.3 || ^1", - "php": "^7.1.3 || ^8.0" - }, - "require-dev": { - "doctrine/coding-standard": "^9.0 || ^10.0", - "phpstan/phpstan": "^1.4.8", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5", - "vimeo/psalm": "^4.22" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" }, { "name": "Roman Borschel", @@ -1672,22 +1382,36 @@ ], "support": { "issues": "https://github.com/doctrine/collections/issues", - "source": "https://github.com/doctrine/collections/tree/1.8.0" + "source": "https://github.com/doctrine/collections/tree/2.1.4" }, - "time": "2022-09-01T20:12:10+00:00" + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections", + "type": "tidelift" + } + ], + "time": "2023-10-03T09:22:33+00:00" }, { "name": "doctrine/deprecations", - "version": "v1.1.1", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3" + "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3", - "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931", + "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931", "shasum": "" }, "require": { @@ -1719,37 +1443,39 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/v1.1.1" + "source": "https://github.com/doctrine/deprecations/tree/1.1.2" }, - "time": "2023-06-03T09:27:29+00:00" + "time": "2023-09-27T20:04:15+00:00" }, { "name": "doctrine/lexer", - "version": "1.2.3", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229" + "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229", - "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", + "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", "shasum": "" }, "require": { + "doctrine/deprecations": "^1.0", "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^9.0", + "doctrine/coding-standard": "^9 || ^10", "phpstan/phpstan": "^1.3", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.11" + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^4.11 || ^5.0" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + "Doctrine\\Common\\Lexer\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1781,7 +1507,7 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/1.2.3" + "source": "https://github.com/doctrine/lexer/tree/2.1.0" }, "funding": [ { @@ -1797,102 +1523,25 @@ "type": "tidelift" } ], - "time": "2022-02-28T11:07:21+00:00" - }, - { - "name": "doctrine/reflection", - "version": "1.2.4", - "source": { - "type": "git", - "url": "https://github.com/doctrine/reflection.git", - "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/reflection/zipball/6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7", - "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7", - "shasum": "" - }, - "require": { - "doctrine/annotations": "^1.0 || ^2.0", - "ext-tokenizer": "*", - "php": "^7.1 || ^8.0" - }, - "conflict": { - "doctrine/common": "<2.9" - }, - "require-dev": { - "doctrine/coding-standard": "^9", - "doctrine/common": "^3.3", - "phpstan/phpstan": "^1.4.10", - "phpstan/phpstan-phpunit": "^1", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Common\\": "lib/Doctrine/Common" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - }, - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - } - ], - "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.", - "homepage": "https://www.doctrine-project.org/projects/reflection.html", - "keywords": [ - "reflection", - "static" - ], - "support": { - "issues": "https://github.com/doctrine/reflection/issues", - "source": "https://github.com/doctrine/reflection/tree/1.2.4" - }, - "abandoned": "roave/better-reflection", - "time": "2023-07-27T18:11:59+00:00" + "time": "2022-12-14T08:49:07+00:00" }, { "name": "dof-dss/nicsdru_origins_modules", - "version": "9.1.0", + "version": "10.1.3", "source": { "type": "git", "url": "https://github.com/dof-dss/nicsdru_origins_modules.git", - "reference": "bac1281be6ad405cc48ec6bd350c21007fc43aeb" + "reference": "9d39a20d1eb2c142ba55003fbe848b0f3dd20693" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dof-dss/nicsdru_origins_modules/zipball/bac1281be6ad405cc48ec6bd350c21007fc43aeb", - "reference": "bac1281be6ad405cc48ec6bd350c21007fc43aeb", + "url": "https://api.github.com/repos/dof-dss/nicsdru_origins_modules/zipball/9d39a20d1eb2c142ba55003fbe848b0f3dd20693", + "reference": "9d39a20d1eb2c142ba55003fbe848b0f3dd20693", "shasum": "" }, "require": { - "composer/installers": "^1.6" + "composer/installers": "^2.0", + "drupal/core": "^10" }, "type": "drupal-module", "notification-url": "https://packagist.org/downloads/", @@ -1902,66 +1551,26 @@ "description": "Generic modules for DOF-DSS Drupal sites", "support": { "issues": "https://github.com/dof-dss/nicsdru_origins_modules/issues", - "source": "https://github.com/dof-dss/nicsdru_origins_modules/tree/9.1.0" - }, - "time": "2023-09-14T10:13:35+00:00" - }, - { - "name": "dof-dss/nicsdru_origins_profile", - "version": "0.1.11", - "source": { - "type": "git", - "url": "https://github.com/dof-dss/nicsdru_origins_profile.git", - "reference": "3e8c2a39342089e36d11bfd2fc4a3ef1dfab25ee" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dof-dss/nicsdru_origins_profile/zipball/3e8c2a39342089e36d11bfd2fc4a3ef1dfab25ee", - "reference": "3e8c2a39342089e36d11bfd2fc4a3ef1dfab25ee", - "shasum": "" - }, - "require": { - "dof-dss/nicsdru_origins_modules": "*", - "drupal/address": "^1.7", - "drupal/admin_toolbar": "^2.2", - "drupal/adminimal_theme": "^1.5", - "drupal/ctools": "^3.2", - "drupal/eu_cookie_compliance": "^1.8", - "drupal/handy_cache_tags": "^1.0", - "drupal/layout_builder_modal": "^1.0@alpha", - "drupal/metatag": "^1.10", - "drupal/pathauto": "^1.4", - "drupal/redirect": "^1.4", - "drupal/simple_sitemap": "^3.3", - "drupal/simplei": "^1.1", - "drupal/token": "^1.5", - "drupal/token_filter": "^1.1", - "drupal/views_custom_cache_tag": "^1.1" - }, - "type": "drupal-profile", - "notification-url": "https://packagist.org/downloads/", - "description": "Drupal install profile to provide common functionality for NICS websites", - "support": { - "source": "https://github.com/dof-dss/nicsdru_origins_profile/tree/0.1.11" + "source": "https://github.com/dof-dss/nicsdru_origins_modules/tree/10.1.3" }, - "time": "2021-04-21T10:20:46+00:00" + "time": "2023-10-17T13:28:43+00:00" }, { "name": "dof-dss/nicsdru_unity_modules", - "version": "9.1.1", + "version": "10.1.4", "source": { "type": "git", "url": "https://github.com/dof-dss/nicsdru_unity_modules.git", - "reference": "bebf4360f1e41cbff700f652ae8ea0729b9e71bf" + "reference": "e56bfa53042a233658f50faaca24a114c453a524" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dof-dss/nicsdru_unity_modules/zipball/bebf4360f1e41cbff700f652ae8ea0729b9e71bf", - "reference": "bebf4360f1e41cbff700f652ae8ea0729b9e71bf", + "url": "https://api.github.com/repos/dof-dss/nicsdru_unity_modules/zipball/e56bfa53042a233658f50faaca24a114c453a524", + "reference": "e56bfa53042a233658f50faaca24a114c453a524", "shasum": "" }, "require": { - "composer/installers": "^1.9" + "composer/installers": "^2.0" }, "type": "drupal-module", "notification-url": "https://packagist.org/downloads/", @@ -1971,26 +1580,26 @@ "description": "Custom modules available to all Unity sites.", "support": { "issues": "https://github.com/dof-dss/nicsdru_unity_modules/issues", - "source": "https://github.com/dof-dss/nicsdru_unity_modules/tree/10.1.1" + "source": "https://github.com/dof-dss/nicsdru_unity_modules/tree/10.1.4" }, - "time": "2023-08-21T15:24:06+00:00" + "time": "2023-10-24T15:48:05+00:00" }, { "name": "dof-dss/nicsdru_unity_profile", - "version": "9.1.1", + "version": "10.1.2", "source": { "type": "git", "url": "https://github.com/dof-dss/nicsdru_unity_profile.git", - "reference": "7bf3208620a65f46eb623e8c3571728337ad662e" + "reference": "683d98b61661ac48c11d6e2c36a6b9a87cac583b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dof-dss/nicsdru_unity_profile/zipball/7bf3208620a65f46eb623e8c3571728337ad662e", - "reference": "7bf3208620a65f46eb623e8c3571728337ad662e", + "url": "https://api.github.com/repos/dof-dss/nicsdru_unity_profile/zipball/683d98b61661ac48c11d6e2c36a6b9a87cac583b", + "reference": "683d98b61661ac48c11d6e2c36a6b9a87cac583b", "shasum": "" }, "require": { - "composer/installers": "^1.9" + "composer/installers": "^2.0" }, "type": "drupal-profile", "notification-url": "https://packagist.org/downloads/", @@ -2000,22 +1609,22 @@ "description": "Custom install profile used by all Unity sites", "support": { "issues": "https://github.com/dof-dss/nicsdru_unity_profile/issues", - "source": "https://github.com/dof-dss/nicsdru_unity_profile/tree/10.1.1" + "source": "https://github.com/dof-dss/nicsdru_unity_profile/tree/10.1.2" }, - "time": "2023-06-28T12:31:39+00:00" + "time": "2023-10-17T13:29:14+00:00" }, { "name": "dof-dss/nicsdru_unity_theme", - "version": "9.1.1", + "version": "10.1.2", "source": { "type": "git", "url": "https://github.com/dof-dss/nicsdru_unity_theme.git", - "reference": "88058ca80be5ce15b128b3ce4d39537fd0c63439" + "reference": "ad455e555aca9629e8b3805aebac91b31c2d61c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dof-dss/nicsdru_unity_theme/zipball/88058ca80be5ce15b128b3ce4d39537fd0c63439", - "reference": "88058ca80be5ce15b128b3ce4d39537fd0c63439", + "url": "https://api.github.com/repos/dof-dss/nicsdru_unity_theme/zipball/ad455e555aca9629e8b3805aebac91b31c2d61c4", + "reference": "ad455e555aca9629e8b3805aebac91b31c2d61c4", "shasum": "" }, "require": { @@ -2039,26 +1648,26 @@ "theme" ], "support": { - "source": "https://github.com/dof-dss/nicsdru_unity_theme/tree/10.1.1" + "source": "https://github.com/dof-dss/nicsdru_unity_theme/tree/10.1.2" }, - "time": "2023-09-14T10:03:18+00:00" + "time": "2023-10-17T13:29:40+00:00" }, { "name": "drupal/address", - "version": "1.11.0", + "version": "1.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/address.git", - "reference": "8.x-1.11" + "reference": "8.x-1.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/address-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "1cb40fb1a43e88041b888ac8fb6aa77a45ac85fb" + "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a" }, "require": { - "commerceguys/addressing": "^1.4.0", + "commerceguys/addressing": "^1.4.2", "drupal/core": "^9.2 || ^10", "php": "^7.3 || ^8.0" }, @@ -2068,8 +1677,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1659989858", + "version": "8.x-1.12", + "datestamp": "1684710176", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2118,26 +1727,29 @@ }, { "name": "drupal/admin_toolbar", - "version": "2.5.0", + "version": "3.4.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "8.x-2.5" + "reference": "3.4.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip", - "reference": "8.x-2.5", - "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip", + "reference": "3.4.2", + "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854" }, "require": { - "drupal/core": "^8.8.0 || ^9.0" + "drupal/core": "^9.2 || ^10" + }, + "require-dev": { + "drupal/admin_toolbar_tools": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.5", - "datestamp": "1629907119", + "version": "3.4.2", + "datestamp": "1696006195", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2196,26 +1808,27 @@ }, { "name": "drupal/adminimal_theme", - "version": "1.6.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/adminimal_theme.git", - "reference": "8.x-1.6" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413" + "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.3 || ^10", + "drupal/seven": "~1.0" }, "type": "drupal-theme", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1602006937", + "version": "8.x-1.7", + "datestamp": "1691504486", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2253,26 +1866,26 @@ }, { "name": "drupal/allowed_formats", - "version": "1.5.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/allowed_formats.git", - "reference": "8.x-1.5" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/allowed_formats-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "dbf61bee7aec87beaa2cf307c1d0d9d5b896328c" + "url": "https://ftp.drupal.org/files/projects/allowed_formats-2.0.0.zip", + "reference": "2.0.0", + "shasum": "ac6c6d398f303608ced7e9cd9d4556a728dc41f0" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1648060331", + "version": "2.0.0", + "datestamp": "1669170410", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2314,27 +1927,27 @@ }, { "name": "drupal/auto_entityqueue", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/auto_entityqueue.git", - "reference": "8.x-2.0" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/auto_entityqueue-8.x-2.0.zip", - "reference": "8.x-2.0", - "shasum": "3eb01b244093bfdaec0df7c91df6b7ba6ee4807c" + "url": "https://ftp.drupal.org/files/projects/auto_entityqueue-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "74397dade5d18a1a3ce186ca45c57ef6c302f407" }, "require": { - "drupal/core": "^8 || ^9", + "drupal/core": "^8 || ^9 | ^10", "drupal/entityqueue": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.0", - "datestamp": "1606456132", + "version": "8.x-2.1", + "datestamp": "1681968280", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2360,33 +1973,36 @@ } ], "description": "Automatically adds entities to entityqueues.", - "homepage": "https://www.drupal.org/project/auto_entityqueue", + "homepage": "http://drupal.org/project/auto_entityqueue", "support": { "source": "https://git.drupalcode.org/project/auto_entityqueue" } }, { "name": "drupal/blazy", - "version": "2.2.0", + "version": "2.16.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/blazy.git", - "reference": "8.x-2.2" + "reference": "8.x-2.16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.2.zip", - "reference": "8.x-2.2", - "shasum": "ed2aed0ba8d51ef7ad4ad41c30c0185938d14d53" + "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.16.zip", + "reference": "8.x-2.16", + "shasum": "ae84ac6083f734968eb9c7cc008b32aaa04c5b9c" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8.8 || ^9 || ^10" + }, + "conflict": { + "drupal/csp": "<1.12" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.2", - "datestamp": "1618669374", + "version": "8.x-2.16", + "datestamp": "1685788557", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2430,74 +2046,30 @@ } }, { - "name": "drupal/block_blacklist", - "version": "1.1.0", + "name": "drupal/block_content_permissions", + "version": "1.11.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/block_blacklist.git", - "reference": "8.x-1.1" + "url": "https://git.drupalcode.org/project/block_content_permissions.git", + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_blacklist-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "03138247661a11ac4c6d7079ca5411ca2503f4e7" + "url": "https://ftp.drupal.org/files/projects/block_content_permissions-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "1ecb7330f69be30b6cf05f8682d1957c1aaf605e" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8 || ^9 || ^10" + }, + "suggest": { + "drupal/block_region_permissions": "Block Region Permissions adds permissions for administering 'blocks' based on each theme's regions." }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1590309216", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "KarenS", - "homepage": "https://www.drupal.org/user/45874" - } - ], - "description": "Remove unnecessary blocks from the block list for better system performance.", - "homepage": "https://www.drupal.org/project/block_blacklist", - "support": { - "source": "https://git.drupalcode.org/project/block_blacklist" - } - }, - { - "name": "drupal/block_content_permissions", - "version": "1.10.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/block_content_permissions.git", - "reference": "8.x-1.10" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_content_permissions-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "03cfd1ff8edb05ea0f953916b23ef7b3aed82ab4" - }, - "require": { - "drupal/core": "^8 || ^9" - }, - "suggest": { - "drupal/block_region_permissions": "Block Region Permissions adds permissions for administering 'blocks' based on each theme's regions." - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.10", - "datestamp": "1593975004", + "version": "8.x-1.11", + "datestamp": "1674237116", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2524,17 +2096,17 @@ }, { "name": "drupal/block_field", - "version": "1.0.0-rc3", + "version": "1.0.0-rc4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_field.git", - "reference": "8.x-1.0-rc3" + "reference": "8.x-1.0-rc4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_field-8.x-1.0-rc3.zip", - "reference": "8.x-1.0-rc3", - "shasum": "2c4bad92088df2de02a99f8b94c0da19abc3e103" + "url": "https://ftp.drupal.org/files/projects/block_field-8.x-1.0-rc4.zip", + "reference": "8.x-1.0-rc4", + "shasum": "97958ceace8ca80852f40b734ff7197e172d726e" }, "require": { "drupal/core": "^9 || ^10" @@ -2542,8 +2114,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-rc3", - "datestamp": "1658858536", + "version": "8.x-1.0-rc4", + "datestamp": "1667511464", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -2588,26 +2160,26 @@ }, { "name": "drupal/block_list_override", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_list_override.git", - "reference": "1.0.1" + "reference": "1.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_list_override-1.0.1.zip", - "reference": "1.0.1", - "shasum": "f1ae936cc5e4748d511ee0a7a6025337b135db56" + "url": "https://ftp.drupal.org/files/projects/block_list_override-1.0.2.zip", + "reference": "1.0.2", + "shasum": "0e5494748186eb30af0c765b2b3d14ab528de2eb" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.4 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.0.1", - "datestamp": "1594592703", + "version": "1.0.2", + "datestamp": "1691677830", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2636,26 +2208,26 @@ }, { "name": "drupal/block_visibility_groups", - "version": "1.4.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_visibility_groups.git", - "reference": "8.x-1.4" + "reference": "2.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "2572fd5bd7fb3a0c3dbcdf262fbbc9646a3d12ed" + "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-2.0.1.zip", + "reference": "2.0.1", + "shasum": "ae268cc3a5821205832b66069dcb8f60b8f20ab9" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1602107538", + "version": "2.0.1", + "datestamp": "1676002877", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2691,29 +2263,30 @@ } }, { - "name": "drupal/chosen", - "version": "3.0.3", + "name": "drupal/ckeditor", + "version": "1.0.2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/chosen.git", - "reference": "3.0.3" + "url": "https://git.drupalcode.org/project/ckeditor.git", + "reference": "1.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/chosen-3.0.3.zip", - "reference": "3.0.3", - "shasum": "0093f31786e429b1a614159a658ca55d17ae3824" + "url": "https://ftp.drupal.org/files/projects/ckeditor-1.0.2.zip", + "reference": "1.0.2", + "shasum": "fec2ca9ad852a00c7b9584cb6040dc860364c481" }, "require": { - "drupal/chosen_lib": "*", - "drupal/core": "^8.8 || ^9 || ^10", - "harvesthq/chosen": "^1.8.7" + "drupal/core": "^9.4 || ^10" + }, + "require-dev": { + "drupal/classy": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.3", - "datestamp": "1654688115", + "version": "1.0.2", + "datestamp": "1695740655", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2726,142 +2299,244 @@ ], "authors": [ { - "name": "aidanlis", - "homepage": "https://www.drupal.org/user/502018" + "name": "dczepierga", + "homepage": "https://www.drupal.org/user/911466" }, { - "name": "Cyclodex", - "homepage": "https://www.drupal.org/user/1305230" + "name": "hass", + "homepage": "https://www.drupal.org/user/85918" }, { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" + "name": "jcisio", + "homepage": "https://www.drupal.org/user/210762" }, { - "name": "Hydra", - "homepage": "https://www.drupal.org/user/647364" + "name": "Jorrit", + "homepage": "https://www.drupal.org/user/161217" }, { - "name": "kalman.hosszu", - "homepage": "https://www.drupal.org/user/267481" + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" }, { - "name": "nagy.balint", - "homepage": "https://www.drupal.org/user/1763952" + "name": "Magnus", + "homepage": "https://www.drupal.org/user/73919" }, { - "name": "Pol", - "homepage": "https://www.drupal.org/user/47194" + "name": "mkesicki", + "homepage": "https://www.drupal.org/user/922884" }, { - "name": "shadcn", - "homepage": "https://www.drupal.org/user/571032" + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "p.wiaderny", + "homepage": "https://www.drupal.org/user/2956619" + }, + { + "name": "vokiel", + "homepage": "https://www.drupal.org/user/2793801" + }, + { + "name": "Wim Leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "wwalc", + "homepage": "https://www.drupal.org/user/184556" }, { - "name": "supercabbageuk", - "homepage": "https://www.drupal.org/user/235438" + "name": "xjm", + "homepage": "https://www.drupal.org/user/65776" } ], - "description": "Makes select elements more friendly using the Chosen jQuery plugin", - "homepage": "https://www.drupal.org/project/chosen", - "keywords": [ - "Chosen", - "Drupal" + "description": "WYSIWYG editing for rich text fields using CKEditor.", + "homepage": "https://www.drupal.org/project/ckeditor", + "support": { + "source": "https://git.drupalcode.org/project/ckeditor" + } + }, + { + "name": "drupal/ckeditor5_allowed_html", + "version": "dev-1.0.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ckeditor5_allowed_html.git", + "reference": "79aa55696df2cd48d60d2ac4074061a561525b6e" + }, + "require": { + "drupal/core": "^8.8 || ^9 || ^10" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.0.x": "1.0.x-dev" + }, + "drupal": { + "version": "1.0.x-dev", + "datestamp": "1691506962", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "DuttonMa", + "homepage": "https://www.drupal.org/user/2250396" + } ], + "description": "Contains a filter that provides a user editable list of allowed HTML tags ", + "homepage": "https://www.drupal.org/project/ckeditor5_allowed_html", "support": { - "source": "https://drupal.org/project/chosen", - "issues": "https://drupal.org/project/issues/chosen" + "source": "https://git.drupalcode.org/project/ckeditor5_allowed_html" } }, { - "name": "drupal/chosen_lib", - "version": "3.0.1", + "name": "drupal/ckeditor5_premium_features", + "version": "1.2.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ckeditor5_premium_features.git", + "reference": "1.2.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ckeditor5_premium_features-1.2.2.zip", + "reference": "1.2.2", + "shasum": "298b657fbf977d6c25291f12b1b162be9c2a6ea9" + }, "require": { - "drupal/chosen": "^3", - "drupal/core": "^8 || ^9", - "php": ">=5.6.0" + "caxy/php-htmldiff": "~0.1.14", + "drupal/core": "^9.3 || ^10.0", + "ext-dom": "*", + "ext-libxml": "*", + "firebase/php-jwt": "^6.0", + "php": "^8.0" }, - "type": "metapackage", + "require-dev": { + "drupal/ckeditor5-ckeditor5": "*", + "drupal/ckeditor5_premium_features_mentions": "*" + }, + "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.1", - "datestamp": "1603473892", + "version": "1.2.2", + "datestamp": "1693384282", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "aidanlis", - "homepage": "https://www.drupal.org/user/502018" - }, - { - "name": "Cyclodex", - "homepage": "https://www.drupal.org/user/1305230" - }, - { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" + "name": "Wojciech Kukowski (salmonek)", + "homepage": "https://www.drupal.org/u/salmonek", + "role": "Maintainer" }, { - "name": "Hydra", - "homepage": "https://www.drupal.org/user/647364" + "name": "Dawid Olszewski (dolszewski)", + "homepage": "https://www.drupal.org/u/dolszewski", + "role": "Maintainer" }, { - "name": "kalman.hosszu", - "homepage": "https://www.drupal.org/user/267481" + "name": "salmonek", + "homepage": "https://www.drupal.org/user/3104645" }, { - "name": "nagy.balint", - "homepage": "https://www.drupal.org/user/1763952" - }, + "name": "wwalc", + "homepage": "https://www.drupal.org/user/184556" + } + ], + "description": "The premium features for the CKEditor 5 WYSIWYG editor.", + "homepage": "https://www.drupal.org/project/ckeditor5_premium_features", + "support": { + "source": "https://git.drupalcode.org/project/ckeditor5_premium_features", + "issues": "https://www.drupal.org/project/issues/ckeditor5_premium_features" + } + }, + { + "name": "drupal/classy", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/classy.git", + "reference": "1.0.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/classy-1.0.2.zip", + "reference": "1.0.2", + "shasum": "c2f4fbfd9ae7d4e0cbd952d96247d00a0759da06" + }, + "require": { + "drupal/core": "^9 || ^10", + "drupal/stable": "^2.0.0" + }, + "type": "drupal-theme", + "extra": { + "drupal": { + "version": "1.0.2", + "datestamp": "1663949784", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ { - "name": "Pol", - "homepage": "https://www.drupal.org/user/47194" + "name": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" }, { - "name": "shadcn", - "homepage": "https://www.drupal.org/user/571032" + "name": "davidhernandez", + "homepage": "https://www.drupal.org/user/274559" }, { - "name": "supercabbageuk", - "homepage": "https://www.drupal.org/user/235438" + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" } ], - "description": "This module provides the basic integration with the Chosen jQuery plugin.", - "homepage": "https://www.drupal.org/project/chosen", + "description": "The Classy base theme from Drupal 8/9 moved to contrib", + "homepage": "https://drupal.org/project/classy", "support": { - "source": "https://git.drupalcode.org/project/chosen" + "source": "https://git.drupalcode.org/project/classy", + "issues": "https://drupal.org/project/issues/classy" } }, { "name": "drupal/clientside_validation", - "version": "3.0.0-rc4", + "version": "4.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/clientside_validation.git", - "reference": "3.0.0-rc4" + "reference": "4.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/clientside_validation-3.0.0-rc4.zip", - "reference": "3.0.0-rc4", - "shasum": "646ea754f3331bd2f6d7d29f798d033176b0474a" + "url": "https://ftp.drupal.org/files/projects/clientside_validation-4.0.2.zip", + "reference": "4.0.2", + "shasum": "bfaf0fa81d645427c1b3ccfd2d5e493a10b7f483" }, "require": { - "drupal/core": "^8.7.7 || ^9", - "php": ">=7.2.0" + "drupal/core": "^9.4 || ^10.0", + "php": ">=7.4.0" }, "require-dev": { "drupal/clientside_validation_demo": "*", @@ -2870,11 +2545,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-rc4", - "datestamp": "1592755000", + "version": "4.0.2", + "datestamp": "1676011269", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -2909,23 +2584,23 @@ }, { "name": "drupal/clone_nodes", - "version": "dev-1.1.x", + "version": "dev-1.2.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/clone_nodes.git", - "reference": "b575aabe1ae9758217c3cfad6c207600b8077b15" + "reference": "4451ae90d5327411b0d2387c8f6871e854ba3d0e" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.1.x": "1.1.x-dev" + "dev-1.2.x": "1.2.x-dev" }, "drupal": { - "version": "1.1.x-dev", - "datestamp": "1688992472", + "version": "1.2.x-dev", + "datestamp": "1688989325", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -3016,27 +2691,27 @@ }, { "name": "drupal/config_ignore", - "version": "2.3.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_ignore.git", - "reference": "8.x-2.3" + "reference": "8.x-2.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.3.zip", - "reference": "8.x-2.3", - "shasum": "2e1f07a455275fb6637909921a8915646601fc00" + "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip", + "reference": "8.x-2.4", + "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554" }, "require": { "drupal/config_filter": "^1 || ^2", - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.3", - "datestamp": "1608306489", + "version": "8.x-2.4", + "datestamp": "1676045435", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3068,32 +2743,32 @@ "homepage": "http://drupal.org/project/config_ignore", "support": { "source": "https://git.drupalcode.org/project/config_ignore", - "issues": "http://drupal.org/project/config_ignore", + "issues": "https://drupal.org/project/config_ignore", "irc": "irc://irc.freenode.org/drupal-contribute" } }, { "name": "drupal/config_readonly", - "version": "1.0.0-beta4", + "version": "1.0.0-beta5", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_readonly.git", - "reference": "8.x-1.0-beta4" + "reference": "8.x-1.0-beta5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_readonly-8.x-1.0-beta4.zip", - "reference": "8.x-1.0-beta4", - "shasum": "5c178125865692ec356aefcaef731f1fd4aa6f2c" + "url": "https://ftp.drupal.org/files/projects/config_readonly-8.x-1.0-beta5.zip", + "reference": "8.x-1.0-beta5", + "shasum": "29fdbf9259d35c07377f2f3b2e202daac5bdfc11" }, "require": { - "drupal/core": "^8.7.12 || ^9" + "drupal/core": "^9.1 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-beta4", - "datestamp": "1596658248", + "version": "8.x-1.0-beta5", + "datestamp": "1673648600", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -3214,29 +2889,29 @@ }, { "name": "drupal/config_update", - "version": "1.7.0", + "version": "2.0.0-alpha3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_update.git", - "reference": "8.x-1.7" + "reference": "2.0.0-alpha3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip", - "reference": "8.x-1.7", - "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968" + "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip", + "reference": "2.0.0-alpha3", + "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9.4 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.7", - "datestamp": "1586355587", + "version": "2.0.0-alpha3", + "datestamp": "1683807608", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." } } }, @@ -3254,394 +2929,104 @@ "homepage": "https://www.drupal.org/user/80733" } ], - "description": "Provides basic revert and update functionality for other modules", + "description": "Provides basic revert and update functionality for other modules.", "homepage": "https://www.drupal.org/project/config_update", "support": { "source": "https://git.drupalcode.org/project/config_update" } }, { - "name": "drupal/console", - "version": "1.9.9", + "name": "drupal/content_lock", + "version": "2.3.0", "source": { "type": "git", - "url": "https://github.com/hechoendrupal/drupal-console.git", - "reference": "3756318780483910250e4ba78207cf960bde4545" + "url": "https://git.drupalcode.org/project/content_lock.git", + "reference": "8.x-2.3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/3756318780483910250e4ba78207cf960bde4545", - "reference": "3756318780483910250e4ba78207cf960bde4545", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip", + "reference": "8.x-2.3", + "shasum": "0e8343f82330899baef65aa85d9994154e29506f" }, "require": { - "alchemy/zippy": "~0.4", - "composer/installers": "~1.0", - "doctrine/annotations": "^1.2", - "doctrine/collections": "^1.3", - "drupal/console-core": "1.9.7", - "drupal/console-extend-plugin": "~0.9.5", - "php": ">=7.0.8", - "psy/psysh": "0.6.* || ~0.8", - "symfony/css-selector": "~3.0|~4.0", - "symfony/dom-crawler": "~3.0|~4.0", - "symfony/expression-language": "~3.0|~4.0", - "symfony/http-foundation": "~3.0|~4.0" - }, - "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" + "drupal/core": "^9.0 || ^10.0" }, - "bin": [ - "bin/drupal" - ], - "type": "library", - "autoload": { - "psr-4": { - "Drupal\\Console\\": "src" + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.3", + "datestamp": "1668427342", + "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": [ "GPL-2.0-or-later" ], "authors": [ { - "name": "David Flores", - "email": "dmousex@gmail.com", - "homepage": "http://dmouse.net" + "name": "alexpott", + "homepage": "https://www.drupal.org/user/157725" + }, + { + "name": "chr.fritsch", + "homepage": "https://www.drupal.org/user/2103716" + }, + { + "name": "daniel.bosen", + "homepage": "https://www.drupal.org/user/404865" }, { - "name": "Jesus Manuel Olivas", - "email": "jesus.olivas@gmail.com", - "homepage": "http://jmolivas.com" + "name": "ergonlogic", + "homepage": "https://www.drupal.org/user/368613" }, { - "name": "Eduardo Garcia", - "email": "enzo@enzolutions.com", - "homepage": "http://enzolutions.com/" + "name": "mfb", + "homepage": "https://www.drupal.org/user/12302" }, { - "name": "Omar Aguirre", - "email": "omersguchigu@gmail.com" + "name": "pandaski", + "homepage": "https://www.drupal.org/user/1987218" }, { - "name": "Drupal Console Contributors", - "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors" + "name": "volkerk", + "homepage": "https://www.drupal.org/user/57527" } ], - "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.", - "homepage": "http://drupalconsole.com/", - "keywords": [ - "console", - "development", - "drupal", - "symfony" - ], - "support": { - "docs": "https://docs.drupalconsole.com/", - "forum": "https://gitter.im/hechoendrupal/DrupalConsole", - "issues": "https://github.com/hechoendrupal/drupal-console/issues", - "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.9" - }, - "funding": [ - { - "url": "https://opencollective.com/drupalconsole", - "type": "open_collective" - } - ], - "time": "2022-09-17T20:50:37+00:00" - }, - { - "name": "drupal/console-core", - "version": "1.9.7", - "source": { - "type": "git", - "url": "https://github.com/hechoendrupal/drupal-console-core.git", - "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/ab3abc2631761c9588230ba88189d9ba4eb9ed63", - "reference": "ab3abc2631761c9588230ba88189d9ba4eb9ed63", - "shasum": "" - }, - "require": { - "dflydev/dot-access-configuration": "^1.0", - "drupal/console-en": "1.9.7", - "guzzlehttp/guzzle": "~6.1", - "php": ">=7.0.8", - "stecman/symfony-console-completion": "~0.7", - "symfony/config": "~3.0|^4.4", - "symfony/console": "~3.0|^4.4", - "symfony/debug": "~3.0|^4.4", - "symfony/dependency-injection": "~3.0|^4.4", - "symfony/event-dispatcher": "~3.0|^4.4", - "symfony/filesystem": "~3.0|^4.4", - "symfony/finder": "~3.0|^4.4", - "symfony/process": "~3.0|^4.4", - "symfony/translation": "~3.0|^4.4", - "symfony/yaml": "~3.0|^4.4", - "twig/twig": "^1.38.2|^2.12.0", - "webflo/drupal-finder": "^1.0", - "webmozart/path-util": "^2.3" - }, - "type": "library", - "autoload": { - "files": [ - "src/functions.php" - ], - "psr-4": { - "Drupal\\Console\\Core\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "David Flores", - "email": "dmousex@gmail.com", - "homepage": "http://dmouse.net" - }, - { - "name": "Jesus Manuel Olivas", - "email": "jesus.olivas@gmail.com", - "homepage": "http://jmolivas.com" - }, - { - "name": "Eduardo Garcia", - "email": "enzo@enzolutions.com", - "homepage": "http://enzolutions.com/" - }, - { - "name": "Omar Aguirre", - "email": "omersguchigu@gmail.com" - }, - { - "name": "Drupal Console Contributors", - "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors" - } - ], - "description": "Drupal Console Core", - "homepage": "http://drupalconsole.com/", - "keywords": [ - "console", - "development", - "drupal", - "symfony" - ], - "support": { - "docs": "http://docs.drupalconsole.com/", - "forum": "https://gitter.im/hechoendrupal/DrupalConsole", - "issues": "https://github.com/hechoendrupal/DrupalConsole/issues", - "source": "https://github.com/hechoendrupal/drupal-console-core/tree/1.9.7" - }, - "time": "2020-11-30T01:45:57+00:00" - }, - { - "name": "drupal/console-en", - "version": "v1.9.7", - "source": { - "type": "git", - "url": "https://github.com/hechoendrupal/drupal-console-en.git", - "reference": "7594601fff153c2799a62bd678ff80749baeee0c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/7594601fff153c2799a62bd678ff80749baeee0c", - "reference": "7594601fff153c2799a62bd678ff80749baeee0c", - "shasum": "" - }, - "type": "library", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "David Flores", - "email": "dmousex@gmail.com", - "homepage": "http://dmouse.net" - }, - { - "name": "Jesus Manuel Olivas", - "email": "jesus.olivas@gmail.com", - "homepage": "http://jmolivas.com" - }, - { - "name": "Eduardo Garcia", - "email": "enzo@enzolutions.com", - "homepage": "http://enzolutions.com/" - }, - { - "name": "Omar Aguirre", - "email": "omersguchigu@gmail.com" - }, - { - "name": "Drupal Console Contributors", - "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors" - } - ], - "description": "Drupal Console English Language", - "homepage": "http://drupalconsole.com/", - "keywords": [ - "console", - "development", - "drupal", - "symfony" - ], - "support": { - "docs": "https://docs.drupalconsole.com", - "forum": "https://gitter.im/hechoendrupal/DrupalConsole", - "issues": "https://github.com/hechoendrupal/DrupalConsole/issues", - "source": "https://github.com/hechoendrupal/drupal-console-en/tree/master" - }, - "time": "2020-08-15T03:34:54+00:00" - }, - { - "name": "drupal/console-extend-plugin", - "version": "0.9.5", - "source": { - "type": "git", - "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git", - "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/eff6da99cfb5fe1fc60990672d2667c402eb3585", - "reference": "eff6da99cfb5fe1fc60990672d2667c402eb3585", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "composer/installers": "^1.2", - "symfony/finder": "~3.0|^4.4", - "symfony/yaml": "~3.0|^4.4" - }, - "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", - "support": { - "issues": "https://github.com/hechoendrupal/drupal-console-extend-plugin/issues", - "source": "https://github.com/hechoendrupal/drupal-console-extend-plugin/tree/0.9.5" - }, - "time": "2020-11-18T00:15:28+00:00" - }, - { - "name": "drupal/content_lock", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/content_lock.git", - "reference": "8.x-2.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.2.zip", - "reference": "8.x-2.2", - "shasum": "9ea5810067c0df18879a16a19236e0cb46f9fba7" - }, - "require": { - "drupal/core": "^8.8|^9.0" - }, - "require-dev": { - "drupal/conflict": "^2.0@ALPHA", - "drupal/prefetch_cache": "dev-1.x" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.2", - "datestamp": "1607936866", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "alexpott", - "homepage": "https://www.drupal.org/user/157725" - }, - { - "name": "chr.fritsch", - "homepage": "https://www.drupal.org/user/2103716" - }, - { - "name": "daniel.bosen", - "homepage": "https://www.drupal.org/user/404865" - }, - { - "name": "ergonlogic", - "homepage": "https://www.drupal.org/user/368613" - }, - { - "name": "mfb", - "homepage": "https://www.drupal.org/user/12302" - }, - { - "name": "pandaski", - "homepage": "https://www.drupal.org/user/1987218" - }, - { - "name": "volkerk", - "homepage": "https://www.drupal.org/user/57527" - } - ], - "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.", - "homepage": "https://www.drupal.org/project/content_lock", + "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.", + "homepage": "https://www.drupal.org/project/content_lock", "support": { "source": "https://git.drupalcode.org/project/content_lock" } }, { "name": "drupal/cookie_content_blocker", - "version": "2.0.0", + "version": "2.2.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/cookie_content_blocker.git", - "reference": "2.0.0" + "reference": "2.2.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/cookie_content_blocker-2.0.0.zip", - "reference": "2.0.0", - "shasum": "570bf56ac3c53d117ca721e0da5a97de2f9cc9df" + "url": "https://ftp.drupal.org/files/projects/cookie_content_blocker-2.2.3.zip", + "reference": "2.2.3", + "shasum": "14117e4a4ccf4b280f0e0ff330ac76975691d75d" }, "require": { - "drupal/core": "^8.8 || ^9", + "drupal/core": "^9.4 || ^10", "ext-json": "*", - "php": "^7.1 || ^8.0" + "php": "^8.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1659703027", + "version": "2.2.3", + "datestamp": "1693234318", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3673,7 +3058,7 @@ "homepage": "https://www.drupal.org/user/3301055" }, { - "name": "Dannyjanse", + "name": "djanse97", "homepage": "https://www.drupal.org/user/3774093" } ], @@ -3693,24 +3078,24 @@ }, { "name": "drupal/core", - "version": "9.5.11", + "version": "10.1.5", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "8afcb233c2a71501b35fed2713167c37831d5c19" + "reference": "1272c35d547e844e7ebf3fe5513542291cda8cec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/8afcb233c2a71501b35fed2713167c37831d5c19", - "reference": "8afcb233c2a71501b35fed2713167c37831d5c19", + "url": "https://api.github.com/repos/drupal/core/zipball/1272c35d547e844e7ebf3fe5513542291cda8cec", + "reference": "1272c35d547e844e7ebf3fe5513542291cda8cec", "shasum": "" }, "require": { - "asm89/stack-cors": "^1.3", + "asm89/stack-cors": "^2.1", + "composer-runtime-api": "^2.1", "composer/semver": "^3.3", - "doctrine/annotations": "^1.13", - "doctrine/reflection": "^1.2", - "egulias/email-validator": "^2.1.22|^3.2", + "doctrine/annotations": "^1.14", + "egulias/email-validator": "^3.2.1|^4.0", "ext-date": "*", "ext-dom": "*", "ext-filter": "*", @@ -3724,41 +3109,35 @@ "ext-spl": "*", "ext-tokenizer": "*", "ext-xml": "*", - "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", - "laminas/laminas-feed": "^2.17", - "longwave/laminas-diactoros": "^2.14", + "guzzlehttp/guzzle": "^7.5", + "guzzlehttp/psr7": "^2.4.5", "masterminds/html5": "^2.7", + "mck89/peast": "^1.14", "pear/archive_tar": "^1.4.14", - "php": ">=7.3.0", - "psr/log": "^1.1", - "stack/builder": "^1.0", - "symfony-cmf/routing": "^2.3", - "symfony/console": "^4.4", - "symfony/dependency-injection": "^4.4", - "symfony/event-dispatcher": "^4.4", - "symfony/http-foundation": "^4.4.7", - "symfony/http-kernel": "^4.4", - "symfony/mime": "^5.4", + "php": ">=8.1.0", + "psr/log": "^3.0", + "sebastian/diff": "^4", + "symfony/console": "^6.3", + "symfony/dependency-injection": "^6.3", + "symfony/event-dispatcher": "^6.3", + "symfony/http-foundation": "^6.3", + "symfony/http-kernel": "^6.3", + "symfony/mime": "^6.3", "symfony/polyfill-iconv": "^1.26", - "symfony/polyfill-php80": "^1.26", - "symfony/process": "^4.4", + "symfony/process": "^6.3", "symfony/psr-http-message-bridge": "^2.1", - "symfony/routing": "^4.4", - "symfony/serializer": "^4.4", - "symfony/translation": "^4.4", - "symfony/validator": "^4.4", - "symfony/yaml": "^4.4.19", - "twig/twig": "^2.15.3", - "typo3/phar-stream-wrapper": "^3.1.3" + "symfony/routing": "^6.3", + "symfony/serializer": "^6.3", + "symfony/validator": "^6.3", + "symfony/yaml": "^6.3", + "twig/twig": "^3.5.0" }, "conflict": { - "drush/drush": "<8.1.10", - "symfony/http-foundation": "4.4.42" + "drush/drush": "<8.1.10" }, "replace": { "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", @@ -3782,6 +3161,9 @@ "drupal/core-uuid": "self.version", "drupal/core-version": "self.version" }, + "suggest": { + "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format." + }, "type": "drupal-core", "extra": { "drupal-scaffold": { @@ -3814,12 +3196,10 @@ }, "autoload": { "files": [ - "includes/bootstrap.inc", - "includes/guzzle_php81_shim.php" + "includes/bootstrap.inc" ], "psr-4": { "Drupal\\Core\\": "lib/Drupal/Core", - "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver", "Drupal\\Component\\": "lib/Drupal/Component" }, "classmap": [ @@ -3838,12 +3218,10 @@ "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php", "lib/Drupal/Core/Database/Connection.php", "lib/Drupal/Core/Database/Database.php", - "lib/Drupal/Core/Database/Statement.php", "lib/Drupal/Core/Database/StatementInterface.php", "lib/Drupal/Core/DependencyInjection/Container.php", "lib/Drupal/Core/DrupalKernel.php", "lib/Drupal/Core/DrupalKernelInterface.php", - "lib/Drupal/Core/Http/InputBag.php", "lib/Drupal/Core/Installer/InstallerRedirectTrait.php", "lib/Drupal/Core/Site/Settings.php" ] @@ -3854,26 +3232,26 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/9.5.11" + "source": "https://github.com/drupal/core/tree/10.1.5" }, - "time": "2023-09-19T17:58:28+00:00" + "time": "2023-10-04T21:37:59+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "9.5.11", + "version": "10.1.5", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7" + "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7", - "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51", + "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51", "shasum": "" }, "require": { - "composer-plugin-api": "^1 || ^2", + "composer-plugin-api": "^2", "php": ">=7.3.0" }, "conflict": { @@ -3904,78 +3282,117 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/9.5.11" + "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.5" + }, + "time": "2023-04-30T16:15:32+00:00" + }, + { + "name": "drupal/core-project-message", + "version": "10.1.5", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-project-message.git", + "reference": "59b4475f01debd9a0f173938a06189982c8ebffd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd", + "reference": "59b4475f01debd9a0f173938a06189982c8ebffd", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^2", + "php": ">=7.3.0" + }, + "type": "composer-plugin", + "extra": { + "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin" + }, + "autoload": { + "psr-4": { + "Drupal\\Composer\\Plugin\\ProjectMessage\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds a message after Composer installation.", + "homepage": "https://www.drupal.org/project/drupal", + "keywords": [ + "drupal" + ], + "support": { + "source": "https://github.com/drupal/core-project-message/tree/10.1.5" }, - "time": "2023-04-30T16:17:33+00:00" + "time": "2022-07-01T08:32:39+00:00" }, { "name": "drupal/core-recommended", - "version": "9.5.11", + "version": "10.1.5", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f" + "reference": "2c5cf420ddb06f3e9b624d168b724ca1c7c326e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/af3521be5376e333ddcdbd31c5a169f16423b46f", - "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/2c5cf420ddb06f3e9b624d168b724ca1c7c326e2", + "reference": "2c5cf420ddb06f3e9b624d168b724ca1c7c326e2", "shasum": "" }, "require": { - "asm89/stack-cors": "~1.3.0", + "asm89/stack-cors": "~v2.1.1", "composer/semver": "~3.3.2", - "doctrine/annotations": "~1.13.3", - "doctrine/lexer": "~1.2.3", - "doctrine/reflection": "~1.2.3", - "drupal/core": "9.5.11", - "egulias/email-validator": "~3.2.1", - "guzzlehttp/guzzle": "~6.5.8", - "guzzlehttp/promises": "~1.5.2", - "guzzlehttp/psr7": "~1.9.1", - "longwave/laminas-diactoros": "~2.14.2", - "masterminds/html5": "~2.7.6", + "doctrine/annotations": "~1.14.3", + "doctrine/deprecations": "~v1.1.1", + "doctrine/lexer": "~2.1.0", + "drupal/core": "10.1.5", + "egulias/email-validator": "~4.0.1", + "guzzlehttp/guzzle": "~7.7.0", + "guzzlehttp/psr7": "~2.5.0", + "masterminds/html5": "~2.8.0", + "mck89/peast": "~v1.15.4", "pear/archive_tar": "~1.4.14", "pear/console_getopt": "~v1.4.3", - "pear/pear-core-minimal": "~v1.10.11", + "pear/pear-core-minimal": "~v1.10.13", "pear/pear_exception": "~v1.0.2", - "psr/cache": "~1.0.1", - "psr/container": "~1.1.1", - "psr/http-factory": "~1.0.1", - "psr/http-message": "~1.0.1", - "psr/log": "~1.1.4", + "psr/cache": "~3.0.0", + "psr/container": "~2.0.2", + "psr/event-dispatcher": "~1.0.0", + "psr/http-client": "~1.0.2", + "psr/http-factory": "~1.0.2", + "psr/log": "~3.0.0", "ralouphie/getallheaders": "~3.0.3", - "stack/builder": "~v1.0.6", - "symfony-cmf/routing": "~2.3.4", - "symfony/console": "~v4.4.49", - "symfony/debug": "~v4.4.44", - "symfony/dependency-injection": "~v4.4.49", - "symfony/deprecation-contracts": "~v2.5.2", - "symfony/error-handler": "~v4.4.44", - "symfony/event-dispatcher": "~v4.4.44", - "symfony/event-dispatcher-contracts": "~v1.1.13", - "symfony/http-client-contracts": "~v2.5.2", - "symfony/http-foundation": "~v4.4.49", - "symfony/http-kernel": "~v4.4.50", - "symfony/mime": "~v5.4.13", + "sebastian/diff": "~4.0.5", + "symfony/console": "~v6.3.0", + "symfony/dependency-injection": "~v6.3.0", + "symfony/deprecation-contracts": "~v3.3.0", + "symfony/error-handler": "~v6.3.0", + "symfony/event-dispatcher": "~v6.3.0", + "symfony/event-dispatcher-contracts": "~v3.3.0", + "symfony/http-foundation": "~v6.3.0", + "symfony/http-kernel": "~v6.3.0", + "symfony/mime": "~v6.3.0", "symfony/polyfill-ctype": "~v1.27.0", "symfony/polyfill-iconv": "~v1.27.0", + "symfony/polyfill-intl-grapheme": "~v1.27.0", "symfony/polyfill-intl-idn": "~v1.27.0", "symfony/polyfill-intl-normalizer": "~v1.27.0", "symfony/polyfill-mbstring": "~v1.27.0", - "symfony/polyfill-php80": "~v1.27.0", - "symfony/process": "~v4.4.44", - "symfony/psr-http-message-bridge": "~v2.1.4", - "symfony/routing": "~v4.4.44", - "symfony/serializer": "~v4.4.47", - "symfony/service-contracts": "~v2.5.2", - "symfony/translation": "~v4.4.47", - "symfony/translation-contracts": "~v2.5.2", - "symfony/validator": "~v4.4.48", - "symfony/var-dumper": "~v5.4.19", - "symfony/yaml": "~v4.4.45", - "twig/twig": "~v2.15.4", - "typo3/phar-stream-wrapper": "~v3.1.7" + "symfony/polyfill-php83": "~v1.27.0", + "symfony/process": "~v6.3.0", + "symfony/psr-http-message-bridge": "~v2.2.0", + "symfony/routing": "~v6.3.0", + "symfony/serializer": "~v6.3.0", + "symfony/service-contracts": "~v3.3.0", + "symfony/string": "~v6.3.0", + "symfony/translation-contracts": "~v3.3.0", + "symfony/validator": "~v6.3.0", + "symfony/var-dumper": "~v6.3.0", + "symfony/var-exporter": "~v6.3.0", + "symfony/yaml": "~v6.3.0", + "twig/twig": "~v3.6.0" }, "conflict": { "webflo/drupal-core-strict": "*" @@ -3987,34 +3404,34 @@ ], "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/9.5.11" + "source": "https://github.com/drupal/core-recommended/tree/10.1.5" }, - "time": "2023-09-19T17:58:28+00:00" + "time": "2023-10-04T21:37:59+00:00" }, { "name": "drupal/csp", - "version": "1.16.0", + "version": "1.21.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/csp.git", - "reference": "8.x-1.16" + "reference": "8.x-1.21" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/csp-8.x-1.16.zip", - "reference": "8.x-1.16", - "shasum": "0d6568ff2b176497ff97a440bfae6b7135ad2d6b" + "url": "https://ftp.drupal.org/files/projects/csp-8.x-1.21.zip", + "reference": "8.x-1.21", + "shasum": "712a65363793e1eeb93a418f7b4b1fc6662e3196" }, "require": { - "drupal/core": "^8.5 || ^9.0", + "drupal/core": "^9.5 || ^10", "ext-json": "*", - "php": ">=7.2" + "php": ">=7.4" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.16", - "datestamp": "1641415148", + "version": "8.x-1.21", + "datestamp": "1695423069", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4043,26 +3460,26 @@ }, { "name": "drupal/ctools", - "version": "3.7.0", + "version": "4.0.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "8.x-3.7" + "reference": "4.0.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.7.zip", - "reference": "8.x-3.7", - "shasum": "b11c0981a1d2ab3cc9e8e614a337d8e2a2a70c0e" + "url": "https://ftp.drupal.org/files/projects/ctools-4.0.4.zip", + "reference": "4.0.4", + "shasum": "4a2474eb2fd525b2add2db0e855c135ba7f0fb70" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.7", - "datestamp": "1623860918", + "version": "4.0.4", + "datestamp": "1684299878", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4136,23 +3553,23 @@ }, { "name": "drupal/date_facet_drilldown", - "version": "dev-4.x", + "version": "dev-5.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/date_facet_drilldown.git", - "reference": "628b6cac1e04aad8c503b2335264d04c91154b79" + "reference": "727320bcc53239dbe615b4a86d13d25ed0585125" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-4.x": "4.x-dev" + "dev-5.x": "5.x-dev" }, "drupal": { - "version": "8.x-4.x-dev", - "datestamp": "1685098571", + "version": "8.x-5.x-dev", + "datestamp": "1688987471", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -4185,27 +3602,27 @@ }, { "name": "drupal/diff", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/diff.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "7106ca30b7b10343fbf79a0c42fc7981b109095f" + "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "b7558b0f431d5945289829946e0beba61bf7ae18" }, "require": { - "drupal/core": "^8.7.7 || ^9", + "drupal/core": "^9.3 || ^10", "mkalkbrenner/php-htmldiff-advanced": "~0.0.8" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1578322688", + "version": "8.x-1.1", + "datestamp": "1665437355", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4214,7 +3631,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -4276,20 +3693,20 @@ }, { "name": "drupal/draggableviews", - "version": "2.0.1", + "version": "2.1.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/draggableviews.git", - "reference": "2.0.1" + "reference": "2.1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/draggableviews-2.0.1.zip", - "reference": "2.0.1", - "shasum": "e13a6c625fb8ca370a32b76dfd9f8bea9b2e27e9" + "url": "https://ftp.drupal.org/files/projects/draggableviews-2.1.3.zip", + "reference": "2.1.3", + "shasum": "d22af995f543ab9dfb1c8eeaaa79bdf3ef233879" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9 || ^10" }, "require-dev": { "drupal/draggableviews_demo": "*" @@ -4297,8 +3714,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.1", - "datestamp": "1620931210", + "version": "2.1.3", + "datestamp": "1682439050", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4320,7 +3737,7 @@ "name": "Andrii Podanenko (podarok)", "homepage": "https://www.drupal.org/u/podarok", "email": "podarokua@gmail.com", - "role": "Drupal 7 to 8 Porter" + "role": "Drupal 10+, maintenance." }, { "name": "Yuriy Gerasimov (ygerasimov)", @@ -4355,29 +3772,32 @@ }, { "name": "drupal/dynamic_entity_reference", - "version": "1.11.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git", - "reference": "8.x-1.11" + "reference": "3.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "a57bb94071f40b310a53a179ae435b119b05a5ab" + "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-3.1.0.zip", + "reference": "3.1.0", + "shasum": "4672b535acc326320f012033db94b5c0e379362c" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^10 || ^11", + "php": ">=8.1" }, "require-dev": { - "drupal/diff": "1.x-dev" + "mglaman/phpstan-drupal": "^1.1", + "phpstan/phpstan": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1603517234", + "version": "3.1.0", + "datestamp": "1688838762", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4568,17 +3988,17 @@ }, { "name": "drupal/entity_browser_entity_form", - "version": "2.5.0", + "version": "2.9.0", "require": { - "drupal/core": "^8.7.7 || ^9", + "drupal/core": "^9.1 || ^10", "drupal/entity_browser": "*", "drupal/inline_entity_form": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.5", - "datestamp": "1588015429", + "version": "8.x-2.9", + "datestamp": "1674070933", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4635,30 +4055,31 @@ }, { "name": "drupal/entity_embed", - "version": "1.2.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_embed.git", - "reference": "8.x-1.2" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "e1d4c9d6931984836c1ea550c32ae40f42367525" + "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "800cb12020d8751d11292018231d93157fc34d4e" }, "require": { - "drupal/core": "^8.8 || ^9", - "drupal/embed": "^1.3" + "drupal/core": "^9.3 || ^10", + "drupal/embed": "^1.5" }, "require-dev": { + "drupal/ckeditor": "^1", "drupal/entity_browser": "^2.2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1631726164", + "version": "8.x-1.4", + "datestamp": "1686251084", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4667,7 +4088,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -4706,27 +4127,25 @@ "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": "https://git.drupalcode.org/project/entity_embed", - "issues": "https://www.drupal.org/project/issues/entity_embed", - "irc": "irc://irc.freenode.org/drupal-media" + "source": "https://git.drupalcode.org/project/entity_embed" } }, { "name": "drupal/entity_reference_revisions", - "version": "1.9.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", - "reference": "8.x-1.9" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "e1c51bdea495eb3b458130d6f0a00c347f5637df" + "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "edd23b91c4a34db65ea22c4db54b7458edc7513b" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^9 || ^10" }, "require-dev": { "drupal/diff": "1.x-dev" @@ -4734,12 +4153,17 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1614805871", + "version": "8.x-1.10", + "datestamp": "1660664712", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10 || ^11" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -4772,26 +4196,26 @@ }, { "name": "drupal/entityqueue", - "version": "1.2.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entityqueue.git", - "reference": "8.x-1.2" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entityqueue-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "ef579fde4fbed75be2b9728ee3167d6a32beb527" + "url": "https://ftp.drupal.org/files/projects/entityqueue-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "94311ac7909f58ecc267c490b89ab3c13ebdbf8e" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.7.7 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1606297907", + "version": "8.x-1.7", + "datestamp": "1692176074", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4804,26 +4228,22 @@ ], "authors": [ { - "name": "Andrei Mateescu", - "homepage": "https://www.drupal.org/u/amateescu", - "role": "Maintainer" + "name": "amateescu", + "homepage": "https://www.drupal.org/user/729614" }, { - "name": "Jonathan Jordan", - "homepage": "https://www.drupal.org/u/jojonaloha", - "role": "Maintainer" + "name": "jojonaloha", + "homepage": "https://www.drupal.org/user/1579186" }, { "name": "quicksketch", "homepage": "https://www.drupal.org/user/35821" } ], - "description": "The Entityqueue module allows users to create queues of any entity type.", + "description": "Allows users to collect entities in arbitrarily ordered lists.", "homepage": "https://www.drupal.org/project/entityqueue", "support": { - "source": "http://cgit.drupalcode.org/entityqueue", - "issues": "https://www.drupal.org/project/issues/entityqueue", - "irc": "irc://irc.freenode.org/drupal-contribute" + "source": "https://git.drupalcode.org/project/entityqueue" } }, { @@ -5047,81 +4467,22 @@ "source": "https://git.drupalcode.org/project/facets_pretty_paths" } }, - { - "name": "drupal/faqfield", - "version": "7.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/faqfield.git", - "reference": "8.x-7.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-7.0.zip", - "reference": "8.x-7.0", - "shasum": "8788719564a23c1b8472568b9c9b15593d61e1c8" - }, - "require": { - "drupal/core": "^8 || ^9", - "drupal/jquery_ui_accordion": "^1.1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-7.0", - "datestamp": "1591226895", - "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": "Patrick Drotleff (patrickd)", - "homepage": "https://www.drupal.org/u/patrickd", - "role": "Maintainer" - }, - { - "name": "Kevin Quillen (kevinquillen)", - "homepage": "https://www.drupal.org/u/kevinquillen", - "role": "Maintainer" - }, - { - "name": "pifagor", - "homepage": "https://www.drupal.org/user/2375692" - } - ], - "description": "This module provides a field for frequently asked questions.", - "homepage": "http://drupal.org/project/faqfield", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/faqfield", - "issues": "http://drupal.org/project/issues/faqfield" - } - }, { "name": "drupal/fastly", - "version": "3.14.0", + "version": "4.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/fastly.git", - "reference": "8.x-3.14" + "reference": "4.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fastly-8.x-3.14.zip", - "reference": "8.x-3.14", - "shasum": "fbdbf748a639ffb539944bb36a55859bdaf4b60a" + "url": "https://ftp.drupal.org/files/projects/fastly-4.0.2.zip", + "reference": "4.0.2", + "shasum": "4a3151305763d719d184a9a3ecd4f2499e5035da" }, "require": { - "drupal/core": "^8 || ^9", + "drupal/core": "^9.3 || ^10", "php": ">=7.3" }, "require-dev": { @@ -5130,8 +4491,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.14", - "datestamp": "1616970068", + "version": "4.0.2", + "datestamp": "1689172541", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5230,29 +4591,26 @@ }, { "name": "drupal/field_group", - "version": "3.2.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_group.git", - "reference": "8.x-3.2" + "reference": "8.x-3.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "2020bbfe40f6ba43bc733ae7c8761632572433a0" + "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip", + "reference": "8.x-3.4", + "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94" }, "require": { - "drupal/core": "^8.8 || ^9" - }, - "require-dev": { - "drupal/jquery_ui_accordion": "^1.0" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.2", - "datestamp": "1628513585", + "version": "8.x-3.4", + "datestamp": "1667241979", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5264,6 +4622,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "Anybody", + "homepage": "https://www.drupal.org/user/291091" + }, { "name": "Hydra", "homepage": "https://www.drupal.org/user/647364" @@ -5294,26 +4656,26 @@ }, { "name": "drupal/file_delete_ui", - "version": "1.0.0-beta2", + "version": "1.0.0-beta3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/file_delete_ui.git", - "reference": "1.0.0-beta2" + "reference": "1.0.0-beta3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/file_delete_ui-1.0.0-beta2.zip", - "reference": "1.0.0-beta2", - "shasum": "76e04136bda06294ed40b266b47dafce4cbf7a85" + "url": "https://ftp.drupal.org/files/projects/file_delete_ui-1.0.0-beta3.zip", + "reference": "1.0.0-beta3", + "shasum": "0d347b6b35dd54678523976ebd9df18283488e3c" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.0.0-beta2", - "datestamp": "1673897599", + "version": "1.0.0-beta3", + "datestamp": "1689253704", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -5390,26 +4752,26 @@ }, { "name": "drupal/flag", - "version": "4.0.0-beta3", + "version": "4.0.0-beta4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/flag.git", - "reference": "8.x-4.0-beta3" + "reference": "8.x-4.0-beta4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/flag-8.x-4.0-beta3.zip", - "reference": "8.x-4.0-beta3", - "shasum": "856a4871034955406e111aee2227e716cc8064d6" + "url": "https://ftp.drupal.org/files/projects/flag-8.x-4.0-beta4.zip", + "reference": "8.x-4.0-beta4", + "shasum": "2779804f23685e1bb68a2a7b9517932dde3b1d4e" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.1 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-4.0-beta3", - "datestamp": "1638201553", + "version": "8.x-4.0-beta4", + "datestamp": "1670487892", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -5466,23 +4828,23 @@ }, { "name": "drupal/geocoder", - "version": "3.31.0", + "version": "4.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/geocoder.git", - "reference": "8.x-3.31" + "reference": "8.x-4.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-3.31.zip", - "reference": "8.x-3.31", - "shasum": "f6a24695f1fefa1c52a6119dd02c329410d22ce6" + "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-4.9.zip", + "reference": "8.x-4.9", + "shasum": "52d2bc269e82300327f5b33e435b7514d6c68d2b" }, "require": { "davedevelopment/stiphle": "^0.9.2", - "drupal/core": "^8.8 || ^9", + "drupal/core": "^9 || ^10", "php": ">=7.3.0", - "php-http/guzzle6-adapter": "^1.1 || ^2.0", + "php-http/guzzle7-adapter": "^1.0", "php-http/message": "^1.6", "willdurand/geocoder": "^4.0" }, @@ -5519,8 +4881,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.31", - "datestamp": "1663974561", + "version": "8.x-4.9", + "datestamp": "1682585195", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5561,20 +4923,22 @@ }, { "name": "drupal/geolocation", - "version": "3.10.0", + "version": "3.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/geolocation.git", - "reference": "8.x-3.10" + "reference": "8.x-3.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.10.zip", - "reference": "8.x-3.10", - "shasum": "686868c7a1bbccc24662e71a69efc9b6c90b18cf" + "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.12.zip", + "reference": "8.x-3.12", + "shasum": "eb31fe9080e2e0dcf442fc9b0a859f326219db5a" }, "require": { - "drupal/core": "^9.2", + "drupal/core": "^9.3 || ^10", + "drupal/jquery_ui": "*", + "drupal/jquery_ui_autocomplete": "^2.0", "php": "^7.3 || ^8.0" }, "require-dev": { @@ -5587,6 +4951,7 @@ "drupal/geolocation_google_maps_demo": "*", "drupal/geolocation_google_static_maps": "*", "drupal/geolocation_leaflet": "*", + "drupal/geolocation_leaflet_demo": "*", "drupal/search_api": "*", "drupal/search_api_location": "*", "drupal/search_api_location_views": "*" @@ -5594,8 +4959,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.10", - "datestamp": "1652946354", + "version": "8.x-3.12", + "datestamp": "1673282362", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5625,30 +4990,43 @@ }, { "name": "drupal/google_tag", - "version": "1.5.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/google_tag.git", - "reference": "8.x-1.5" + "reference": "2.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_tag-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "b2929a517cc86bb3e54dded127556f18236a8628" + "url": "https://ftp.drupal.org/files/projects/google_tag-2.0.2.zip", + "reference": "2.0.2", + "shasum": "8e5decb11784549842438bca9c47f0263f0484f7" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.5 || ^10", + "php": "^7.4 || ^8" + }, + "require-dev": { + "drupal/commerce": "^2.0", + "drupal/commerce_wishlist": "^3.0@beta", + "drupal/csp": "^1.0", + "drupal/google_analytics": "^4.0", + "drupal/search_api": "^1.28.0", + "drupal/token": "^1.11.0", + "drupal/webform": "^6.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1648569365", + "version": "2.0.2", + "datestamp": "1684879598", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "branch-alias": { + "dev-main": "2.x-dev" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -5677,7 +5055,7 @@ "homepage": "https://www.drupal.org/user/240748" } ], - "description": "Allows your website analytics to be managed using Google Tag Manager.", + "description": "Sets up Google Tag", "homepage": "https://www.drupal.org/project/google_tag", "support": { "source": "https://git.drupalcode.org/project/google_tag" @@ -5685,26 +5063,26 @@ }, { "name": "drupal/handy_cache_tags", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/handy_cache_tags.git", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/handy_cache_tags-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "1db106bc3e22f3899b5098b9996d59ff72f22bc9" + "url": "https://ftp.drupal.org/files/projects/handy_cache_tags-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "cf9fd07629949fdda3e3ff77c68265149a7c4ffd" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1639816593", + "version": "8.x-1.4", + "datestamp": "1664207912", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5729,17 +5107,17 @@ }, { "name": "drupal/honeypot", - "version": "2.1.2", + "version": "2.1.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/honeypot.git", - "reference": "2.1.2" + "reference": "2.1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.2.zip", - "reference": "2.1.2", - "shasum": "9511fd6db37c153f2290950bf79611b27510cede" + "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip", + "reference": "2.1.3", + "shasum": "101105029a10a574ef6017824182500ab9905856" }, "require": { "drupal/core": "^9.2 || ^10" @@ -5750,8 +5128,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.2", - "datestamp": "1664658244", + "version": "2.1.3", + "datestamp": "1695604754", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5798,26 +5176,26 @@ }, { "name": "drupal/http_cache_control", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/http_cache_control.git", - "reference": "8.x-2.0" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-2.0.zip", - "reference": "8.x-2.0", - "shasum": "7c528eedf27be54943c84e61474b3d6ff855a767" + "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "6a6864ab39fc2110cc8705e51f5106aa90362df5" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.0", - "datestamp": "1591254259", + "version": "8.x-2.1", + "datestamp": "1666053697", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5842,20 +5220,21 @@ }, { "name": "drupal/inline_entity_form", - "version": "1.0.0-rc14", + "version": "2.0.0-rc9", "source": { "type": "git", "url": "https://git.drupalcode.org/project/inline_entity_form.git", - "reference": "8.x-1.0-rc14" + "reference": "2.0.0-rc9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc14.zip", - "reference": "8.x-1.0-rc14", - "shasum": "2c9efd73332acfba43fe9b29e78e508ddc9d3664" + "url": "https://ftp.drupal.org/files/projects/inline_entity_form-2.0.0-rc9.zip", + "reference": "2.0.0-rc9", + "shasum": "aa3a2b086088b2819b9524b88876f0ca14f690e8" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10", + "drupal/core": "^9.1 || ^10", + "drupal/rat": "^1.0.0@rc", "php": ">=7.1" }, "require-dev": { @@ -5864,8 +5243,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-rc14", - "datestamp": "1663701306", + "version": "2.0.0-rc9", + "datestamp": "1694533805", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -5934,26 +5313,26 @@ }, { "name": "drupal/jquery_ui", - "version": "1.4.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jquery_ui.git", - "reference": "8.x-1.4" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe" + "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1582149957", + "version": "8.x-1.6", + "datestamp": "1668521197", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6030,27 +5409,27 @@ }, { "name": "drupal/jquery_ui_accordion", - "version": "1.1.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jquery_ui_accordion.git", - "reference": "8.x-1.1" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_accordion-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "988a3da3b0bc3042e2f42fd20e401272f8369bbd" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_accordion-2.0.0.zip", + "reference": "2.0.0", + "shasum": "47f3983502a5be5a8c201b54aa18e20f1e595477" }, "require": { - "drupal/core": "^8 || ^9", - "drupal/jquery_ui": "*" + "drupal/core": "^9.2 || ^10", + "drupal/jquery_ui": "^1.6" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1584106477", + "version": "2.0.0", + "datestamp": "1670871459", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6081,28 +5460,159 @@ "source": "https://git.drupalcode.org/project/jquery_ui_accordion" } }, + { + "name": "drupal/jquery_ui_autocomplete", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip", + "reference": "2.0.0", + "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7" + }, + "require": { + "drupal/core": "^9.2 || ^10", + "drupal/jquery_ui": "^1.6", + "drupal/jquery_ui_menu": "^2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1670871461", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "Wim Leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" + } + ], + "description": "Provides jQuery UI Autocomplete library.", + "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete" + } + }, + { + "name": "drupal/jquery_ui_menu", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_menu.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip", + "reference": "2.0.0", + "shasum": "5e1b56bf457669c7779a81784f49da63e3956854" + }, + "require": { + "drupal/core": "^9.2 || ^10", + "drupal/jquery_ui": "^1.6" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1670871546", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "Wim Leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" + } + ], + "description": "Provides jQuery UI Menu library.", + "homepage": "https://www.drupal.org/project/jquery_ui_menu", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui_menu" + } + }, { "name": "drupal/layout_builder_modal", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/layout_builder_modal.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/layout_builder_modal-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "5063c2d5e33265c92bfeed34df6682d74c973c51" + "url": "https://ftp.drupal.org/files/projects/layout_builder_modal-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "9031696991d8746f5cc9ad47f47398ac2a0cbda1" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9.2|^10.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1588175915", + "version": "8.x-1.2", + "datestamp": "1670939257", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6146,31 +5656,31 @@ }, { "name": "drupal/layout_builder_restrictions", - "version": "2.16.0", + "version": "2.19.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/layout_builder_restrictions.git", - "reference": "8.x-2.16" + "reference": "8.x-2.19" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/layout_builder_restrictions-8.x-2.16.zip", - "reference": "8.x-2.16", - "shasum": "96ae6259bd6dfa06df5b330b945bd7948423cf20" + "url": "https://ftp.drupal.org/files/projects/layout_builder_restrictions-8.x-2.19.zip", + "reference": "8.x-2.19", + "shasum": "562162568d3bf046cc63912f0985fd90c0767033" }, "require": { - "drupal/core": "^8.8.0 || ^9.0" + "drupal/core": "^9.3 || ^10" }, "require-dev": { "drupal/dashboards": "^2", - "drupal/layout_library": "^1", - "drupal/mini_layouts": "^1" + "drupal/layout_library": "dev-1.x", + "drupal/mini_layouts": "dev-2.0.x" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.16", - "datestamp": "1664989818", + "version": "8.x-2.19", + "datestamp": "1688739554", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6246,26 +5756,26 @@ }, { "name": "drupal/link_fix_absolute_urls", - "version": "1.0.2", + "version": "1.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/link_fix_absolute_urls.git", - "reference": "1.0.2" + "reference": "1.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/link_fix_absolute_urls-1.0.2.zip", - "reference": "1.0.2", - "shasum": "4b3900e6ad07b573ecc8eca48da1d96fecfe5e09" + "url": "https://ftp.drupal.org/files/projects/link_fix_absolute_urls-1.0.3.zip", + "reference": "1.0.3", + "shasum": "9a0f596e077d7572b8a09c2be43aa409bcb34e55" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.0.2", - "datestamp": "1596023687", + "version": "1.0.3", + "datestamp": "1675347914", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6295,32 +5805,33 @@ }, { "name": "drupal/linkit", - "version": "6.0.0-beta3", + "version": "6.1.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/linkit.git", - "reference": "6.0.0-beta3" + "reference": "6.1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/linkit-6.0.0-beta3.zip", - "reference": "6.0.0-beta3", - "shasum": "39a5bf54cbc88324d788a573df7b3fecf7622065" + "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip", + "reference": "6.1.2", + "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^10.1" }, "require-dev": { + "drupal/ckeditor": "*", "drupal/imce": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "6.0.0-beta3", - "datestamp": "1632946984", + "version": "6.1.2", + "datestamp": "1696865478", "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" } } }, @@ -6353,20 +5864,20 @@ }, { "name": "drupal/media_entity_browser", - "version": "2.0.0-alpha3", + "version": "2.0.0-alpha4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/media_entity_browser.git", - "reference": "8.x-2.0-alpha3" + "reference": "8.x-2.0-alpha4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_entity_browser-8.x-2.0-alpha3.zip", - "reference": "8.x-2.0-alpha3", - "shasum": "d24510f705d676ad84af35b9c0597dcdf9b7cd25" + "url": "https://ftp.drupal.org/files/projects/media_entity_browser-8.x-2.0-alpha4.zip", + "reference": "8.x-2.0-alpha4", + "shasum": "76aaa75743ad02f0db817ed2b4b7f30e54a9e427" }, "require": { - "drupal/core": "^8 || ^9", + "drupal/core": "^8 || ^9 || ^10", "drupal/entity_browser": "*", "drupal/entity_browser_entity_form": "*", "drupal/inline_entity_form": "*" @@ -6381,8 +5892,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.0-alpha3", - "datestamp": "1593747594", + "version": "8.x-2.0-alpha4", + "datestamp": "1675310826", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -6582,29 +6093,29 @@ }, { "name": "drupal/menu_breadcrumb", - "version": "1.16.0", + "version": "2.0.0-alpha0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_breadcrumb.git", - "reference": "8.x-1.16" + "reference": "2.0.0-alpha0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_breadcrumb-8.x-1.16.zip", - "reference": "8.x-1.16", - "shasum": "e7faa28edcd703c5512b480117d35718d0dd7441" + "url": "https://ftp.drupal.org/files/projects/menu_breadcrumb-2.0.0-alpha0.zip", + "reference": "2.0.0-alpha0", + "shasum": "d031d6a859b3f20a290fd9f812fdc4dace0810ef" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.16", - "datestamp": "1620238102", + "version": "2.0.0-alpha0", + "datestamp": "1675717886", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." } } }, @@ -6646,35 +6157,38 @@ }, { "name": "drupal/metatag", - "version": "1.16.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "8.x-1.16" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip", - "reference": "8.x-1.16", - "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c" + "url": "https://ftp.drupal.org/files/projects/metatag-2.0.0.zip", + "reference": "2.0.0", + "shasum": "2966c854d982b7069b1c0111519427990ebbad40" }, "require": { - "drupal/core": "^8 || ^9", - "drupal/token": "^1.0" + "drupal/core": "^9.4 || ^10", + "drupal/token": "^1.0", + "php": ">=8.0" }, "require-dev": { - "drupal/devel": "^4.0", + "drupal/devel": "^4.0 || ^5.0", + "drupal/hal": "^9 || ^1 || ^2", "drupal/metatag_dc": "*", "drupal/metatag_open_graph": "*", - "drupal/page_manager": "4.x-dev", - "drupal/panelizer": "4.x-dev", - "drupal/redirect": "1.x-dev" + "drupal/page_manager": "^4.0", + "drupal/redirect": "^1.0", + "drupal/webprofiler": "^9 || ^10", + "mpyw/phpunit-patch-serializable-comparison": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.16", - "datestamp": "1615820867", + "version": "2.0.0", + "datestamp": "1692368265", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6710,26 +6224,23 @@ }, { "name": "drupal/migrate_absolute_links", - "version": "2.1.0", + "version": "dev-4.0.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_absolute_links.git", - "reference": "8.x-2.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_absolute_links-8.x-2.1.zip", - "reference": "8.x-2.1", - "shasum": "b88d07b9414350c7b68eeb1c52616942407f35e2" + "reference": "4cf09168102bb17032defe58ee049f01ea7b96a2" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-4.0.x": "4.0.x-dev" + }, "drupal": { - "version": "8.x-2.1", - "datestamp": "1610725005", + "version": "4.0.x-dev", + "datestamp": "1691058031", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -6754,21 +6265,21 @@ }, { "name": "drupal/migrate_plus", - "version": "5.1.0", + "version": "6.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_plus.git", - "reference": "8.x-5.1" + "reference": "6.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.1.zip", - "reference": "8.x-5.1", - "shasum": "1257427ab0c64459c3c1e42bb2a98d3114b77163" + "url": "https://ftp.drupal.org/files/projects/migrate_plus-6.0.1.zip", + "reference": "6.0.1", + "shasum": "154e5c627c8b32648cb4b4034a196a289b0626fa" }, "require": { - "drupal/core": "^8.8 || ^9", - "php": ">=7.1" + "drupal/core": ">=9.1", + "php": ">=7.4" }, "require-dev": { "drupal/migrate_example_advanced_setup": "*", @@ -6781,8 +6292,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-5.1", - "datestamp": "1588261060", + "version": "6.0.1", + "datestamp": "1672428002", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6819,42 +6330,33 @@ }, { "name": "drupal/migrate_upgrade", - "version": "3.2.0", + "version": "4.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_upgrade.git", - "reference": "8.x-3.2" + "reference": "4.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "f7be28c9fa9e2c56db24fafaf4e9cd6815582aed" + "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-4.0.1.zip", + "reference": "4.0.1", + "shasum": "e9507affa61ae27adb1ea6e0d55f3bb32506ddfc" }, "require": { - "drupal/core": "^8 || ^9", - "drupal/migrate_plus": "^4 || ^5", - "drush/drush": "^8 || ^9 || ^10", - "php": ">7.1" - }, - "require-dev": { - "drupal/migrate_plus": "^5", - "drush/drush": "^10" + "drupal/core": ">=9", + "drupal/migrate_plus": ">=5", + "drush/drush": ">=9", + "php": ">7.3" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.2", - "datestamp": "1588260599", + "version": "4.0.1", + "datestamp": "1672260874", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10" - } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -6883,26 +6385,26 @@ }, { "name": "drupal/moderation_sidebar", - "version": "1.4.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/moderation_sidebar.git", - "reference": "8.x-1.4" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/moderation_sidebar-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "5e6b0b68d01cd93a31c326c9fd20524a0e12d36a" + "url": "https://ftp.drupal.org/files/projects/moderation_sidebar-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "a1887bd9dafdd67b63a1e143b719684a132936dd" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1589812642", + "version": "8.x-1.7", + "datestamp": "1670991665", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6931,26 +6433,26 @@ }, { "name": "drupal/node_edit_protection", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/node_edit_protection.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/node_edit_protection-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "741f873893607b3d7f729afa1447af0a5f2c1fd8" + "url": "https://ftp.drupal.org/files/projects/node_edit_protection-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "0304032f92cf2ce59d09a94fdc6b99791c2da418" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1598972381", + "version": "8.x-1.1", + "datestamp": "1677604800", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6991,17 +6493,17 @@ }, { "name": "drupal/noreferrer", - "version": "1.14.0", + "version": "1.16.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/noreferrer.git", - "reference": "8.x-1.14" + "reference": "8.x-1.16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/noreferrer-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "9a6b792b1cfe997c599da48470c3d84e11213a54" + "url": "https://ftp.drupal.org/files/projects/noreferrer-8.x-1.16.zip", + "reference": "8.x-1.16", + "shasum": "f02e76504bfc0a3313fde6e6a0333501921a13c7" }, "require": { "drupal/core": "^8.7.7 || ^9 || ^10" @@ -7009,8 +6511,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.14", - "datestamp": "1659078077", + "version": "8.x-1.16", + "datestamp": "1673521010", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7035,17 +6537,17 @@ }, { "name": "drupal/oembed_providers", - "version": "2.1.0", + "version": "2.1.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/oembed_providers.git", - "reference": "2.1.0" + "reference": "2.1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/oembed_providers-2.1.0.zip", - "reference": "2.1.0", - "shasum": "5724ce92547ec59adf9f7c67d587201109d0a1eb" + "url": "https://ftp.drupal.org/files/projects/oembed_providers-2.1.2.zip", + "reference": "2.1.2", + "shasum": "ad125c7e55555499f001755c365f96edce1d6343" }, "require": { "drupal/core": "^9.0|^10.0" @@ -7053,8 +6555,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.0", - "datestamp": "1657923466", + "version": "2.1.2", + "datestamp": "1692724351", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7086,17 +6588,17 @@ }, { "name": "drupal/paragraphs", - "version": "1.15.0", + "version": "1.16.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs.git", - "reference": "8.x-1.15" + "reference": "8.x-1.16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.15.zip", - "reference": "8.x-1.15", - "shasum": "2ed2d3199553010fa1c500181bbebe676e9e60c1" + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.16.zip", + "reference": "8.x-1.16", + "shasum": "48f60810fd8086a52d56e84af8b212cce7a270e8" }, "require": { "drupal/core": "^9.3 || ^10", @@ -7120,8 +6622,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.15", - "datestamp": "1661440897", + "version": "8.x-1.16", + "datestamp": "1694007797", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7166,17 +6668,17 @@ }, { "name": "drupal/pathauto", - "version": "1.11.0", + "version": "1.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/pathauto.git", - "reference": "8.x-1.11" + "reference": "8.x-1.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "a006fe9e6046a9833711a1ae56aa4752e65bcdc8" + "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c" }, "require": { "drupal/core": "^9.3 || ^10", @@ -7189,8 +6691,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1660129564", + "version": "8.x-1.12", + "datestamp": "1696776683", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7232,32 +6734,150 @@ "documentation": "https://www.drupal.org/docs/8/modules/pathauto" } }, + { + "name": "drupal/rat", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/rat.git", + "reference": "28202b02262a39ac8dbbfd43696b67c0c8c46b71" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "drupal/core": "^9.4", + "drupal/core-dev": "^9.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Drupal\\rat\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "gpl-2.0-or-later" + ], + "authors": [ + { + "name": "Merlin", + "email": "merlin@geeks4change.net" + } + ], + "time": "2023-07-19T20:22:22+00:00" + }, + { + "name": "drupal/rdf", + "version": "2.1.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/rdf.git", + "reference": "2.1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/rdf-2.1.1.zip", + "reference": "2.1.1", + "shasum": "9c897d1313abdabbe80806d79643faffaa0b2466" + }, + "require": { + "drupal/core": "^9.4 || ^10.0", + "easyrdf/easyrdf": "^0.9 || ^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.1", + "datestamp": "1666340902", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Arto", + "homepage": "https://www.drupal.org/user/26089" + }, + { + "name": "bbrala", + "homepage": "https://www.drupal.org/user/3366066" + }, + { + "name": "bhuga", + "homepage": "https://www.drupal.org/user/186547" + }, + { + "name": "febbraro", + "homepage": "https://www.drupal.org/user/43670" + }, + { + "name": "jmiccolis", + "homepage": "https://www.drupal.org/user/31731" + }, + { + "name": "linclark", + "homepage": "https://www.drupal.org/user/396253" + }, + { + "name": "miglius", + "homepage": "https://www.drupal.org/user/18741" + }, + { + "name": "scor", + "homepage": "https://www.drupal.org/user/52142" + }, + { + "name": "smustgrave", + "homepage": "https://www.drupal.org/user/3252890" + } + ], + "description": "Enriches your content with metadata to let other applications (e.g. search engines, aggregators) better understand its relationships and attributes", + "homepage": "https://www.drupal.org/project/rdf", + "support": { + "source": "https://git.drupalcode.org/project/rdf" + } + }, { "name": "drupal/readonlymode", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/readonlymode.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/readonlymode-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "c81bd71c143b14d759611d7d105146f786e442e0" + "url": "https://ftp.drupal.org/files/projects/readonlymode-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "08febabb5b208bedb1cdc001995c8366931adbe2" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" + }, + "conflict": { + "drush/drush": "<10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1603541730", + "version": "8.x-1.2", + "datestamp": "1678289108", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "drush": { + "services": { + "drush.services.yml": "^10" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -7266,12 +6886,16 @@ ], "authors": [ { - "name": "BarisW", - "homepage": "https://www.drupal.org/user/107229" + "name": "Sharique Farooqui", + "homepage": "https://www.drupal.org/u/sharique", + "email": "safknw@gmail.com", + "role": "Maintainer" }, { - "name": "bircher", - "homepage": "https://www.drupal.org/user/1344166" + "name": "Fabian Bircher", + "homepage": "https://www.drupal.org/u/bircher", + "email": "opensource@fabianbircher.com", + "role": "Maintainer" }, { "name": "petew", @@ -7282,25 +6906,29 @@ "homepage": "https://www.drupal.org/user/73545" } ], - "description": "This module will lock your site for any form postings.", + "description": "Read Only Mode provides an alternate to the built in Maintenance Mode in Drupal.", "homepage": "https://www.drupal.org/project/readonlymode", + "keywords": [ + "Drupal" + ], "support": { - "source": "https://git.drupalcode.org/project/readonlymode" + "source": "https://git.drupalcode.org/project/readonlymode", + "issues": "https://www.drupal.org/project/issues/readonlymode" } }, { "name": "drupal/redirect", - "version": "1.8.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/redirect.git", - "reference": "8.x-1.8" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "a7a440423434472ff7115ae69df01553f763f839" + "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e" }, "require": { "drupal/core": "^9.2 || ^10" @@ -7308,8 +6936,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1661806955", + "version": "8.x-1.9", + "datestamp": "1693393506", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7346,29 +6974,31 @@ }, { "name": "drupal/redis", - "version": "1.5.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/redis.git", - "reference": "8.x-1.5" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "4283333dc2bf405045765b83ca662acc409a6543" + "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "602043bdad62ff047321121edcfde8abf3638c7c" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.3 || ^10" }, "suggest": { - "predis/predis": "^1.1.1" + "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).", + "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).", + "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)." }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1609972488", + "version": "8.x-1.7", + "datestamp": "1686175620", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7410,22 +7040,30 @@ }, { "name": "drupal/scheduled_transitions", - "version": "2.2.1", + "version": "2.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/scheduled_transitions.git", - "reference": "2.2.1" + "reference": "2.3.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scheduled_transitions-2.2.1.zip", - "reference": "2.2.1", - "shasum": "3c443a40aa90c1246050c2b862d1b7a11048e9e9" + "url": "https://ftp.drupal.org/files/projects/scheduled_transitions-2.3.0.zip", + "reference": "2.3.0", + "shasum": "240e389d549141e24ec9d7d7c2223cca7b4357ca" }, "require": { - "drupal/core": "^9", - "drupal/dynamic_entity_reference": "^1.0 || ^2.0", - "php": ">=7.4" + "drupal/core": "^9.2 || ^10", + "drupal/dynamic_entity_reference": "^1.0 || ^2.0 || ^3.0 || ^4.0", + "php": ">=8.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "drupal/coder": "^8.3", + "drush/drush": "^10 || ^11", + "mglaman/phpstan-drupal": "^1", + "phpstan/phpstan": "^1", + "phpstan/phpstan-deprecation-rules": "*" }, "suggest": { "drupal/token": "Shows Token UI on Add Scheduled Transitions form." @@ -7433,8 +7071,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.1", - "datestamp": "1648075432", + "version": "2.3.0", + "datestamp": "1670235101", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7464,31 +7102,32 @@ }, { "name": "drupal/scheduler", - "version": "1.4.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/scheduler.git", - "reference": "8.x-1.4" + "reference": "2.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scheduler-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "5b2203e4688e5d3ac67d0780605809c92c6ece70" + "url": "https://ftp.drupal.org/files/projects/scheduler-2.0.1.zip", + "reference": "2.0.1", + "shasum": "d0666b4278b3e54f5c85c28298a35f492e0b715a" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "require-dev": { - "drupal/devel_generate": "^2.0 || 4.x-dev", + "drupal/commerce": "^2.0", + "drupal/devel_generate": ">=4", "drupal/rules": "^3", - "drush/drush": "^9.0 || ^10" + "drush/drush": ">=9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1654699160", + "version": "2.0.1", + "datestamp": "1689337325", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7535,30 +7174,30 @@ }, { "name": "drupal/scheduler_content_moderation_integration", - "version": "1.4.0", + "version": "2.0.0-beta2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/scheduler_content_moderation_integration.git", - "reference": "8.x-1.4" + "reference": "2.0.0-beta2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scheduler_content_moderation_integration-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "0afb23b9a5e578f2859ae3eabad1d3aadaf70418" + "url": "https://ftp.drupal.org/files/projects/scheduler_content_moderation_integration-2.0.0-beta2.zip", + "reference": "2.0.0-beta2", + "shasum": "669c62fa4f82b84f38bcf416286c753abb8b1f3e" }, "require": { - "drupal/core": "^8.7.7 || ^9", - "drupal/scheduler": "^1.1" + "drupal/core": "^8.7.7 || ^9 || ^10", + "drupal/scheduler": "^2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1653735087", + "version": "2.0.0-beta2", + "datestamp": "1695918977", "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." } } }, @@ -7591,37 +7230,41 @@ "description": "Scheduler sub-module providing content moderation functionality for publishing/unpublishing", "homepage": "https://www.drupal.org/project/scheduler_content_moderation_integration", "support": { - "source": "https://git.drupalcode.org/project/scheduler_content_moderation_integration" + "source": "https://git.drupalcode.org/project/scheduler_content_moderation_integration", + "error": "Invalid dependency: \"scheduler\", Could not parse version constraint ~: Invalid version string \"~\"" } }, { "name": "drupal/schema_metatag", - "version": "1.8.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/schema_metatag.git", - "reference": "8.x-1.8" + "reference": "3.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "dac50842bcac35607b0be8e28518e08fa3f6b66f" + "url": "https://ftp.drupal.org/files/projects/schema_metatag-3.0.1.zip", + "reference": "3.0.1", + "shasum": "fde91ea332b6e07f9c628f94d1ab1d999ae8595b" }, "require": { - "drupal/core": "^8 || ^9", - "drupal/metatag": "^1.0" + "drupal/core": "^9.0 || ^10", + "drupal/metatag": "^2.0", + "php": ">=8.0" }, "require-dev": { + "drupal/coder": "^8.3", "drupal/metatag_views": "*", "drupal/schema_article": "*", - "drupal/schema_organization": "*" + "drupal/schema_organization": "*", + "phpcompatibility/php-compatibility": "^9.3" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1599905688", + "version": "3.0.1", + "datestamp": "1687460147", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7630,7 +7273,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -7652,23 +7295,23 @@ "Drupal" ], "support": { - "source": "http://cgit.drupalcode.org/schema_metatag", + "source": "https://git.drupalcode.org/project/schema_metatag", "issues": "https://www.drupal.org/project/issues/schema_metatag" } }, { "name": "drupal/search_api", - "version": "1.28.0", + "version": "1.30.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.28" + "reference": "8.x-1.30" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.28.zip", - "reference": "8.x-1.28", - "shasum": "d3ae0bb3cf17c986d5e0c6edb87aee6580b6fc1e" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip", + "reference": "8.x-1.30", + "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8" }, "require": { "drupal/core": "^9.3 || ^10.0" @@ -7689,8 +7332,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.28", - "datestamp": "1667814116", + "version": "8.x-1.30", + "datestamp": "1697366291", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7698,7 +7341,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9 || ^10" + "drush.services.yml": "^9 || ^10 || ^11" } } }, @@ -7730,21 +7373,21 @@ }, { "name": "drupal/search_api_autocomplete", - "version": "1.6.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_autocomplete.git", - "reference": "8.x-1.6" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_autocomplete-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "4065946556cac1ccd9b19754a165fb32fc734b92" + "url": "https://ftp.drupal.org/files/projects/search_api_autocomplete-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "80f75774776cee193624fe5731906e35bff160f6" }, "require": { - "drupal/core": "^8 || ^9", - "drupal/search_api": "1.x" + "drupal/core": "^9.2 || ^10", + "drupal/search_api": "^1.0" }, "require-dev": { "drupal/search_api_page": "1.x-dev" @@ -7752,8 +7395,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1641998786", + "version": "8.x-1.8", + "datestamp": "1697366383", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7784,33 +7427,33 @@ }, { "name": "drupal/search_api_location", - "version": "1.0.0-alpha2", + "version": "1.0.0-alpha3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_location.git", - "reference": "8.x-1.0-alpha2" + "reference": "8.x-1.0-alpha3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_location-8.x-1.0-alpha2.zip", - "reference": "8.x-1.0-alpha2", - "shasum": "6524e854039d6557538b239aa2a06af1e4c7a6d0" + "url": "https://ftp.drupal.org/files/projects/search_api_location-8.x-1.0-alpha3.zip", + "reference": "8.x-1.0-alpha3", + "shasum": "feed01b73c60ba2f9512909861ed0a205e030563" }, "require": { - "drupal/core": "^8.8 || ^9", - "drupal/search_api": "*", - "phayes/geophp": "^1.2" + "drupal/core": "^8.8 || ^9 || ^10", + "drupal/search_api": "^1.28", + "itamair/geophp": "^1.2" }, "require-dev": { - "drupal/facets": "*", - "drupal/geocoder": "*", + "drupal/facets": "3.x", + "drupal/geocoder": "^4.4", "drupal/search_api": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-alpha2", - "datestamp": "1602614413", + "version": "8.x-1.0-alpha3", + "datestamp": "1677057556", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -7857,30 +7500,29 @@ }, { "name": "drupal/search_api_solr", - "version": "4.2.9", + "version": "4.2.12", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_solr.git", - "reference": "4.2.9" + "reference": "4.2.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_solr-4.2.9.zip", - "reference": "4.2.9", - "shasum": "932c9d419021e10173ddb91352d3581cdcaf8cb1" + "url": "https://ftp.drupal.org/files/projects/search_api_solr-4.2.12.zip", + "reference": "4.2.12", + "shasum": "3e6c7b22cdd1339e8373f700fdfdec332ea24e02" }, "require": { "composer/semver": "^1.0|^3.0", "consolidation/annotated-command": "^2.12|^4.1", "drupal/core": "^9.3 || ^10.0", - "drupal/search_api": "~1.26", + "drupal/search_api": "~1.29", "ext-dom": "*", "ext-json": "*", "ext-simplexml": "*", "laminas/laminas-stdlib": "^3.2", - "maennchen/zipstream-php": "^2.2.1", - "php": ">=7.4", - "solarium/solarium": "^6.2.4" + "maennchen/zipstream-php": "^2.2.1|^3.0.2", + "solarium/solarium": "^6.3.0" }, "conflict": { "drupal/acquia_search_solr": "<1.0.0-beta8", @@ -7888,14 +7530,13 @@ "drupal/search_api_solr_multilingual": "<3.0.0" }, "require-dev": { - "drupal/devel": "^4.0", - "drupal/facets": "1.x-dev", + "drupal/devel": "^4.0|^5.0", + "drupal/facets": "^3.0.x-dev", "drupal/geofield": "1.x-dev", "drupal/search_api_autocomplete": "1.x-dev", "drupal/search_api_location": "1.x-dev", "drupal/search_api_spellcheck": "3.x-dev", - "monolog/monolog": "^1.25", - "phayes/geophp": "^1.2" + "monolog/monolog": "^1.25|^3" }, "suggest": { "drupal/facets": "Provides facetted search.", @@ -7907,8 +7548,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.2.9", - "datestamp": "1665067621", + "version": "4.2.12", + "datestamp": "1687445036", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8013,33 +7654,30 @@ } }, { - "name": "drupal/shs", - "version": "2.0.0-rc4", + "name": "drupal/seven", + "version": "1.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/shs.git", - "reference": "2.0.0-rc4" + "url": "https://git.drupalcode.org/project/seven.git", + "reference": "1.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/shs-2.0.0-rc4.zip", - "reference": "2.0.0-rc4", - "shasum": "15d4d84f4c91dc9d4a304bfec8255a13b75b2195" + "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip", + "reference": "1.0.0", + "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" - }, - "require-dev": { - "drupal/chosen": "*" + "drupal/core": "^9 || ^10" }, - "type": "drupal-module", + "type": "drupal-theme", "extra": { "drupal": { - "version": "2.0.0-rc4", - "datestamp": "1681242239", + "version": "1.0.0", + "datestamp": "1683652106", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -8049,51 +7687,60 @@ ], "authors": [ { - "name": "jhedstrom", - "homepage": "https://www.drupal.org/user/208732" + "name": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" }, { - "name": "stBorchert", - "homepage": "https://www.drupal.org/user/36942" + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "mcrittenden", + "homepage": "https://www.drupal.org/user/420631" + }, + { + "name": "mrfelton", + "homepage": "https://www.drupal.org/user/305669" + }, + { + "name": "TravisCarden", + "homepage": "https://www.drupal.org/user/236758" } ], - "description": "Creates a simple hierarchical select widget for taxonomy fields.", - "homepage": "https://www.drupal.org/project/shs", + "description": "The Seven theme from Drupal 8/9 moved to contrib", + "homepage": "https://www.drupal.org/project/seven", "support": { - "source": "https://git.drupalcode.org/project/shs" + "source": "https://git.drupalcode.org/project/seven" } }, { - "name": "drupal/simple_sitemap", - "version": "3.10.0", + "name": "drupal/shs", + "version": "2.0.0-rc4", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/simple_sitemap.git", - "reference": "8.x-3.10" + "url": "https://git.drupalcode.org/project/shs.git", + "reference": "2.0.0-rc4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.10.zip", - "reference": "8.x-3.10", - "shasum": "4836e5d5bae0b4348406c832f81eabfaf16483e3" + "url": "https://ftp.drupal.org/files/projects/shs-2.0.0-rc4.zip", + "reference": "2.0.0-rc4", + "shasum": "15d4d84f4c91dc9d4a304bfec8255a13b75b2195" }, "require": { - "drupal/core": "^8 || ^9", - "ext-xmlwriter": "*" + "drupal/core": "^8.8 || ^9 || ^10" + }, + "require-dev": { + "drupal/chosen": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.10", - "datestamp": "1617840662", + "version": "2.0.0-rc4", + "datestamp": "1681242239", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10" + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -8103,46 +7750,42 @@ ], "authors": [ { - "name": "Pawel Ginalski (gbyte.co)", - "homepage": "https://www.drupal.org/u/gbyte.co", - "email": "contact@gbyte.co", - "role": "Maintainer" + "name": "jhedstrom", + "homepage": "https://www.drupal.org/user/208732" }, { - "name": "WalkingDexter", - "homepage": "https://www.drupal.org/user/3251330" + "name": "stBorchert", + "homepage": "https://www.drupal.org/user/36942" } ], - "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.", - "homepage": "https://drupal.org/project/simple_sitemap", + "description": "Creates a simple hierarchical select widget for taxonomy fields.", + "homepage": "https://www.drupal.org/project/shs", "support": { - "source": "https://cgit.drupalcode.org/simple_sitemap", - "issues": "https://drupal.org/project/issues/simple_sitemap", - "irc": "irc://irc.freenode.org/drupal-contribute" + "source": "https://git.drupalcode.org/project/shs" } }, { "name": "drupal/simplei", - "version": "1.2.0", + "version": "2.1.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/simplei.git", - "reference": "8.x-1.2" + "reference": "2.1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simplei-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "6f4af74a3215a0f7c989eb24f1620c5ea3ba79e4" + "url": "https://ftp.drupal.org/files/projects/simplei-2.1.4.zip", + "reference": "2.1.4", + "shasum": "1ed4dad4e1b3190645e20e768453f588db544e58" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1581970320", + "version": "2.1.4", + "datestamp": "1677733354", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8171,27 +7814,27 @@ }, { "name": "drupal/slick", - "version": "2.6.0", + "version": "2.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/slick.git", - "reference": "8.x-2.6" + "reference": "8.x-2.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "2e4fa5612899c3aabb86f76ccab76bd6a50b21f2" + "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.9.zip", + "reference": "8.x-2.9", + "shasum": "1c2cec19148a096f875390e2fd6a9e56caf5bacd" }, "require": { - "drupal/blazy": "~2.0", + "drupal/blazy": ">=2.14", "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1645369537", + "version": "8.x-2.9", + "datestamp": "1685789618", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8231,17 +7874,17 @@ }, { "name": "drupal/slick_views", - "version": "2.6.0", + "version": "2.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/slick_views.git", - "reference": "8.x-2.6" + "reference": "8.x-2.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/slick_views-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "522780d13d6452cdce73e8bca85b088df548dc05" + "url": "https://ftp.drupal.org/files/projects/slick_views-8.x-2.7.zip", + "reference": "8.x-2.7", + "shasum": "ca1bf78e5883adbdb10247592644d4fce4d7012c" }, "require": { "drupal/core": "^8 || ^9 || ^10", @@ -8250,8 +7893,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1640350107", + "version": "8.x-2.7", + "datestamp": "1685800148", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8283,22 +7926,22 @@ }, { "name": "drupal/smart_date", - "version": "3.7.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/smart_date.git", - "reference": "3.7.2" + "reference": "4.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smart_date-3.7.2.zip", - "reference": "3.7.2", - "shasum": "4dc2040d94688369cff3c8b1062c1991fe685963" + "url": "https://ftp.drupal.org/files/projects/smart_date-4.0.3.zip", + "reference": "4.0.3", + "shasum": "9f8fd56690eae5b5ae7231ab17641fa1d57ec261" }, "require": { "drupal/core": "^9 || ^10", "php": ">=8.0", - "simshaun/recurr": "^4" + "simshaun/recurr": "^5" }, "suggest": { "drupal/multiple_fields_remove_button": "Provides a button for editors to remove unwanted rows." @@ -8306,8 +7949,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.7.2", - "datestamp": "1677784501", + "version": "4.0.3", + "datestamp": "1689755800", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8344,19 +7987,71 @@ "documentation": "https://www.drupal.org/docs/contributed-modules/smart-date" } }, + { + "name": "drupal/stable", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/stable.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/stable-2.0.0.zip", + "reference": "2.0.0", + "shasum": "1d1ba799280bd6b9a3c46a158e6026663e080f3f" + }, + "require": { + "drupal/core": "^9 || ^10" + }, + "type": "drupal-theme", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1663102967", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "Cottser", + "homepage": "https://www.drupal.org/user/1167326" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + } + ], + "description": "A base theme using Drupal 8.0.0's core markup and CSS.", + "homepage": "https://www.drupal.org/project/stable", + "support": { + "source": "https://git.drupalcode.org/project/stable" + } + }, { "name": "drupal/structure_sync", - "version": "2.0.3", + "version": "2.0.5", "source": { "type": "git", "url": "https://git.drupalcode.org/project/structure_sync.git", - "reference": "2.0.3" + "reference": "2.0.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.3.zip", - "reference": "2.0.3", - "shasum": "67be6d3e9948531d8f6056cc7c53f713aef45490" + "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.5.zip", + "reference": "2.0.5", + "shasum": "eb744625ba3a8caf731dc7406b29797c8416f744" }, "require": { "drupal/core": "^8 || ^9 || ^10", @@ -8368,8 +8063,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1662288035", + "version": "2.0.5", + "datestamp": "1681378126", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8427,26 +8122,26 @@ }, { "name": "drupal/taxonomy_access_fix", - "version": "3.3.0", + "version": "4.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/taxonomy_access_fix.git", - "reference": "8.x-3.3" + "reference": "4.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/taxonomy_access_fix-8.x-3.3.zip", - "reference": "8.x-3.3", - "shasum": "38d95d8aa0953cd68c112f01d146f2eb8c4b125c" + "url": "https://ftp.drupal.org/files/projects/taxonomy_access_fix-4.0.1.zip", + "reference": "4.0.1", + "shasum": "d28d57ebd6436b77830ab994d7d0df7a5bf0b7f4" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.3", - "datestamp": "1655311319", + "version": "4.0.1", + "datestamp": "1691980926", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8483,27 +8178,27 @@ }, { "name": "drupal/taxonomy_manager", - "version": "2.0.7", + "version": "2.0.9", "source": { "type": "git", "url": "https://git.drupalcode.org/project/taxonomy_manager.git", - "reference": "2.0.7" + "reference": "2.0.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.7.zip", - "reference": "2.0.7", - "shasum": "3f89af2a9581334634f2d41f4459c75076059b80" + "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.9.zip", + "reference": "2.0.9", + "shasum": "c1956d809ba2149b294eb68fe2f06ada34f4cadc" }, "require": { - "drupal/core": "^8.8 || ^9", + "drupal/core": "^9.3 || ^10", "drupal/jquery_ui": "^1.4" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.7", - "datestamp": "1652326645", + "version": "2.0.9", + "datestamp": "1691588453", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8568,24 +8263,27 @@ }, { "name": "drupal/telephone_plus", - "version": "dev-1.x", + "version": "9.1.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/telephone_plus.git", - "reference": "8d94cc62de9c0635ed41d5e0b2fa1f626866ce6a" + "reference": "9.1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/telephone_plus-9.1.4.zip", + "reference": "9.1.4", + "shasum": "9f3065db2a1bfe78ac0e056ed35d545dc030933e" }, "require": { - "drupal/core": "^8 || ^9", + "drupal/core": "^9 || ^10", "giggsey/libphonenumber-for-php": "^8.0@dev" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.2+1-dev", - "datestamp": "1691006121", + "version": "9.1.4", + "datestamp": "1691050750", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -8611,33 +8309,30 @@ } }, { - "name": "drupal/timefield", - "version": "1.0.0", + "name": "drupal/timefield_d10", + "version": "dev-1.0.x", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/timefield.git", - "reference": "1.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/timefield-1.0.0.zip", - "reference": "1.0.0", - "shasum": "97f7eda5d253c1dbb13eddbea3c0be181bfb413c" + "url": "https://git.drupalcode.org/project/timefield_d10.git", + "reference": "b2995d80c6d3a2eb0cd5f3655e3ea68af7823a92" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.7.7 || ^9 || ^10" }, "suggest": { "fgelinas/timepicker": "Required to use drupal/timefield. jQuery UI Timepicker a jQuery UI time picker plugin build to match with other official jQuery UI widgets. Based on the existing date picker, it will blend nicely with your form and use your selected jQuery UI theme. The plugin is very easy to integrate in your form for you time (hours / minutes) inputs." }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.0.x": "1.0.x-dev" + }, "drupal": { - "version": "1.0.0", - "datestamp": "1643914532", + "version": "1.0.x-dev", + "datestamp": "1692282877", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" } } }, @@ -8647,37 +8342,29 @@ ], "authors": [ { - "name": "awm", - "homepage": "https://www.drupal.org/user/1059398" - }, - { - "name": "keen-on.digital", - "homepage": "https://www.drupal.org/user/3675657" - }, - { - "name": "wesnick", - "homepage": "https://www.drupal.org/user/511834" + "name": "DuttonMa", + "homepage": "https://www.drupal.org/user/2250396" } ], "description": "Implements a time field (HH:MM), with optional to time and weekly repeat value.", "homepage": "http://drupal.org/project/timefield", "support": { - "source": "https://git.drupalcode.org/project/timefield" + "source": "https://git.drupalcode.org/project/timefield_d10" } }, { "name": "drupal/token", - "version": "1.11.0", + "version": "1.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.11" + "reference": "8.x-1.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "da264b36d1f88eb0c74bf84e18e8789854f98400" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "cefe1b203b793682f74ea43e18d0a814cf768763" }, "require": { "drupal/core": "^9.2 || ^10" @@ -8685,8 +8372,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1659471813", + "version": "8.x-1.12", + "datestamp": "1688015262", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8736,27 +8423,27 @@ }, { "name": "drupal/token_filter", - "version": "1.4.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token_filter.git", - "reference": "8.x-1.4" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token_filter-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "d0d4ddc098c8e8002a0aefb066cb6cd7481a4658" + "url": "https://ftp.drupal.org/files/projects/token_filter-2.0.0.zip", + "reference": "2.0.0", + "shasum": "73a4dc759ed78d634d4414ec81febc3428ebd2a5" }, "require": { - "drupal/core": "^8 || ^9", + "drupal/core": "^9.4 || ^10", "drupal/token": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1649114304", + "version": "2.0.0", + "datestamp": "1675762777", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8805,26 +8492,26 @@ }, { "name": "drupal/twig_field_value", - "version": "2.0.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/twig_field_value.git", - "reference": "2.0.0" + "reference": "2.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/twig_field_value-2.0.0.zip", - "reference": "2.0.0", - "shasum": "d2d0db6249493542bf9d568970f67d10ce143f90" + "url": "https://ftp.drupal.org/files/projects/twig_field_value-2.0.2.zip", + "reference": "2.0.2", + "shasum": "7d1267c6ed5ef0e5d6ab82732e42bc505bb2dec8" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1587069998", + "version": "2.0.2", + "datestamp": "1671703066", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8857,21 +8544,24 @@ }, { "name": "drupal/twig_tweak", - "version": "2.9.0", + "version": "3.2.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/twig_tweak.git", - "reference": "8.x-2.9" + "reference": "3.2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/twig_tweak-8.x-2.9.zip", - "reference": "8.x-2.9", - "shasum": "c45ba1a41e323a432d1ff36d0a72344b88595a39" + "url": "https://ftp.drupal.org/files/projects/twig_tweak-3.2.1.zip", + "reference": "3.2.1", + "shasum": "89fc08b60f494a7d786251b6c2c493c536218222" }, "require": { - "drupal/core": "^8.7 || ^9.0", - "twig/twig": "^1.41 || ^2.12" + "drupal/core": "^9.3 || ^10.0", + "ext-json": "*", + "php": ">=7.3", + "symfony/polyfill-php80": "^1.17", + "twig/twig": "^2.12 || ^3.3.8" }, "suggest": { "symfony/var-dumper": "Better dump() function for debugging Twig variables" @@ -8879,17 +8569,22 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.9", - "datestamp": "1608093728", + "version": "3.2.1", + "datestamp": "1677404306", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10 || ^11" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -8910,26 +8605,26 @@ }, { "name": "drupal/ultimate_cron", - "version": "2.0.0-alpha5", + "version": "2.0.0-alpha6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ultimate_cron.git", - "reference": "8.x-2.0-alpha5" + "reference": "8.x-2.0-alpha6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip", - "reference": "8.x-2.0-alpha5", - "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75" + "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip", + "reference": "8.x-2.0-alpha6", + "shasum": "42ab6df8e94a9b3772876a378062534552a32826" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.0-alpha5", - "datestamp": "1600928948", + "version": "8.x-2.0-alpha6", + "datestamp": "1666471448", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -8937,7 +8632,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9 || ^10" + "drush.services.yml": "^9 || ^10 || ^11" } } }, @@ -8979,26 +8674,26 @@ }, { "name": "drupal/views_contextual_filters_or", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/views_contextual_filters_or.git", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_contextual_filters_or-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "92369481206bc4db23dcf3ca17b4bc1cc3f3f1f3" + "url": "https://ftp.drupal.org/files/projects/views_contextual_filters_or-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "826c6ca2a6a305d72fc3d3f750d81240a96b1640" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1640344336", + "version": "8.x-1.4", + "datestamp": "1671734083", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9023,26 +8718,26 @@ }, { "name": "drupal/views_custom_cache_tag", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/views_custom_cache_tag.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_custom_cache_tag-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "65f4bd588909ba43885f2c09056fda971f64a71b" + "url": "https://ftp.drupal.org/files/projects/views_custom_cache_tag-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "8dfe2dc68b05187cf01529b7be99c4889fc47e80" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.7.7 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1579956784", + "version": "8.x-1.3", + "datestamp": "1671650418", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9067,46 +8762,47 @@ }, { "name": "drupal/webform", - "version": "6.1.3", + "version": "6.2.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "6.1.3" + "reference": "6.2.0-rc2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-6.1.3.zip", - "reference": "6.1.3", - "shasum": "efd032eadc10a4752b9b0203152a5d20eefac175" + "url": "https://ftp.drupal.org/files/projects/webform-6.2.0-rc2.zip", + "reference": "6.2.0-rc2", + "shasum": "2f6c6b693dc4af73c81d2290b4e82a669f0aa2dc" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.4 || ^10", + "php": ">=8.1" }, "require-dev": { - "drupal/address": "~1.0", - "drupal/bootstrap": "~3.0", - "drupal/captcha": "~1.0", - "drupal/chosen": "~3.0", - "drupal/clientside_validation": "~3.0", + "drupal/address": "1.x-dev", + "drupal/bootstrap": "3.x-dev", + "drupal/captcha": "^1 || ^2", + "drupal/chosen": "3.0.x-dev", + "drupal/ckeditor": "1.0.x-dev", + "drupal/clientside_validation": "^3 || ^4", "drupal/clientside_validation_jquery": "*", - "drupal/devel": "~3.0", - "drupal/entity": "~1.0", - "drupal/entity_print": "~2.0", - "drupal/gnode": "*", - "drupal/group": "1.0", - "drupal/jquery_ui": "~1.0", - "drupal/jquery_ui_checkboxradio": "~1.0", - "drupal/jquery_ui_datepicker": "~1.0", - "drupal/lingotek": "~3.0", - "drupal/mailsystem": "~4.0", - "drupal/paragraphs": "~1.0", - "drupal/select2": "~1.0", - "drupal/smtp": "~1.0", - "drupal/styleguide": "~1.0", - "drupal/telephone_validation": "~2.0", - "drupal/token": "~1.0", - "drupal/variationcache": "~1.0", - "drupal/webform-webform_group": "*", + "drupal/devel": "5.x-dev", + "drupal/entity": "1.x-dev", + "drupal/entity_print": "2.x-dev", + "drupal/group": "1.x-dev", + "drupal/hal": "1 - 2", + "drupal/jquery_ui": "1.x-dev", + "drupal/jquery_ui_checkboxradio": "2.x-dev", + "drupal/jquery_ui_datepicker": "2.x-dev", + "drupal/mailsystem": "4.x-dev", + "drupal/metatag": "1.x-dev", + "drupal/paragraphs": "1.x-dev", + "drupal/select2": "1.x-dev", + "drupal/smtp": "1.x-dev", + "drupal/styleguide": "^1 || ^2", + "drupal/telephone_validation": "2.x-dev", + "drupal/token": "1.x-dev", + "drupal/variationcache": "1.x-dev", "drupal/webform_access": "*", "drupal/webform_attachment": "*", "drupal/webform_clientside_validation": "*", @@ -9125,16 +8821,16 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.1.3", - "datestamp": "1644940723", + "version": "6.2.0-rc2", + "datestamp": "1697463934", "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." } }, "drush": { "services": { - "drush.services.yml": "^9 || ^10" + "drush.services.yml": ">=9" } } }, @@ -9148,16 +8844,15 @@ "homepage": "https://www.drupal.org/u/jrockowitz", "role": "Maintainer" }, - { - "name": "Alexander Trotsenko (bucefal91)", - "homepage": "https://www.drupal.org/u/bucefal91", - "role": "Co-maintainer" - }, { "name": "Contributors", "homepage": "https://www.drupal.org/node/7404/committers", "role": "Contributor" }, + { + "name": "Liam Morland", + "homepage": "https://www.drupal.org/user/493050" + }, { "name": "quicksketch", "homepage": "https://www.drupal.org/user/35821" @@ -9178,26 +8873,26 @@ }, { "name": "drupal/whatlinkshere", - "version": "2.1.2", + "version": "2.1.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/whatlinkshere.git", - "reference": "2.1.2" + "reference": "2.1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/whatlinkshere-2.1.2.zip", - "reference": "2.1.2", - "shasum": "40a3b9a3ac2db1bb9c1c0b6ed934c401f14003d7" + "url": "https://ftp.drupal.org/files/projects/whatlinkshere-2.1.3.zip", + "reference": "2.1.3", + "shasum": "463b4c5db0857376fdf509661650ec41aa49c1bc" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.2", - "datestamp": "1680010101", + "version": "2.1.3", + "datestamp": "1689085699", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -9229,42 +8924,43 @@ }, { "name": "drush/drush", - "version": "10.6.2", + "version": "11.6.0", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "0a570a16ec63259eb71195aba5feab532318b337" + "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337", - "reference": "0a570a16ec63259eb71195aba5feab532318b337", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78", + "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^1.32.1", + "chi-teck/drupal-code-generator": "^2.4", "composer/semver": "^1.4 || ^3", - "consolidation/config": "^1.2", - "consolidation/filter-via-dot-access-data": "^1", - "consolidation/robo": "^1.4.11 || ^2 || ^3", - "consolidation/site-alias": "^3.0.0@stable", - "consolidation/site-process": "^2.1 || ^4", + "consolidation/annotated-command": "^4.8.2", + "consolidation/config": "^2", + "consolidation/filter-via-dot-access-data": "^2", + "consolidation/robo": "^3.0.9 || ^4.0.1", + "consolidation/site-alias": "^3.1.6 || ^4", + "consolidation/site-process": "^4.1.3 || ^5", "enlightn/security-checker": "^1", "ext-dom": "*", - "grasmash/yaml-expander": "^1.1.1", - "guzzlehttp/guzzle": "^6.3 || ^7.0", - "league/container": "^2.5 || ^3.4", - "php": ">=7.1.3", - "psr/log": "~1.0", - "psy/psysh": ">=0.6 <0.11", - "symfony/event-dispatcher": "^3.4 || ^4.0", - "symfony/finder": "^3.4 || ^4.0 || ^5", - "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0", - "symfony/yaml": "^3.4 || ^4.0", - "webflo/drupal-finder": "^1.2", - "webmozart/path-util": "^2.1.0" + "guzzlehttp/guzzle": "^6.5 || ^7.0", + "league/container": "^3.4 || ^4", + "php": ">=7.4", + "psy/psysh": "~0.11", + "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0", + "symfony/filesystem": "^4.4 || ^5.4 || ^6.1", + "symfony/finder": "^4.0 || ^5 || ^6", + "symfony/polyfill-php80": "^1.23", + "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0", + "symfony/yaml": "^4.0 || ^5.0 || ^6.0", + "webflo/drupal-finder": "^1.2" }, "conflict": { + "drupal/core": "< 9.2", "drupal/migrate_run": "*", "drupal/migrate_tools": "<= 5" }, @@ -9272,10 +8968,11 @@ "composer/installers": "^1.7", "cweagans/composer-patches": "~1.0", "david-garcia/phpwhois": "4.3.0", - "drupal/alinks": "1.0.0", - "drupal/core-recommended": "^8.8", + "drupal/core-recommended": "^9 || ^10", + "drupal/semver_example": "2.3.0", "phpunit/phpunit": ">=7.5.20", - "squizlabs/php_codesniffer": "^2.7 || ^3", + "rector/rector": "^0.12", + "squizlabs/php_codesniffer": "^3.6", "vlucas/phpdotenv": "^2.4", "yoast/phpunit-polyfills": "^0.2.0" }, @@ -9313,8 +9010,7 @@ }, "autoload": { "psr-4": { - "Drush\\": "src/", - "Drush\\Internal\\": "src/internal-forks" + "Drush\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -9359,10 +9055,9 @@ "homepage": "http://www.drush.org", "support": { "forum": "http://drupal.stackexchange.com/questions/tagged/drush", - "irc": "irc://irc.freenode.org/drush", "issues": "https://github.com/drush-ops/drush/issues", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/10.6.2" + "source": "https://github.com/drush-ops/drush/tree/11.6.0" }, "funding": [ { @@ -9370,66 +9065,141 @@ "type": "github" } ], - "time": "2021-12-15T17:09:54+00:00" + "time": "2023-06-06T18:46:18+00:00" }, { - "name": "egulias/email-validator", - "version": "3.2.6", + "name": "easyrdf/easyrdf", + "version": "1.1.1", "source": { "type": "git", - "url": "https://github.com/egulias/EmailValidator.git", - "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7" + "url": "https://github.com/easyrdf/easyrdf.git", + "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7", - "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7", + "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64", + "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64", "shasum": "" }, "require": { - "doctrine/lexer": "^1.2|^2", - "php": ">=7.2", - "symfony/polyfill-intl-idn": "^1.15" + "ext-dom": "*", + "ext-mbstring": "*", + "ext-pcre": "*", + "ext-xmlreader": "*", + "lib-libxml": "*", + "php": ">=7.1.0" }, "require-dev": { - "phpunit/phpunit": "^8.5.8|^9.3.3", - "vimeo/psalm": "^4" + "code-lts/doctum": "^5", + "ml/json-ld": "~1.0", + "phpunit/phpunit": "^7", + "semsol/arc2": "^2.4", + "squizlabs/php_codesniffer": "3.*", + "zendframework/zend-http": "~2.3" }, "suggest": { - "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + "ml/json-ld": "~1.0", + "semsol/arc2": "~2.2" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0.x-dev" - } - }, "autoload": { "psr-4": { - "Egulias\\EmailValidator\\": "src" + "EasyRdf\\": "lib" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Eduardo Gulias Davis" - } - ], - "description": "A library for validating emails against several RFCs", - "homepage": "https://github.com/egulias/EmailValidator", - "keywords": [ - "email", - "emailvalidation", - "emailvalidator", + "name": "Nicholas Humfrey", + "email": "njh@aelius.com", + "homepage": "http://www.aelius.com/njh/", + "role": "Developer" + }, + { + "name": "Alexey Zakhlestin", + "email": "indeyets@gmail.com", + "homepage": "http://indeyets.ru/", + "role": "Developer" + } + ], + "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" + ], + "support": { + "forum": "http://groups.google.com/group/easyrdf/", + "issues": "http://github.com/easyrdf/easyrdf/issues", + "source": "https://github.com/easyrdf/easyrdf/tree/1.1.1" + }, + "time": "2020-12-02T08:47:31+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.2", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" + }, + "require-dev": { + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", "validation", "validator" ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/3.2.6" + "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" }, "funding": [ { @@ -9437,34 +9207,34 @@ "type": "github" } ], - "time": "2023-06-01T07:04:22+00:00" + "time": "2023-10-06T06:47:41+00:00" }, { "name": "enlightn/security-checker", - "version": "v1.8.0", + "version": "v1.10.0", "source": { "type": "git", "url": "https://github.com/enlightn/security-checker.git", - "reference": "2054fbce2f8df681c8f71b36656222bcd241b77f" + "reference": "196bacc76e7a72a63d0e1220926dbb190272db97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/enlightn/security-checker/zipball/2054fbce2f8df681c8f71b36656222bcd241b77f", - "reference": "2054fbce2f8df681c8f71b36656222bcd241b77f", + "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97", + "reference": "196bacc76e7a72a63d0e1220926dbb190272db97", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/guzzle": "^6.3|^7.0", "php": ">=5.6", - "symfony/console": "^3.4|^4|^5", - "symfony/finder": "^3|^4|^5", - "symfony/process": "^3.4|^4|^5", - "symfony/yaml": "^3.4|^4|^5" + "symfony/console": "^3.4|^4|^5|^6", + "symfony/finder": "^3|^4|^5|^6", + "symfony/process": "^3.4|^4|^5|^6", + "symfony/yaml": "^3.4|^4|^5|^6" }, "require-dev": { "ext-zip": "*", - "friendsofphp/php-cs-fixer": "^2.18", + "friendsofphp/php-cs-fixer": "^2.18|^3.0", "phpunit/phpunit": "^5.5|^6|^7|^8|^9" }, "bin": [ @@ -9501,29 +9271,36 @@ ], "support": { "issues": "https://github.com/enlightn/security-checker/issues", - "source": "https://github.com/enlightn/security-checker/tree/v1.8.0" + "source": "https://github.com/enlightn/security-checker/tree/v1.10.0" }, - "time": "2021-04-19T07:13:16+00:00" + "time": "2022-02-21T22:40:16+00:00" }, { "name": "ezyang/htmlpurifier", - "version": "v4.13.0", + "version": "v4.16.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75" + "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75", - "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8", + "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8", "shasum": "" }, "require": { - "php": ">=5.2" + "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0" }, "require-dev": { - "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd" + "cerdic/css-tidy": "^1.7 || ^2.0", + "simpletest/simpletest": "dev-master" + }, + "suggest": { + "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", + "ext-bcmath": "Used for unit conversion and imagecrash protection", + "ext-iconv": "Converts text to and from non-UTF-8 encodings", + "ext-tidy": "Used for pretty-printing HTML" }, "type": "library", "autoload": { @@ -9555,31 +9332,94 @@ ], "support": { "issues": "https://github.com/ezyang/htmlpurifier/issues", - "source": "https://github.com/ezyang/htmlpurifier/tree/master" + "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0" + }, + "time": "2022-09-18T07:06:19+00:00" + }, + { + "name": "firebase/php-jwt", + "version": "v6.9.0", + "source": { + "type": "git", + "url": "https://github.com/firebase/php-jwt.git", + "reference": "f03270e63eaccf3019ef0f32849c497385774e11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f03270e63eaccf3019ef0f32849c497385774e11", + "reference": "f03270e63eaccf3019ef0f32849c497385774e11", + "shasum": "" + }, + "require": { + "php": "^7.4||^8.0" + }, + "require-dev": { + "guzzlehttp/guzzle": "^6.5||^7.4", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.5", + "psr/cache": "^1.0||^2.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0" + }, + "suggest": { + "ext-sodium": "Support EdDSA (Ed25519) signatures", + "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present" + }, + "type": "library", + "autoload": { + "psr-4": { + "Firebase\\JWT\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Neuman Vong", + "email": "neuman+pear@twilio.com", + "role": "Developer" + }, + { + "name": "Anant Narayanan", + "email": "anant@php.net", + "role": "Developer" + } + ], + "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", + "homepage": "https://github.com/firebase/php-jwt", + "keywords": [ + "jwt", + "php" + ], + "support": { + "issues": "https://github.com/firebase/php-jwt/issues", + "source": "https://github.com/firebase/php-jwt/tree/v6.9.0" }, - "time": "2020-06-29T00:56:53+00:00" + "time": "2023-10-05T00:24:42+00:00" }, { "name": "geocoder-php/common-http", - "version": "4.4.0", + "version": "dev-master", "source": { "type": "git", "url": "https://github.com/geocoder-php/php-common-http.git", - "reference": "9f44a006d4b45d01dd31ea9b38ee7fb5724cd73e" + "reference": "15629fd7bf771f525282ad1b60d2106bcf630ce9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/9f44a006d4b45d01dd31ea9b38ee7fb5724cd73e", - "reference": "9f44a006d4b45d01dd31ea9b38ee7fb5724cd73e", + "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/15629fd7bf771f525282ad1b60d2106bcf630ce9", + "reference": "15629fd7bf771f525282ad1b60d2106bcf630ce9", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0", + "php": "^8.0", "php-http/client-implementation": "^1.0", "php-http/discovery": "^1.6", "php-http/httplug": "^1.0 || ^2.0", "php-http/message-factory": "^1.0.2", - "psr/http-message": "^1.0", + "psr/http-message": "^1.0 || ^2.0", "psr/http-message-implementation": "^1.0", "willdurand/geocoder": "^4.0" }, @@ -9588,8 +9428,9 @@ "php-http/message": "^1.0", "php-http/mock-client": "^1.0", "phpunit/phpunit": "^9.5", - "symfony/stopwatch": "~2.5" + "symfony/stopwatch": "~2.5 || ~5.0" }, + "default-branch": true, "type": "library", "extra": { "branch-alias": { @@ -9620,22 +9461,22 @@ "http geocoder" ], "support": { - "source": "https://github.com/geocoder-php/php-common-http/tree/4.4.0" + "source": "https://github.com/geocoder-php/php-common-http/tree/master" }, - "time": "2020-12-21T09:30:01+00:00" + "time": "2023-07-31T20:07:24+00:00" }, { "name": "geocoder-php/google-maps-provider", - "version": "4.7.0", + "version": "4.7.1", "source": { "type": "git", "url": "https://github.com/geocoder-php/google-maps-provider.git", - "reference": "378cd4dd26cba5a004f2a4738e8988e646af3274" + "reference": "ee0dbc229380903043542ae2a79b4518b9f0df17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/geocoder-php/google-maps-provider/zipball/378cd4dd26cba5a004f2a4738e8988e646af3274", - "reference": "378cd4dd26cba5a004f2a4738e8988e646af3274", + "url": "https://api.github.com/repos/geocoder-php/google-maps-provider/zipball/ee0dbc229380903043542ae2a79b4518b9f0df17", + "reference": "ee0dbc229380903043542ae2a79b4518b9f0df17", "shasum": "" }, "require": { @@ -9679,26 +9520,26 @@ "description": "Geocoder GoogleMaps adapter", "homepage": "http://geocoder-php.org/Geocoder/", "support": { - "source": "https://github.com/geocoder-php/google-maps-provider/tree/4.7.0" + "source": "https://github.com/geocoder-php/google-maps-provider/tree/4.7.1" }, - "time": "2022-07-30T12:09:30+00:00" + "time": "2023-04-14T11:13:20+00:00" }, { "name": "giggsey/libphonenumber-for-php", - "version": "8.12.21", + "version": "8.13.23", "source": { "type": "git", "url": "https://github.com/giggsey/libphonenumber-for-php.git", - "reference": "272b8123ba7f1b7975620c6389e7206281b4a3ce" + "reference": "b2dff83693cb46eb4478b193e9d94e2ff6258480" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/272b8123ba7f1b7975620c6389e7206281b4a3ce", - "reference": "272b8123ba7f1b7975620c6389e7206281b4a3ce", + "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/b2dff83693cb46eb4478b193e9d94e2ff6258480", + "reference": "b2dff83693cb46eb4478b193e9d94e2ff6258480", "shasum": "" }, "require": { - "giggsey/locale": "^1.7", + "giggsey/locale": "^1.7|^2.0", "php": ">=5.3.2", "symfony/polyfill-mbstring": "^1.17" }, @@ -9708,7 +9549,7 @@ "pear/versioncontrol_git": "^0.5", "phing/phing": "^2.7", "php-coveralls/php-coveralls": "^1.0|^2.0", - "symfony/console": "^2.8|^3.0", + "symfony/console": "^2.8|^3.0|^v4.4|^v5.2", "symfony/phpunit-bridge": "^4.2 || ^5" }, "type": "library", @@ -9750,40 +9591,40 @@ "validation" ], "support": { - "irc": "irc://irc.appliedirc.com/lobby", "issues": "https://github.com/giggsey/libphonenumber-for-php/issues", "source": "https://github.com/giggsey/libphonenumber-for-php" }, - "time": "2021-04-06T08:37:32+00:00" + "time": "2023-10-11T07:12:56+00:00" }, { "name": "giggsey/locale", - "version": "1.9", + "version": "2.4", "source": { "type": "git", "url": "https://github.com/giggsey/Locale.git", - "reference": "b07f1eace8072ccc61445ad8fbd493ff9d783043" + "reference": "a6b33dfc9e8949b7e28133c4628b29cd9f1850bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/Locale/zipball/b07f1eace8072ccc61445ad8fbd493ff9d783043", - "reference": "b07f1eace8072ccc61445ad8fbd493ff9d783043", + "url": "https://api.github.com/repos/giggsey/Locale/zipball/a6b33dfc9e8949b7e28133c4628b29cd9f1850bb", + "reference": "a6b33dfc9e8949b7e28133c4628b29cd9f1850bb", "shasum": "" }, "require": { - "php": ">=5.3.2" + "php": ">=7.2" }, "require-dev": { + "ext-json": "*", "pear/pear-core-minimal": "^1.9", "pear/pear_exception": "^1.0", "pear/versioncontrol_git": "^0.5", - "phing/phing": "~2.7", - "php-coveralls/php-coveralls": "^1.0|^2.0", - "phpunit/phpunit": "^4.8|^5.0", - "symfony/console": "^2.8|^3.0|^4.0", - "symfony/filesystem": "^2.8|^3.0|^4.0", - "symfony/finder": "^2.8|^3.0|^4.0", - "symfony/process": "^2.8|^3.0|^4.0" + "phing/phing": "^2.7", + "php-coveralls/php-coveralls": "^2.0", + "phpunit/phpunit": "^8.5|^9.5", + "symfony/console": "^5.0|^6.0", + "symfony/filesystem": "^5.0|^6.0", + "symfony/finder": "^5.0|^6.0", + "symfony/process": "^5.0|^6.0" }, "type": "library", "autoload": { @@ -9799,49 +9640,41 @@ { "name": "Joshua Gigg", "email": "giggsey@gmail.com", - "homepage": "http://giggsey.com/" + "homepage": "https://giggsey.com/" } ], "description": "Locale functions required by libphonenumber-for-php", "support": { "issues": "https://github.com/giggsey/Locale/issues", - "source": "https://github.com/giggsey/Locale/tree/master" + "source": "https://github.com/giggsey/Locale/tree/2.4" }, - "time": "2020-07-07T11:16:24+00:00" + "time": "2023-04-13T07:40:58+00:00" }, { - "name": "grasmash/expander", - "version": "1.0.0", + "name": "graham-campbell/result-type", + "version": "v1.1.1", "source": { "type": "git", - "url": "https://github.com/grasmash/expander.git", - "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f" + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f", - "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", + "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", - "php": ">=5.4" + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.1" }, "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" + "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, "autoload": { "psr-4": { - "Grasmash\\Expander\\": "src/" + "GrahamCampbell\\ResultType\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -9850,40 +9683,59 @@ ], "authors": [ { - "name": "Matthew Grasmick" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" } ], - "description": "Expands internal property references in PHP arrays file.", + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], "support": { - "issues": "https://github.com/grasmash/expander/issues", - "source": "https://github.com/grasmash/expander/tree/master" + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" }, - "time": "2017-12-21T22:14:55+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2023-02-25T20:23:15+00:00" }, { - "name": "grasmash/yaml-expander", - "version": "1.4.0", + "name": "grasmash/expander", + "version": "3.0.0", "source": { "type": "git", - "url": "https://github.com/grasmash/yaml-expander.git", - "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1" + "url": "https://github.com/grasmash/expander.git", + "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1", - "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1", + "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", + "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", - "php": ">=5.4", - "symfony/yaml": "^2.8.11|^3|^4" + "dflydev/dot-access-data": "^3.0.0", + "php": ">=8.0", + "psr/log": "^2 | ^3" }, "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" + "php-coveralls/php-coveralls": "^2.5", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.3" }, "type": "library", "extra": { @@ -9893,7 +9745,7 @@ }, "autoload": { "psr-4": { - "Grasmash\\YamlExpander\\": "src/" + "Grasmash\\Expander\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -9905,46 +9757,56 @@ "name": "Matthew Grasmick" } ], - "description": "Expands internal property references in a yaml file.", + "description": "Expands internal property references in PHP arrays file.", "support": { - "issues": "https://github.com/grasmash/yaml-expander/issues", - "source": "https://github.com/grasmash/yaml-expander/tree/master" + "issues": "https://github.com/grasmash/expander/issues", + "source": "https://github.com/grasmash/expander/tree/3.0.0" }, - "time": "2017-12-16T16:06:03+00:00" + "time": "2022-05-10T13:14:49+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "6.5.8", + "version": "7.7.1", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981" + "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981", - "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454", + "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.9", - "php": ">=5.5", - "symfony/polyfill-intl-idn": "^1.17" + "guzzlehttp/promises": "^1.5.3 || ^2.0", + "guzzlehttp/psr7": "^1.9.1 || ^2.4.5", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" }, "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.1", "ext-curl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.1" + "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.29 || ^9.5.23", + "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", "psr/log": "Required for using the Log middleware" }, "type": "library", "extra": { - "branch-alias": { - "dev-master": "6.5-dev" + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, "autoload": { @@ -9997,19 +9859,20 @@ } ], "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", "keywords": [ "client", "curl", "framework", "http", "http client", + "psr-18", + "psr-7", "rest", "web service" ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/6.5.8" + "source": "https://github.com/guzzle/guzzle/tree/7.7.1" }, "funding": [ { @@ -10025,33 +9888,37 @@ "type": "tidelift" } ], - "time": "2022-06-20T22:16:07+00:00" + "time": "2023-08-27T10:02:06+00:00" }, { "name": "guzzlehttp/promises", - "version": "1.5.3", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e" + "reference": "111166291a0f8130081195ac4556a5587d7f1b5d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e", - "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e", + "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d", + "reference": "111166291a0f8130081195ac4556a5587d7f1b5d", "shasum": "" }, "require": { - "php": ">=5.5" + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "symfony/phpunit-bridge": "^4.4 || ^5.1" + "bamarni/composer-bin-plugin": "^1.8.1", + "phpunit/phpunit": "^8.5.29 || ^9.5.23" }, "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { "GuzzleHttp\\Promise\\": "src/" } @@ -10088,7 +9955,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/1.5.3" + "source": "https://github.com/guzzle/promises/tree/2.0.1" }, "funding": [ { @@ -10104,42 +9971,48 @@ "type": "tidelift" } ], - "time": "2023-05-21T12:31:43+00:00" + "time": "2023-08-03T15:11:55+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.9.1", + "version": "2.5.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b" + "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b", - "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f", + "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f", "shasum": "" }, "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" }, "provide": { + "psr/http-factory-implementation": "1.0", "psr/http-message-implementation": "1.0" }, "require-dev": { - "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" + "bamarni/composer-bin-plugin": "^1.8.1", + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^8.5.29 || ^9.5.23" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { "GuzzleHttp\\Psr7\\": "src/" } @@ -10178,6 +10051,11 @@ "name": "Tobias Schultze", "email": "webmaster@tubo-world.de", "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" } ], "description": "PSR-7 message implementation that also provides common utility methods", @@ -10193,7 +10071,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.9.1" + "source": "https://github.com/guzzle/psr7/tree/2.5.1" }, "funding": [ { @@ -10209,173 +10087,175 @@ "type": "tidelift" } ], - "time": "2023-04-17T16:00:37+00:00" + "time": "2023-08-03T15:02:42+00:00" }, { - "name": "harvesthq/chosen", - "version": "1.8.7", - "dist": { - "type": "zip", - "url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip" - }, - "require": { - "composer/installers": "^1.2.0" - }, - "type": "drupal-library" - }, - { - "name": "kenwheeler/slick", - "version": "1.8.0", - "dist": { - "type": "zip", - "url": "https://github.com/kenwheeler/slick/archive/1.8.0.zip" - }, - "require": { - "composer/installers": "^1.2.0" - }, - "type": "drupal-library" - }, - { - "name": "laminas/laminas-escaper", - "version": "2.12.0", + "name": "halaxa/json-machine", + "version": "1.1.3", "source": { "type": "git", - "url": "https://github.com/laminas/laminas-escaper.git", - "reference": "ee7a4c37bf3d0e8c03635d5bddb5bb3184ead490" + "url": "https://github.com/halaxa/json-machine.git", + "reference": "514025c5ebbdb8a058745b573b4a1e81d685802c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/ee7a4c37bf3d0e8c03635d5bddb5bb3184ead490", - "reference": "ee7a4c37bf3d0e8c03635d5bddb5bb3184ead490", + "url": "https://api.github.com/repos/halaxa/json-machine/zipball/514025c5ebbdb8a058745b573b4a1e81d685802c", + "reference": "514025c5ebbdb8a058745b573b4a1e81d685802c", "shasum": "" }, "require": { - "ext-ctype": "*", - "ext-mbstring": "*", - "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0" - }, - "conflict": { - "zendframework/zend-escaper": "*" + "php": ">=7.0" }, "require-dev": { - "infection/infection": "^0.26.6", - "laminas/laminas-coding-standard": "~2.4.0", - "maglnet/composer-require-checker": "^3.8.0", - "phpunit/phpunit": "^9.5.18", - "psalm/plugin-phpunit": "^0.17.0", - "vimeo/psalm": "^4.22.0" + "ext-json": "*", + "friendsofphp/php-cs-fixer": "^3.0", + "phpunit/phpunit": "^8.0" + }, + "suggest": { + "ext-json": "To run JSON Machine out of the box without custom decoders.", + "guzzlehttp/guzzle": "To run example with GuzzleHttp" }, "type": "library", "autoload": { "psr-4": { - "Laminas\\Escaper\\": "src/" - } + "JsonMachine\\": "src/" + }, + "exclude-from-classmap": [ + "src/autoloader.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "Apache-2.0" ], - "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs", - "homepage": "https://laminas.dev", - "keywords": [ - "escaper", - "laminas" + "authors": [ + { + "name": "Filip Halaxa", + "email": "filip@halaxa.cz" + } ], + "description": "Efficient, easy-to-use and fast JSON pull parser", "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-escaper/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-escaper/issues", - "rss": "https://github.com/laminas/laminas-escaper/releases.atom", - "source": "https://github.com/laminas/laminas-escaper" + "issues": "https://github.com/halaxa/json-machine/issues", + "source": "https://github.com/halaxa/json-machine/tree/1.1.3" }, "funding": [ { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" + "url": "https://ko-fi.com/G2G57KTE4", + "type": "other" } ], - "time": "2022-10-10T10:11:09+00:00" + "time": "2022-10-12T11:40:33+00:00" }, { - "name": "laminas/laminas-feed", - "version": "2.21.0", + "name": "harvesthq/chosen", + "version": "v1.8.7", "source": { "type": "git", - "url": "https://github.com/laminas/laminas-feed.git", - "reference": "52918789a417bc292ccd6fbb4b91bd78a65d50ab" + "url": "https://github.com/harvesthq/chosen-package.git", + "reference": "ad86732b668627c131e61ee8f0e6e9ed52e4db8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/52918789a417bc292ccd6fbb4b91bd78a65d50ab", - "reference": "52918789a417bc292ccd6fbb4b91bd78a65d50ab", + "url": "https://api.github.com/repos/harvesthq/chosen-package/zipball/ad86732b668627c131e61ee8f0e6e9ed52e4db8d", + "reference": "ad86732b668627c131e61ee8f0e6e9ed52e4db8d", "shasum": "" }, - "require": { - "ext-dom": "*", - "ext-libxml": "*", - "laminas/laminas-escaper": "^2.9", - "laminas/laminas-stdlib": "^3.6", - "php": "~8.1.0 || ~8.2.0" - }, - "conflict": { - "laminas/laminas-servicemanager": "<3.3", - "zendframework/zend-feed": "*" - }, - "require-dev": { - "laminas/laminas-cache": "^2.13.2 || ^3.10.1", - "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.2", - "laminas/laminas-coding-standard": "~2.5.0", - "laminas/laminas-db": "^2.18", - "laminas/laminas-http": "^2.18", - "laminas/laminas-servicemanager": "^3.21.0", - "laminas/laminas-validator": "^2.30.1", - "phpunit/phpunit": "^10.2.6", - "psalm/plugin-phpunit": "^0.18.4", - "psr/http-message": "^2.0", - "vimeo/psalm": "^5.13.1" - }, - "suggest": { - "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests", - "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub", - "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader", - "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations", - "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent", - "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator" - }, "type": "library", - "autoload": { - "psr-4": { - "Laminas\\Feed\\": "src/" - } - }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], - "description": "provides functionality for creating and consuming RSS and Atom feeds", - "homepage": "https://laminas.dev", - "keywords": [ - "atom", - "feed", - "laminas", - "rss" + "authors": [ + { + "name": "Koen Punt", + "homepage": "https://github.com/koenpunt" + }, + { + "name": "Patrick Filler", + "homepage": "https://github.com/pfiller" + }, + { + "name": "Christophe Coevoet", + "homepage": "https://github.com/stof" + }, + { + "name": "Ken Earley", + "homepage": "https://github.com/kenearley" + } + ], + "description": "Chosen is a JavaScript plugin that makes select boxes user-friendly. It is currently available in both jQuery and Prototype flavors.", + "homepage": "https://harvesthq.github.io/chosen/", + "keywords": [ + "dropdown", + "form", + "input", + "multiselect", + "select", + "ui" ], "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-feed/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-feed/issues", - "rss": "https://github.com/laminas/laminas-feed/releases.atom", - "source": "https://github.com/laminas/laminas-feed" + "source": "https://github.com/harvesthq/chosen-package/tree/v1.8.7" }, - "funding": [ + "time": "2018-06-28T20:32:51+00:00" + }, + { + "name": "itamair/geophp", + "version": "1.5", + "source": { + "type": "git", + "url": "https://github.com/itamair/geoPHP.git", + "reference": "645f3262ebaa7443d58910207c65f386c733f614" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/itamair/geoPHP/zipball/645f3262ebaa7443d58910207c65f386c733f614", + "reference": "645f3262ebaa7443d58910207c65f386c733f614", + "shasum": "" + }, + "require-dev": { + "phpunit/phpunit": "4.1.* || 9.5.*" + }, + "type": "library", + "autoload": { + "classmap": [ + "geoPHP.inc" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0+" + ], + "authors": [ { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" + "name": "Italo Mairo", + "homepage": "https://www.linkedin.com/in/italomairo/", + "role": "Maintanier of this Library Repo" + }, + { + "name": "Patrick Hayes", + "homepage": "https://www.linkedin.com/in/patrickdhayes/", + "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)" } ], - "time": "2023-07-24T09:21:16+00:00" + "description": "GeoPHP is a open-source native PHP library for doing geometry operations. It is written entirely in PHP and can therefore run on shared hosts. It can read and write a wide variety of formats: WKT (including EWKT), WKB (including EWKB), GeoJSON, KML, GPX, GeoRSS). It works with all Simple-Feature geometries (Point, LineString, Polygon, GeometryCollection etc.) and can be used to get centroids, bounding-boxes, area, and a wide variety of other useful information.", + "homepage": "https://github.com/itamair/geoPHP", + "support": { + "source": "https://github.com/itamair/geoPHP/tree/1.5" + }, + "time": "2023-04-26T23:16:44+00:00" + }, + { + "name": "kenwheeler/slick", + "version": "1.8.0", + "dist": { + "type": "zip", + "url": "https://github.com/kenwheeler/slick/archive/1.8.0.zip" + }, + "require": { + "composer/installers": "^2.0" + }, + "type": "drupal-library" }, { "name": "laminas/laminas-stdlib", @@ -10438,37 +10318,43 @@ }, { "name": "league/container", - "version": "2.5.0", + "version": "4.2.0", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3" + "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3", - "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3", + "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab", + "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab", "shasum": "" }, "require": { - "container-interop/container-interop": "^1.2", - "php": "^5.4 || ^7.0 || ^8.0" + "php": "^7.2 || ^8.0", + "psr/container": "^1.1 || ^2.0" }, "provide": { - "container-interop/container-interop-implementation": "^1.2", "psr/container-implementation": "^1.0" }, "replace": { "orno/di": "~2.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.36", - "scrutinizer/ocular": "^1.3", - "squizlabs/php_codesniffer": "^3.5" + "nette/php-generator": "^3.4", + "nikic/php-parser": "^4.10", + "phpstan/phpstan": "^0.12.47", + "phpunit/phpunit": "^8.5.17", + "roave/security-advisories": "dev-latest", + "scrutinizer/ocular": "^1.8", + "squizlabs/php_codesniffer": "^3.6" }, "type": "library", "extra": { "branch-alias": { + "dev-master": "4.x-dev", + "dev-4.x": "4.x-dev", + "dev-3.x": "3.x-dev", "dev-2.x": "2.x-dev", "dev-1.x": "1.x-dev" } @@ -10485,8 +10371,7 @@ "authors": [ { "name": "Phil Bennett", - "email": "philipobenito@gmail.com", - "homepage": "http://www.philipobenito.com", + "email": "mail@philbennett.co.uk", "role": "Developer" } ], @@ -10503,7 +10388,7 @@ ], "support": { "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/2.5.0" + "source": "https://github.com/thephpleague/container/tree/4.2.0" }, "funding": [ { @@ -10511,131 +10396,39 @@ "type": "github" } ], - "time": "2021-02-22T09:20:06+00:00" - }, - { - "name": "longwave/laminas-diactoros", - "version": "2.14.2", - "source": { - "type": "git", - "url": "https://github.com/longwave/laminas-diactoros.git", - "reference": "ae4f0becf249ae8eea8f2f8f9fb927104e55a885" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/longwave/laminas-diactoros/zipball/ae4f0becf249ae8eea8f2f8f9fb927104e55a885", - "reference": "ae4f0becf249ae8eea8f2f8f9fb927104e55a885", - "shasum": "" - }, - "require": { - "php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0", - "psr/http-factory": "^1.0", - "psr/http-message": "^1.0" - }, - "conflict": { - "phpspec/prophecy": "<1.9.0", - "zendframework/zend-diactoros": "*" - }, - "provide": { - "psr/http-factory-implementation": "1.0", - "psr/http-message-implementation": "1.0" - }, - "replace": { - "laminas/laminas-diactoros": "2.18.1" - }, - "require-dev": { - "ext-curl": "*", - "ext-dom": "*", - "ext-gd": "*", - "ext-libxml": "*", - "http-interop/http-factory-tests": "^0.9.0", - "laminas/laminas-coding-standard": "~2.3.0", - "php-http/psr7-integration-tests": "^1.1.1", - "phpspec/prophecy-phpunit": "^2.0", - "phpunit/phpunit": "^9.5", - "psalm/plugin-phpunit": "^0.17.0", - "vimeo/psalm": "^4.24.0" - }, - "type": "library", - "extra": { - "laminas": { - "config-provider": "Laminas\\Diactoros\\ConfigProvider", - "module": "Laminas\\Diactoros" - } - }, - "autoload": { - "files": [ - "src/functions/create_uploaded_file.php", - "src/functions/marshal_headers_from_sapi.php", - "src/functions/marshal_method_from_sapi.php", - "src/functions/marshal_protocol_version_from_sapi.php", - "src/functions/marshal_uri_from_sapi.php", - "src/functions/normalize_server.php", - "src/functions/normalize_uploaded_files.php", - "src/functions/parse_cookie_header.php", - "src/functions/create_uploaded_file.legacy.php", - "src/functions/marshal_headers_from_sapi.legacy.php", - "src/functions/marshal_method_from_sapi.legacy.php", - "src/functions/marshal_protocol_version_from_sapi.legacy.php", - "src/functions/marshal_uri_from_sapi.legacy.php", - "src/functions/normalize_server.legacy.php", - "src/functions/normalize_uploaded_files.legacy.php", - "src/functions/parse_cookie_header.legacy.php" - ], - "psr-4": { - "Laminas\\Diactoros\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "PSR HTTP Message implementations", - "homepage": "https://laminas.dev", - "keywords": [ - "http", - "laminas", - "psr", - "psr-17", - "psr-7" - ], - "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-diactoros/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-diactoros/issues", - "rss": "https://github.com/laminas/laminas-diactoros/releases.atom", - "source": "https://github.com/laminas/laminas-diactoros" - }, - "time": "2023-04-26T21:27:14+00:00" + "time": "2021-11-16T10:29:06+00:00" }, { "name": "maennchen/zipstream-php", - "version": "2.2.1", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "211e9ba1530ea5260b45d90c9ea252f56ec52729" + "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/211e9ba1530ea5260b45d90c9ea252f56ec52729", - "reference": "211e9ba1530ea5260b45d90c9ea252f56ec52729", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1", + "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1", "shasum": "" }, "require": { - "myclabs/php-enum": "^1.5", - "php": "^7.4 || ^8.0", - "psr/http-message": "^1.0", - "symfony/polyfill-mbstring": "^1.0" + "ext-mbstring": "*", + "ext-zlib": "*", + "php-64bit": "^8.1" }, "require-dev": { "ext-zip": "*", - "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0", + "friendsofphp/php-cs-fixer": "^3.16", + "guzzlehttp/guzzle": "^7.5", "mikey179/vfsstream": "^1.6", - "php-coveralls/php-coveralls": "^2.4", - "phpunit/phpunit": "^8.5.8 || ^9.4.2", - "vimeo/psalm": "^4.1" + "php-coveralls/php-coveralls": "^2.5", + "phpunit/phpunit": "^10.0", + "vimeo/psalm": "^5.0" + }, + "suggest": { + "guzzlehttp/psr7": "^2.4", + "psr/http-message": "^2.0" }, "type": "library", "autoload": { @@ -10672,7 +10465,7 @@ ], "support": { "issues": "https://github.com/maennchen/ZipStream-PHP/issues", - "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.1" + "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0" }, "funding": [ { @@ -10684,30 +10477,28 @@ "type": "open_collective" } ], - "time": "2022-05-18T15:52:06+00:00" + "time": "2023-06-21T14:59:35+00:00" }, { "name": "masterminds/html5", - "version": "2.7.6", + "version": "2.8.1", "source": { "type": "git", "url": "https://github.com/Masterminds/html5-php.git", - "reference": "897eb517a343a2281f11bc5556d6548db7d93947" + "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947", - "reference": "897eb517a343a2281f11bc5556d6548db7d93947", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf", + "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf", "shasum": "" }, "require": { - "ext-ctype": "*", "ext-dom": "*", - "ext-libxml": "*", "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7" + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" }, "type": "library", "extra": { @@ -10751,113 +10542,99 @@ ], "support": { "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.7.6" + "source": "https://github.com/Masterminds/html5-php/tree/2.8.1" }, - "time": "2022-08-18T16:18:26+00:00" + "time": "2023-05-10T11:58:31+00:00" }, { - "name": "mkalkbrenner/php-htmldiff-advanced", - "version": "0.0.8", + "name": "mck89/peast", + "version": "v1.15.4", "source": { "type": "git", - "url": "https://github.com/mkalkbrenner/php-htmldiff.git", - "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9" + "url": "https://github.com/mck89/peast.git", + "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mkalkbrenner/php-htmldiff/zipball/3a714b48c9c3d3730baaf6d3949691e654cd37c9", - "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9", + "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18", + "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18", "shasum": "" }, "require": { - "caxy/php-htmldiff": ">=0.0.6", - "php": ">=5.5.0" + "ext-mbstring": "*", + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.15.4-dev" + } + }, "autoload": { - "files": [ - "src/HtmlDiffAdvancedInterface.php", - "src/HtmlDiffAdvanced.php" - ] + "psr-4": { + "Peast\\": "lib/Peast/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GNU General Public License V2" + "BSD-3-Clause" ], - "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": [ - "diff", - "html" + "authors": [ + { + "name": "Marco Marchiò", + "email": "marco.mm89@gmail.com" + } ], + "description": "Peast is PHP library that generates AST for JavaScript code", "support": { - "issues": "https://github.com/mkalkbrenner/php-htmldiff/issues", - "source": "https://github.com/mkalkbrenner/php-htmldiff/tree/master" + "issues": "https://github.com/mck89/peast/issues", + "source": "https://github.com/mck89/peast/tree/v1.15.4" }, - "time": "2016-07-25T17:07:32+00:00" + "time": "2023-08-12T08:29:29+00:00" }, { - "name": "myclabs/php-enum", - "version": "1.8.4", + "name": "mkalkbrenner/php-htmldiff-advanced", + "version": "0.0.8", "source": { "type": "git", - "url": "https://github.com/myclabs/php-enum.git", - "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483" + "url": "https://github.com/mkalkbrenner/php-htmldiff.git", + "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483", - "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483", + "url": "https://api.github.com/repos/mkalkbrenner/php-htmldiff/zipball/3a714b48c9c3d3730baaf6d3949691e654cd37c9", + "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9", "shasum": "" }, "require": { - "ext-json": "*", - "php": "^7.3 || ^8.0" - }, - "require-dev": { - "phpunit/phpunit": "^9.5", - "squizlabs/php_codesniffer": "1.*", - "vimeo/psalm": "^4.6.2" + "caxy/php-htmldiff": ">=0.0.6", + "php": ">=5.5.0" }, "type": "library", "autoload": { - "psr-4": { - "MyCLabs\\Enum\\": "src/" - }, - "classmap": [ - "stubs/Stringable.php" + "files": [ + "src/HtmlDiffAdvancedInterface.php", + "src/HtmlDiffAdvanced.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP Enum contributors", - "homepage": "https://github.com/myclabs/php-enum/graphs/contributors" - } + "GNU General Public License V2" ], - "description": "PHP Enum implementation", - "homepage": "http://github.com/myclabs/php-enum", + "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": [ - "enum" + "diff", + "html" ], "support": { - "issues": "https://github.com/myclabs/php-enum/issues", - "source": "https://github.com/myclabs/php-enum/tree/1.8.4" + "issues": "https://github.com/mkalkbrenner/php-htmldiff/issues", + "source": "https://github.com/mkalkbrenner/php-htmldiff/tree/master" }, - "funding": [ - { - "url": "https://github.com/mnapoli", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum", - "type": "tidelift" - } - ], - "time": "2022-08-04T09:53:51+00:00" + "time": "2016-07-25T17:07:32+00:00" }, { "name": "nikic/php-parser", @@ -11211,84 +10988,83 @@ "time": "2021-03-21T15:43:46+00:00" }, { - "name": "phayes/geophp", - "version": "1.2", + "name": "phootwork/collection", + "version": "v3.2.2", "source": { "type": "git", - "url": "https://github.com/phayes/geoPHP.git", - "reference": "015404e85b602e0df1f91441f8db0f9e98f7e567" + "url": "https://github.com/phootwork/collection.git", + "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phayes/geoPHP/zipball/015404e85b602e0df1f91441f8db0f9e98f7e567", - "reference": "015404e85b602e0df1f91441f8db0f9e98f7e567", + "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa", + "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa", "shasum": "" }, - "require-dev": { - "phpunit/phpunit": "4.1.*" + "require": { + "phootwork/lang": "^3.0", + "php": ">=8.0" }, "type": "library", "autoload": { - "classmap": [ - "geoPHP.inc" - ] + "psr-4": { + "phootwork\\collection\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2 or New-BSD" + "MIT" ], "authors": [ { - "name": "Patrick Hayes" + "name": "Thomas Gossmann", + "homepage": "http://gos.si" } ], - "description": "GeoPHP is a open-source native PHP library for doing geometry operations. It is written entirely in PHP and can therefore run on shared hosts. It can read and write a wide variety of formats: WKT (including EWKT), WKB (including EWKB), GeoJSON, KML, GPX, GeoRSS). It works with all Simple-Feature geometries (Point, LineString, Polygon, GeometryCollection etc.) and can be used to get centroids, bounding-boxes, area, and a wide variety of other useful information.", - "homepage": "https://github.com/phayes/geoPHP", + "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.", + "homepage": "https://phootwork.github.io/collection/", + "keywords": [ + "Array object", + "Text object", + "collection", + "collections", + "json", + "list", + "map", + "queue", + "set", + "stack", + "xml" + ], "support": { - "issues": "https://github.com/phayes/geoPHP/issues", - "source": "https://github.com/phayes/geoPHP/tree/master" + "issues": "https://github.com/phootwork/phootwork/issues", + "source": "https://github.com/phootwork/collection/tree/v3.2.2" }, - "time": "2014-12-02T06:11:22+00:00" + "time": "2022-08-27T12:51:24+00:00" }, { - "name": "php-http/discovery", - "version": "1.14.1", + "name": "phootwork/lang", + "version": "v3.2.2", "source": { "type": "git", - "url": "https://github.com/php-http/discovery.git", - "reference": "de90ab2b41d7d61609f504e031339776bc8c7223" + "url": "https://github.com/phootwork/lang.git", + "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/discovery/zipball/de90ab2b41d7d61609f504e031339776bc8c7223", - "reference": "de90ab2b41d7d61609f504e031339776bc8c7223", + "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597", + "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" - }, - "conflict": { - "nyholm/psr7": "<1.0" - }, - "require-dev": { - "graham-campbell/phpspec-skip-example-extension": "^5.0", - "php-http/httplug": "^1.0 || ^2.0", - "php-http/message-factory": "^1.0", - "phpspec/phpspec": "^5.1 || ^6.1", - "puli/composer-plugin": "1.0.0-beta10" - }, - "suggest": { - "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories" + "php": ">=8.0", + "symfony/polyfill-mbstring": "^1.12", + "symfony/polyfill-php81": "^1.22" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.9-dev" - } - }, "autoload": { "psr-4": { - "Http\\Discovery\\": "src/" + "phootwork\\lang\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -11297,66 +11073,140 @@ ], "authors": [ { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" + "name": "Thomas Gossmann", + "homepage": "http://gos.si" } ], - "description": "Finds installed HTTPlug implementations and PSR-7 message factories", - "homepage": "http://php-http.org", + "description": "Missing PHP language constructs", + "homepage": "https://phootwork.github.io/lang/", "keywords": [ - "adapter", - "client", - "discovery", - "factory", - "http", - "message", - "psr7" + "array", + "comparator", + "comparison", + "string" ], "support": { - "issues": "https://github.com/php-http/discovery/issues", - "source": "https://github.com/php-http/discovery/tree/1.14.1" + "issues": "https://github.com/phootwork/phootwork/issues", + "source": "https://github.com/phootwork/lang/tree/v3.2.2" }, - "time": "2021-09-18T07:57:46+00:00" + "time": "2023-05-26T05:37:59+00:00" }, { - "name": "php-http/guzzle6-adapter", - "version": "v2.0.2", + "name": "php-http/discovery", + "version": "1.19.1", "source": { "type": "git", - "url": "https://github.com/php-http/guzzle6-adapter.git", - "reference": "9d1a45eb1c59f12574552e81fb295e9e53430a56" + "url": "https://github.com/php-http/discovery.git", + "reference": "57f3de01d32085fea20865f9b16fb0e69347c39e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/guzzle6-adapter/zipball/9d1a45eb1c59f12574552e81fb295e9e53430a56", - "reference": "9d1a45eb1c59f12574552e81fb295e9e53430a56", + "url": "https://api.github.com/repos/php-http/discovery/zipball/57f3de01d32085fea20865f9b16fb0e69347c39e", + "reference": "57f3de01d32085fea20865f9b16fb0e69347c39e", "shasum": "" }, "require": { - "guzzlehttp/guzzle": "^6.0", - "php": "^7.1 || ^8.0", - "php-http/httplug": "^2.0", - "psr/http-client": "^1.0" + "composer-plugin-api": "^1.0|^2.0", + "php": "^7.1 || ^8.0" }, - "provide": { - "php-http/async-client-implementation": "1.0", - "php-http/client-implementation": "1.0", - "psr/http-client-implementation": "1.0" + "conflict": { + "nyholm/psr7": "<1.0", + "zendframework/zend-diactoros": "*" + }, + "provide": { + "php-http/async-client-implementation": "*", + "php-http/client-implementation": "*", + "psr/http-client-implementation": "*", + "psr/http-factory-implementation": "*", + "psr/http-message-implementation": "*" }, "require-dev": { - "ext-curl": "*", - "php-http/client-integration-tests": "^2.0 || ^3.0", - "phpunit/phpunit": "^7.4 || ^8.4" + "composer/composer": "^1.0.2|^2.0", + "graham-campbell/phpspec-skip-example-extension": "^5.0", + "php-http/httplug": "^1.0 || ^2.0", + "php-http/message-factory": "^1.0", + "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3", + "symfony/phpunit-bridge": "^6.2" + }, + "type": "composer-plugin", + "extra": { + "class": "Http\\Discovery\\Composer\\Plugin", + "plugin-optional": true + }, + "autoload": { + "psr-4": { + "Http\\Discovery\\": "src/" + }, + "exclude-from-classmap": [ + "src/Composer/Plugin.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + } + ], + "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations", + "homepage": "http://php-http.org", + "keywords": [ + "adapter", + "client", + "discovery", + "factory", + "http", + "message", + "psr17", + "psr7" + ], + "support": { + "issues": "https://github.com/php-http/discovery/issues", + "source": "https://github.com/php-http/discovery/tree/1.19.1" + }, + "time": "2023-07-11T07:02:26+00:00" + }, + { + "name": "php-http/guzzle7-adapter", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-http/guzzle7-adapter.git", + "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01", + "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^7.0", + "php": "^7.2 | ^8.0", + "php-http/httplug": "^2.0", + "psr/http-client": "^1.0" + }, + "provide": { + "php-http/async-client-implementation": "1.0", + "php-http/client-implementation": "1.0", + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "php-http/client-integration-tests": "^3.0", + "phpunit/phpunit": "^8.0|^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "0.2.x-dev" } }, "autoload": { "psr-4": { - "Http\\Adapter\\Guzzle6\\": "src/" + "Http\\Adapter\\Guzzle7\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -11365,56 +11215,47 @@ ], "authors": [ { - "name": "David de Boer", - "email": "david@ddeboer.nl" - }, - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com" } ], - "description": "Guzzle 6 HTTP Adapter", + "description": "Guzzle 7 HTTP Adapter", "homepage": "http://httplug.io", "keywords": [ "Guzzle", "http" ], "support": { - "issues": "https://github.com/php-http/guzzle6-adapter/issues", - "source": "https://github.com/php-http/guzzle6-adapter/tree/v2.0.2" + "issues": "https://github.com/php-http/guzzle7-adapter/issues", + "source": "https://github.com/php-http/guzzle7-adapter/tree/1.0.0" }, - "time": "2021-03-02T10:52:33+00:00" + "time": "2021-03-09T07:35:15+00:00" }, { "name": "php-http/httplug", - "version": "2.2.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/php-http/httplug.git", - "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9" + "reference": "625ad742c360c8ac580fcc647a1541d29e257f67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/httplug/zipball/191a0a1b41ed026b717421931f8d3bd2514ffbf9", - "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9", + "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67", + "reference": "625ad742c360c8ac580fcc647a1541d29e257f67", "shasum": "" }, "require": { "php": "^7.1 || ^8.0", "php-http/promise": "^1.1", "psr/http-client": "^1.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "require-dev": { - "friends-of-phpspec/phpspec-code-coverage": "^4.1", - "phpspec/phpspec": "^5.1 || ^6.0" + "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0", + "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, "autoload": { "psr-4": { "Http\\Client\\": "src/" @@ -11443,29 +11284,28 @@ ], "support": { "issues": "https://github.com/php-http/httplug/issues", - "source": "https://github.com/php-http/httplug/tree/master" + "source": "https://github.com/php-http/httplug/tree/2.4.0" }, - "time": "2020-07-13T15:43:23+00:00" + "time": "2023-04-14T15:10:03+00:00" }, { "name": "php-http/message", - "version": "1.11.0", + "version": "1.16.0", "source": { "type": "git", "url": "https://github.com/php-http/message.git", - "reference": "fb0dbce7355cad4f4f6a225f537c34d013571f29" + "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/message/zipball/fb0dbce7355cad4f4f6a225f537c34d013571f29", - "reference": "fb0dbce7355cad4f4f6a225f537c34d013571f29", + "url": "https://api.github.com/repos/php-http/message/zipball/47a14338bf4ebd67d317bf1144253d7db4ab55fd", + "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd", "shasum": "" }, "require": { "clue/stream-filter": "^1.5", - "php": "^7.1 || ^8.0", - "php-http/message-factory": "^1.0.2", - "psr/http-message": "^1.0" + "php": "^7.2 || ^8.0", + "psr/http-message": "^1.1 || ^2.0" }, "provide": { "php-http/message-factory-implementation": "1.0" @@ -11473,9 +11313,10 @@ "require-dev": { "ergebnis/composer-normalize": "^2.6", "ext-zlib": "*", - "guzzlehttp/psr7": "^1.0", - "laminas/laminas-diactoros": "^2.0", - "phpspec/phpspec": "^5.1 || ^6.3", + "guzzlehttp/psr7": "^1.0 || ^2.0", + "laminas/laminas-diactoros": "^2.0 || ^3.0", + "php-http/message-factory": "^1.0.2", + "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", "slim/slim": "^3.0" }, "suggest": { @@ -11485,11 +11326,6 @@ "slim/slim": "Used with Slim Framework PSR-7 implementation" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } - }, "autoload": { "files": [ "src/filters.php" @@ -11517,32 +11353,32 @@ ], "support": { "issues": "https://github.com/php-http/message/issues", - "source": "https://github.com/php-http/message/tree/1.11.0" + "source": "https://github.com/php-http/message/tree/1.16.0" }, - "time": "2021-02-01T08:54:58+00:00" + "time": "2023-05-17T06:43:38+00:00" }, { "name": "php-http/message-factory", - "version": "v1.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-http/message-factory.git", - "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1" + "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1", - "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1", + "url": "https://api.github.com/repos/php-http/message-factory/zipball/4d8778e1c7d405cbb471574821c1ff5b68cc8f57", + "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57", "shasum": "" }, "require": { "php": ">=5.4", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -11571,10 +11407,10 @@ ], "support": { "issues": "https://github.com/php-http/message-factory/issues", - "source": "https://github.com/php-http/message-factory/tree/master" + "source": "https://github.com/php-http/message-factory/tree/1.1.0" }, "abandoned": "psr/http-factory", - "time": "2015-12-19T14:08:53+00:00" + "time": "2023-04-14T14:16:17+00:00" }, { "name": "php-http/promise", @@ -11633,18 +11469,145 @@ }, "time": "2020-07-07T09:29:14+00:00" }, + { + "name": "phpoption/phpoption", + "version": "1.9.1", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", + "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2023-02-25T19:38:58+00:00" + }, + { + "name": "phpowermove/docblock", + "version": "v4.0", + "source": { + "type": "git", + "url": "https://github.com/phpowermove/docblock.git", + "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826", + "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826", + "shasum": "" + }, + "require": { + "phootwork/collection": "^3.0", + "phootwork/lang": "^3.0", + "php": ">=8.0" + }, + "require-dev": { + "phootwork/php-cs-fixer-config": "^0.4", + "phpunit/phpunit": "^9.0", + "psalm/phar": "^4.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "phpowermove\\docblock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Thomas Gossmann", + "homepage": "http://gos.si" + } + ], + "description": "PHP Docblock parser and generator. An API to read and write Docblocks.", + "keywords": [ + "docblock", + "generator", + "parser" + ], + "support": { + "issues": "https://github.com/phpowermove/docblock/issues", + "source": "https://github.com/phpowermove/docblock/tree/v4.0" + }, + "time": "2021-09-22T16:57:06+00:00" + }, { "name": "platformsh/config-reader", - "version": "2.4.0", + "version": "2.4.1", "source": { "type": "git", "url": "https://github.com/platformsh/config-reader-php.git", - "reference": "5511abfdb673ccfcf0eac9eaf65204f73edd90fd" + "reference": "dc08f50f5a40a767457668ad154116c8ea89cfc6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/platformsh/config-reader-php/zipball/5511abfdb673ccfcf0eac9eaf65204f73edd90fd", - "reference": "5511abfdb673ccfcf0eac9eaf65204f73edd90fd", + "url": "https://api.github.com/repos/platformsh/config-reader-php/zipball/dc08f50f5a40a767457668ad154116c8ea89cfc6", + "reference": "dc08f50f5a40a767457668ad154116c8ea89cfc6", "shasum": "" }, "require": { @@ -11672,26 +11635,26 @@ "description": "Small helper to access Platform.sh environment variables", "support": { "issues": "https://github.com/platformsh/config-reader-php/issues", - "source": "https://github.com/platformsh/config-reader-php/tree/2.4.0" + "source": "https://github.com/platformsh/config-reader-php/tree/2.4.1" }, - "time": "2020-12-10T20:50:12+00:00" + "time": "2023-09-14T17:07:00+00:00" }, { "name": "psr/cache", - "version": "1.0.1", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/cache.git", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", + "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=8.0.0" }, "type": "library", "extra": { @@ -11711,7 +11674,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for caching libraries", @@ -11721,28 +11684,33 @@ "psr-6" ], "support": { - "source": "https://github.com/php-fig/cache/tree/master" + "source": "https://github.com/php-fig/cache/tree/3.0.0" }, - "time": "2016-08-06T20:24:11+00:00" + "time": "2021-02-03T23:26:27+00:00" }, { "name": "psr/container", - "version": "1.1.2", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/container.git", - "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea", - "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", "shasum": "" }, "require": { "php": ">=7.4.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, "autoload": { "psr-4": { "Psr\\Container\\": "src/" @@ -11769,9 +11737,9 @@ ], "support": { "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/1.1.2" + "source": "https://github.com/php-fig/container/tree/2.0.2" }, - "time": "2021-11-05T16:50:12+00:00" + "time": "2021-11-05T16:47:00+00:00" }, { "name": "psr/event-dispatcher", @@ -11932,25 +11900,25 @@ }, { "name": "psr/http-message", - "version": "1.0.1", + "version": "2.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { @@ -11965,7 +11933,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP messages", @@ -11979,36 +11947,36 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-message/tree/master" + "source": "https://github.com/php-fig/http-message/tree/2.0" }, - "time": "2016-08-06T14:39:51+00:00" + "time": "2023-04-04T09:54:51+00:00" }, { "name": "psr/log", - "version": "1.1.4", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "d49695b909c3b7628b6289db5479a1c204601f11" + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", - "reference": "d49695b909c3b7628b6289db5479a1c204601f11", + "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=8.0.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "3.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Log\\": "Psr/Log/" + "Psr\\Log\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -12029,42 +11997,43 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/1.1.4" + "source": "https://github.com/php-fig/log/tree/3.0.0" }, - "time": "2021-05-03T11:20:27+00:00" + "time": "2021-07-14T16:46:02+00:00" }, { "name": "psy/psysh", - "version": "v0.10.8", + "version": "v0.11.22", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3" + "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b", + "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b", "shasum": "" }, "require": { "ext-json": "*", "ext-tokenizer": "*", - "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3", - "php": "^8.0 || ^7.0 || ^5.5.9", - "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10", - "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7" + "nikic/php-parser": "^4.0 || ^3.1", + "php": "^8.0 || ^7.0.8", + "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.2", - "hoa/console": "3.17.*" + "bamarni/composer-bin-plugin": "^1.2" }, "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." + "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." }, "bin": [ "bin/psysh" @@ -12072,7 +12041,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "0.10.x-dev" + "dev-0.11": "0.11.x-dev" + }, + "bamarni-bin": { + "bin-links": false, + "forward-command": false } }, "autoload": { @@ -12104,9 +12077,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.10.8" + "source": "https://github.com/bobthecow/psysh/tree/v0.11.22" }, - "time": "2021-04-10T16:23:39+00:00" + "time": "2023-10-14T21:56:36+00:00" }, { "name": "ralouphie/getallheaders", @@ -12153,159 +12126,102 @@ "time": "2019-03-08T08:55:37+00:00" }, { - "name": "simshaun/recurr", - "version": "v4.0.5", + "name": "sebastian/diff", + "version": "4.0.5", "source": { "type": "git", - "url": "https://github.com/simshaun/recurr.git", - "reference": "08b0b46879f598cd11dd42b4c1a9c221a0562749" + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simshaun/recurr/zipball/08b0b46879f598cd11dd42b4c1a9c221a0562749", - "reference": "08b0b46879f598cd11dd42b4c1a9c221a0562749", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", "shasum": "" }, "require": { - "doctrine/collections": "~1.3", - "php": ">=5.5.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "~5.7" + "phpunit/phpunit": "^9.3", + "symfony/process": "^4.2 || ^5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "0.x-dev" + "dev-master": "4.0-dev" } }, "autoload": { - "psr-4": { - "Recurr\\": "src/Recurr/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Shaun Simmons", - "email": "shaun@shaun.pub", - "homepage": "https://shaun.pub" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" } ], - "description": "PHP library for working with recurrence rules", - "homepage": "https://github.com/simshaun/recurr", + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", "keywords": [ - "dates", - "events", - "recurrence", - "recurring", - "rrule" + "diff", + "udiff", + "unidiff", + "unified diff" ], "support": { - "issues": "https://github.com/simshaun/recurr/issues", - "source": "https://github.com/simshaun/recurr/tree/v4.0.5" + "issues": "https://github.com/sebastianbergmann/diff/issues", + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" }, - "time": "2021-03-25T23:00:49+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-05-07T05:35:17+00:00" }, { - "name": "solarium/solarium", - "version": "6.2.7", + "name": "simshaun/recurr", + "version": "v5.0.2", "source": { "type": "git", - "url": "https://github.com/solariumphp/solarium.git", - "reference": "6d6d13b4eda222e7bdb9616545aa67efbe8c6cec" + "url": "https://github.com/simshaun/recurr.git", + "reference": "1aff62e6e0ee875b3f2487352542605123ee9172" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/solariumphp/solarium/zipball/6d6d13b4eda222e7bdb9616545aa67efbe8c6cec", - "reference": "6d6d13b4eda222e7bdb9616545aa67efbe8c6cec", + "url": "https://api.github.com/repos/simshaun/recurr/zipball/1aff62e6e0ee875b3f2487352542605123ee9172", + "reference": "1aff62e6e0ee875b3f2487352542605123ee9172", "shasum": "" }, "require": { - "composer-runtime-api": ">=2.0", - "ext-json": "*", - "php": "^7.3 || ^8.0", - "psr/event-dispatcher": "^1.0", - "psr/http-client": "^1.0", - "psr/http-factory": "^1.0", - "symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0" - }, - "require-dev": { - "escapestudios/symfony2-coding-standard": "^3.11", - "guzzlehttp/guzzle": "^7.2", - "nyholm/psr7": "^1.2", - "php-http/guzzle7-adapter": "^0.1", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^9.5", - "roave/security-advisories": "dev-master", - "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Solarium\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "See GitHub contributors", - "homepage": "https://github.com/solariumphp/solarium/contributors" - } - ], - "description": "PHP Solr client", - "homepage": "http://www.solarium-project.org", - "keywords": [ - "php", - "search", - "solr" - ], - "support": { - "issues": "https://github.com/solariumphp/solarium/issues", - "source": "https://github.com/solariumphp/solarium/tree/6.2.7" - }, - "time": "2022-09-12T09:20:39+00:00" - }, - { - "name": "stack/builder", - "version": "v1.0.6", - "source": { - "type": "git", - "url": "https://github.com/stackphp/builder.git", - "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c", - "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c", - "shasum": "" - }, - "require": { - "php": ">=7.2.0", - "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0", - "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0" + "doctrine/collections": "~1.6||^2.0", + "php": "^7.2||^8.0" }, "require-dev": { - "phpunit/phpunit": "~8.0", - "symfony/routing": "^5.0" + "phpunit/phpunit": "^8.5.16", + "symfony/yaml": "^5.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "0.x-dev" } }, "autoload": { - "psr-0": { - "Stack": "src" + "psr-4": { + "Recurr\\": "src/Recurr/" } }, "notification-url": "https://packagist.org/downloads/", @@ -12314,109 +12230,141 @@ ], "authors": [ { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" + "name": "Shaun Simmons", + "email": "shaun@shaun.pub", + "homepage": "https://shaun.pub" } ], - "description": "Builder for stack middleware based on HttpKernelInterface.", + "description": "PHP library for working with recurrence rules", + "homepage": "https://github.com/simshaun/recurr", "keywords": [ - "stack" + "dates", + "events", + "recurrence", + "recurring", + "rrule" ], "support": { - "issues": "https://github.com/stackphp/builder/issues", - "source": "https://github.com/stackphp/builder/tree/v1.0.6" + "issues": "https://github.com/simshaun/recurr/issues", + "source": "https://github.com/simshaun/recurr/tree/v5.0.2" }, - "time": "2020-01-30T12:17:27+00:00" + "time": "2023-09-26T20:31:33+00:00" }, { - "name": "stecman/symfony-console-completion", - "version": "0.11.0", + "name": "solarium/solarium", + "version": "6.3.3", "source": { "type": "git", - "url": "https://github.com/stecman/symfony-console-completion.git", - "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518" + "url": "https://github.com/solariumphp/solarium.git", + "reference": "90e42bf322217cc1f26439e61b0c7d17fedb3a9c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518", - "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518", + "url": "https://api.github.com/repos/solariumphp/solarium/zipball/90e42bf322217cc1f26439e61b0c7d17fedb3a9c", + "reference": "90e42bf322217cc1f26439e61b0c7d17fedb3a9c", "shasum": "" }, "require": { - "php": ">=5.3.2", - "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0" + "composer-runtime-api": ">=2.0", + "ext-json": "*", + "halaxa/json-machine": "^1.1", + "php": "^8.0", + "psr/event-dispatcher": "^1.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0", + "symfony/event-dispatcher-contracts": "^2.0 || ^3.0" }, "require-dev": { - "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4" + "escapestudios/symfony2-coding-standard": "^3.11", + "ext-curl": "*", + "ext-iconv": "*", + "nyholm/psr7": "^1.8", + "php-http/guzzle7-adapter": "^1.0", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.6", + "roave/security-advisories": "dev-master", + "symfony/event-dispatcher": "^5.0 || ^6.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.10.x-dev" - } - }, "autoload": { "psr-4": { - "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/" + "Solarium\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Stephen Holdaway", - "email": "stephen@stecman.co.nz" + "name": "See GitHub contributors", + "homepage": "https://github.com/solariumphp/solarium/contributors" } ], - "description": "Automatic BASH completion for Symfony Console Component based applications.", + "description": "PHP Solr client", + "homepage": "http://www.solarium-project.org", + "keywords": [ + "php", + "search", + "solr" + ], "support": { - "issues": "https://github.com/stecman/symfony-console-completion/issues", - "source": "https://github.com/stecman/symfony-console-completion/tree/0.11.0" + "issues": "https://github.com/solariumphp/solarium/issues", + "source": "https://github.com/solariumphp/solarium/tree/6.3.3" }, - "time": "2019-11-24T17:03:06+00:00" + "time": "2023-10-14T14:46:33+00:00" }, { - "name": "symfony-cmf/routing", - "version": "2.3.4", + "name": "symfony/console", + "version": "v6.3.4", "source": { "type": "git", - "url": "https://github.com/symfony-cmf/Routing.git", - "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b" + "url": "https://github.com/symfony/console.git", + "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b", - "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b", + "url": "https://api.github.com/repos/symfony/console/zipball/eca495f2ee845130855ddf1cf18460c38966c8b6", + "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0", - "psr/log": "^1.0 || ^2.0 || ^3.0", - "symfony/http-kernel": "^4.4 || ^5.0", - "symfony/routing": "^4.4 || ^5.0" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0" }, - "require-dev": { - "symfony-cmf/testing": "^3@dev", - "symfony/config": "^4.4 || ^5.0", - "symfony/dependency-injection": "^4.4 || ^5.0", - "symfony/event-dispatcher": "^4.4 || ^5.0", - "symfony/phpunit-bridge": "^5.0" + "conflict": { + "symfony/dependency-injection": "<5.4", + "symfony/dotenv": "<5.4", + "symfony/event-dispatcher": "<5.4", + "symfony/lock": "<5.4", + "symfony/process": "<5.4" }, - "suggest": { - "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)" + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/event-dispatcher": "^5.4|^6.0", + "symfony/lock": "^5.4|^6.0", + "symfony/process": "^5.4|^6.0", + "symfony/var-dumper": "^5.4|^6.0" }, + "type": "library", "autoload": { "psr-4": { - "Symfony\\Cmf\\Component\\Routing\\": "src/" - } + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -12424,75 +12372,82 @@ ], "authors": [ { - "name": "Symfony CMF Community", - "homepage": "https://github.com/symfony-cmf/Routing/contributors" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Extends the Symfony routing component for dynamic routes and chaining several routers", - "homepage": "http://cmf.symfony.com", + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", "keywords": [ - "database", - "routing" + "cli", + "command-line", + "console", + "terminal" ], "support": { - "issues": "https://github.com/symfony-cmf/Routing/issues", - "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4" + "source": "https://github.com/symfony/console/tree/v6.3.4" }, - "time": "2021-11-08T16:33:10+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-08-16T10:10:12+00:00" }, { - "name": "symfony/cache", - "version": "v5.4.13", + "name": "symfony/dependency-injection", + "version": "v6.3.5", "source": { "type": "git", - "url": "https://github.com/symfony/cache.git", - "reference": "89bb6a0fe27205636d80e568ffaf9bbb52f691e3" + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "2ed62b3bf98346e1f45529a7b6be2196739bb993" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/89bb6a0fe27205636d80e568ffaf9bbb52f691e3", - "reference": "89bb6a0fe27205636d80e568ffaf9bbb52f691e3", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2ed62b3bf98346e1f45529a7b6be2196739bb993", + "reference": "2ed62b3bf98346e1f45529a7b6be2196739bb993", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/cache": "^1.0|^2.0", - "psr/log": "^1.1|^2|^3", - "symfony/cache-contracts": "^1.1.7|^2", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/polyfill-php73": "^1.9", - "symfony/polyfill-php80": "^1.16", - "symfony/service-contracts": "^1.1|^2|^3", - "symfony/var-exporter": "^4.4|^5.0|^6.0" + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/service-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.2.10" }, "conflict": { - "doctrine/dbal": "<2.13.1", - "symfony/dependency-injection": "<4.4", - "symfony/http-kernel": "<4.4", - "symfony/var-dumper": "<4.4" + "ext-psr": "<1.1|>=2", + "symfony/config": "<6.1", + "symfony/finder": "<5.4", + "symfony/proxy-manager-bridge": "<6.3", + "symfony/yaml": "<5.4" }, "provide": { - "psr/cache-implementation": "1.0|2.0", - "psr/simple-cache-implementation": "1.0|2.0", - "symfony/cache-implementation": "1.0|2.0" + "psr/container-implementation": "1.1|2.0", + "symfony/service-implementation": "1.1|2.0|3.0" }, "require-dev": { - "cache/integration-tests": "dev-master", - "doctrine/cache": "^1.6|^2.0", - "doctrine/dbal": "^2.13.1|^3.0", - "predis/predis": "^1.1", - "psr/simple-cache": "^1.0|^2.0", - "symfony/config": "^4.4|^5.0|^6.0", - "symfony/dependency-injection": "^4.4|^5.0|^6.0", - "symfony/filesystem": "^4.4|^5.0|^6.0", - "symfony/http-kernel": "^4.4|^5.0|^6.0", - "symfony/messenger": "^4.4|^5.0|^6.0", - "symfony/var-dumper": "^4.4|^5.0|^6.0" + "symfony/config": "^6.1", + "symfony/expression-language": "^5.4|^6.0", + "symfony/yaml": "^5.4|^6.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Cache\\": "" + "Symfony\\Component\\DependencyInjection\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -12504,22 +12459,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Provides extended PSR-6, PSR-16 (and tags) implementations", + "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", - "keywords": [ - "caching", - "psr6" - ], "support": { - "source": "https://github.com/symfony/cache/tree/v5.4.13" + "source": "https://github.com/symfony/dependency-injection/tree/v6.3.5" }, "funding": [ { @@ -12535,33 +12486,29 @@ "type": "tidelift" } ], - "time": "2022-09-06T13:23:31+00:00" + "time": "2023-09-25T16:46:40+00:00" }, { - "name": "symfony/cache-contracts", - "version": "v2.5.2", + "name": "symfony/deprecation-contracts", + "version": "v3.3.0", "source": { "type": "git", - "url": "https://github.com/symfony/cache-contracts.git", - "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc" + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc", - "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/cache": "^1.0|^2.0|^3.0" - }, - "suggest": { - "symfony/cache-implementation": "" + "php": ">=8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.5-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -12569,9 +12516,9 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Contracts\\Cache\\": "" - } + "files": [ + "function.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -12587,18 +12534,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to caching", + "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], "support": { - "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0" }, "funding": [ { @@ -12614,44 +12553,42 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:53:40+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { - "name": "symfony/config", - "version": "v4.4.20", + "name": "symfony/error-handler", + "version": "v6.3.5", "source": { "type": "git", - "url": "https://github.com/symfony/config.git", - "reference": "98606c6fa1a8f55ff964ccdd704275bf5b9f71b3" + "url": "https://github.com/symfony/error-handler.git", + "reference": "1f69476b64fb47105c06beef757766c376b548c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/98606c6fa1a8f55ff964ccdd704275bf5b9f71b3", - "reference": "98606c6fa1a8f55ff964ccdd704275bf5b9f71b3", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4", + "reference": "1f69476b64fb47105c06beef757766c376b548c4", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/filesystem": "^3.4|^4.0|^5.0", - "symfony/polyfill-ctype": "~1.8" + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^5.4|^6.0" }, "conflict": { - "symfony/finder": "<3.4" + "symfony/deprecation-contracts": "<2.5" }, "require-dev": { - "symfony/event-dispatcher": "^3.4|^4.0|^5.0", - "symfony/finder": "^3.4|^4.0|^5.0", - "symfony/messenger": "^4.1|^5.0", - "symfony/service-contracts": "^1.1|^2", - "symfony/yaml": "^3.4|^4.0|^5.0" - }, - "suggest": { - "symfony/yaml": "To use the yaml reference dumper" + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^5.4|^6.0", + "symfony/serializer": "^5.4|^6.0" }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Config\\": "" + "Symfony\\Component\\ErrorHandler\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -12671,10 +12608,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", + "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v4.4.20" + "source": "https://github.com/symfony/error-handler/tree/v6.3.5" }, "funding": [ { @@ -12690,58 +12627,48 @@ "type": "tidelift" } ], - "time": "2021-02-22T15:36:50+00:00" + "time": "2023-09-12T06:57:20+00:00" }, { - "name": "symfony/console", - "version": "v4.4.49", + "name": "symfony/event-dispatcher", + "version": "v6.3.2", "source": { "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9", - "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e", + "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php73": "^1.8", - "symfony/polyfill-php80": "^1.16", - "symfony/service-contracts": "^1.1|^2" + "php": ">=8.1", + "symfony/event-dispatcher-contracts": "^2.5|^3" }, "conflict": { - "psr/log": ">=3", - "symfony/dependency-injection": "<3.4", - "symfony/event-dispatcher": "<4.3|>=5", - "symfony/lock": "<4.4", - "symfony/process": "<3.3" + "symfony/dependency-injection": "<5.4", + "symfony/service-contracts": "<2.5" }, "provide": { - "psr/log-implementation": "1.0|2.0" + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" }, "require-dev": { - "psr/log": "^1|^2", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/event-dispatcher": "^4.3", - "symfony/lock": "^4.4|^5.0", - "symfony/process": "^3.4|^4.0|^5.0", - "symfony/var-dumper": "^4.3|^5.0" - }, - "suggest": { - "psr/log": "For using the console logger", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/error-handler": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/http-foundation": "^5.4|^6.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^5.4|^6.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Console\\": "" + "Symfony\\Component\\EventDispatcher\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -12761,10 +12688,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Eases the creation of beautiful and testable command line interfaces", + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/console/tree/v4.4.49" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2" }, "funding": [ { @@ -12780,34 +12707,40 @@ "type": "tidelift" } ], - "time": "2022-11-05T17:10:16+00:00" + "time": "2023-07-06T06:56:43+00:00" }, { - "name": "symfony/css-selector", - "version": "v4.4.44", + "name": "symfony/event-dispatcher-contracts", + "version": "v3.3.0", "source": { "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "bd0a6737e48de45b4b0b7b6fc98c78404ddceaed" + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/bd0a6737e48de45b4b0b7b6fc98c78404ddceaed", - "reference": "bd0a6737e48de45b4b0b7b6fc98c78404ddceaed", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1", + "psr/event-dispatcher": "^1" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\CssSelector\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Symfony\\Contracts\\EventDispatcher\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -12815,22 +12748,89 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/filesystem", + "version": "v6.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae", + "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Converts CSS selectors to XPath expressions", + "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v4.4.44" + "source": "https://github.com/symfony/filesystem/tree/v6.3.1" }, "funding": [ { @@ -12846,36 +12846,32 @@ "type": "tidelift" } ], - "time": "2022-06-27T13:16:42+00:00" + "time": "2023-06-01T08:30:39+00:00" }, { - "name": "symfony/debug", - "version": "v4.4.44", + "name": "symfony/finder", + "version": "v6.3.5", "source": { "type": "git", - "url": "https://github.com/symfony/debug.git", - "reference": "1a692492190773c5310bc7877cb590c04c2f05be" + "url": "https://github.com/symfony/finder.git", + "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be", - "reference": "1a692492190773c5310bc7877cb590c04c2f05be", + "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4", + "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4", "shasum": "" }, "require": { - "php": ">=7.1.3", - "psr/log": "^1|^2|^3" - }, - "conflict": { - "symfony/http-kernel": "<3.4" + "php": ">=8.1" }, "require-dev": { - "symfony/http-kernel": "^3.4|^4.0|^5.0" + "symfony/filesystem": "^6.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Debug\\": "" + "Symfony\\Component\\Finder\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -12895,10 +12891,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides tools to ease debugging PHP code", + "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/debug/tree/v4.4.44" + "source": "https://github.com/symfony/finder/tree/v6.3.5" }, "funding": [ { @@ -12914,55 +12910,56 @@ "type": "tidelift" } ], - "abandoned": "symfony/error-handler", - "time": "2022-07-28T16:29:46+00:00" + "time": "2023-09-26T12:56:25+00:00" }, { - "name": "symfony/dependency-injection", - "version": "v4.4.49", + "name": "symfony/http-client", + "version": "v5.4.29", "source": { "type": "git", - "url": "https://github.com/symfony/dependency-injection.git", - "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734" + "url": "https://github.com/symfony/http-client.git", + "reference": "04784c66cbee613a827363ee1e65db65392893c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9065fe97dbd38a897e95ea254eb5ddfe1310f734", - "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734", + "url": "https://api.github.com/repos/symfony/http-client/zipball/04784c66cbee613a827363ee1e65db65392893c1", + "reference": "04784c66cbee613a827363ee1e65db65392893c1", "shasum": "" }, "require": { - "php": ">=7.1.3", - "psr/container": "^1.0", + "php": ">=7.2.5", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/http-client-contracts": "^2.4", + "symfony/polyfill-php73": "^1.11", "symfony/polyfill-php80": "^1.16", - "symfony/service-contracts": "^1.1.6|^2" - }, - "conflict": { - "symfony/config": "<4.3|>=5.0", - "symfony/finder": "<3.4", - "symfony/proxy-manager-bridge": "<3.4", - "symfony/yaml": "<4.4.26" + "symfony/service-contracts": "^1.0|^2|^3" }, "provide": { - "psr/container-implementation": "1.0", - "symfony/service-implementation": "1.0|2.0" + "php-http/async-client-implementation": "*", + "php-http/client-implementation": "*", + "psr/http-client-implementation": "1.0", + "symfony/http-client-implementation": "2.4" }, "require-dev": { - "symfony/config": "^4.3", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/yaml": "^4.4.26|^5.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": "" + "amphp/amp": "^2.5", + "amphp/http-client": "^4.2.1", + "amphp/http-tunnel": "^1.0", + "amphp/socket": "^1.1", + "guzzlehttp/promises": "^1.4", + "nyholm/psr7": "^1.0", + "php-http/httplug": "^1.0|^2.0", + "php-http/message-factory": "^1.0", + "psr/http-client": "^1.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/http-kernel": "^4.4.13|^5.1.5|^6.0", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/stopwatch": "^4.4|^5.0|^6.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\DependencyInjection\\": "" + "Symfony\\Component\\HttpClient\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -12974,18 +12971,21 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Allows you to standardize and centralize the way objects are constructed in your application", + "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", "homepage": "https://symfony.com", + "keywords": [ + "http" + ], "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v4.4.49" + "source": "https://github.com/symfony/http-client/tree/v5.4.29" }, "funding": [ { @@ -13001,24 +13001,27 @@ "type": "tidelift" } ], - "time": "2022-11-16T16:18:09+00:00" + "time": "2023-09-14T20:49:15+00:00" }, { - "name": "symfony/deprecation-contracts", + "name": "symfony/http-client-contracts", "version": "v2.5.2", "source": { "type": "git", - "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66" + "url": "https://github.com/symfony/http-client-contracts.git", + "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66", - "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70", + "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2.5" + }, + "suggest": { + "symfony/http-client-implementation": "" }, "type": "library", "extra": { @@ -13031,9 +13034,9 @@ } }, "autoload": { - "files": [ - "function.php" - ] + "psr-4": { + "Symfony\\Contracts\\HttpClient\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13049,10 +13052,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "A generic function and convention to trigger deprecation notices", + "description": "Generic abstractions related to HTTP clients", "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2" + "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2" }, "funding": [ { @@ -13068,42 +13079,45 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:53:40+00:00" + "time": "2022-04-12T15:48:08+00:00" }, { - "name": "symfony/dom-crawler", - "version": "v4.4.45", + "name": "symfony/http-foundation", + "version": "v6.3.6", "source": { "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "4b8daf6c56801e6d664224261cb100b73edc78a5" + "url": "https://github.com/symfony/http-foundation.git", + "reference": "c186627f52febe09c6d5270b04f8462687a250a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4b8daf6c56801e6d664224261cb100b73edc78a5", - "reference": "4b8daf6c56801e6d664224261cb100b73edc78a5", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/c186627f52febe09c6d5270b04f8462687a250a6", + "reference": "c186627f52febe09c6d5270b04f8462687a250a6", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" }, "conflict": { - "masterminds/html5": "<2.6" + "symfony/cache": "<6.3" }, "require-dev": { - "masterminds/html5": "^2.6", - "symfony/css-selector": "^3.4|^4.0|^5.0" - }, - "suggest": { - "symfony/css-selector": "" + "doctrine/dbal": "^2.13.1|^3|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.3", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", + "symfony/mime": "^5.4|^6.0", + "symfony/rate-limiter": "^5.2|^6.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\DomCrawler\\": "" + "Symfony\\Component\\HttpFoundation\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -13123,10 +13137,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Eases DOM navigation for HTML and XML documents", + "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v4.4.45" + "source": "https://github.com/symfony/http-foundation/tree/v6.3.6" }, "funding": [ { @@ -13142,36 +13156,81 @@ "type": "tidelift" } ], - "time": "2022-08-03T12:57:57+00:00" + "time": "2023-10-17T11:32:53+00:00" }, { - "name": "symfony/error-handler", - "version": "v4.4.44", + "name": "symfony/http-kernel", + "version": "v6.3.6", "source": { "type": "git", - "url": "https://github.com/symfony/error-handler.git", - "reference": "be731658121ef2d8be88f3a1ec938148a9237291" + "url": "https://github.com/symfony/http-kernel.git", + "reference": "4945f5001b06ff9080cd3d8f1f9f069094c0d156" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291", - "reference": "be731658121ef2d8be88f3a1ec938148a9237291", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4945f5001b06ff9080cd3d8f1f9f069094c0d156", + "reference": "4945f5001b06ff9080cd3d8f1f9f069094c0d156", "shasum": "" }, "require": { - "php": ">=7.1.3", + "php": ">=8.1", "psr/log": "^1|^2|^3", - "symfony/debug": "^4.4.5", - "symfony/var-dumper": "^4.4|^5.0" + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.3", + "symfony/event-dispatcher": "^5.4|^6.0", + "symfony/http-foundation": "^6.3.4", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<5.4", + "symfony/cache": "<5.4", + "symfony/config": "<6.1", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<6.3.4", + "symfony/doctrine-bridge": "<5.4", + "symfony/form": "<5.4", + "symfony/http-client": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<5.4", + "symfony/messenger": "<5.4", + "symfony/translation": "<5.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<5.4", + "symfony/validator": "<5.4", + "symfony/var-dumper": "<6.3", + "twig/twig": "<2.13" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" }, "require-dev": { - "symfony/http-kernel": "^4.4|^5.0", - "symfony/serializer": "^4.4|^5.0" + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^5.4|^6.0", + "symfony/clock": "^6.2", + "symfony/config": "^6.1", + "symfony/console": "^5.4|^6.0", + "symfony/css-selector": "^5.4|^6.0", + "symfony/dependency-injection": "^6.3.4", + "symfony/dom-crawler": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/finder": "^5.4|^6.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^5.4|^6.0", + "symfony/property-access": "^5.4.5|^6.0.5", + "symfony/routing": "^5.4|^6.0", + "symfony/serializer": "^6.3", + "symfony/stopwatch": "^5.4|^6.0", + "symfony/translation": "^5.4|^6.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^5.4|^6.0", + "symfony/validator": "^6.3", + "symfony/var-exporter": "^6.2", + "twig/twig": "^2.13|^3.0.4" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\ErrorHandler\\": "" + "Symfony\\Component\\HttpKernel\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -13191,10 +13250,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides tools to manage errors and ease debugging PHP code", + "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v4.4.44" + "source": "https://github.com/symfony/http-kernel/tree/v6.3.6" }, "funding": [ { @@ -13210,52 +13269,48 @@ "type": "tidelift" } ], - "time": "2022-07-28T16:29:46+00:00" + "time": "2023-10-21T13:12:51+00:00" }, { - "name": "symfony/event-dispatcher", - "version": "v4.4.44", + "name": "symfony/mime", + "version": "v6.3.5", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a" + "url": "https://github.com/symfony/mime.git", + "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a", - "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a", + "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e", + "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/event-dispatcher-contracts": "^1.1", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" }, "conflict": { - "symfony/dependency-injection": "<3.4" - }, - "provide": { - "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "1.1" + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<5.4", + "symfony/serializer": "<6.2.13|>=6.3,<6.3.2" }, "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/error-handler": "~3.4|~4.4", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/http-foundation": "^3.4|^4.0|^5.0", - "symfony/service-contracts": "^1.1|^2", - "symfony/stopwatch": "^3.4|^4.0|^5.0" - }, - "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/property-access": "^5.4|^6.0", + "symfony/property-info": "^5.4|^6.0", + "symfony/serializer": "~6.2.13|^6.3.2" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" + "Symfony\\Component\\Mime\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -13275,10 +13330,14 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "description": "Allows manipulating MIME messages", "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44" + "source": "https://github.com/symfony/mime/tree/v6.3.5" }, "funding": [ { @@ -13294,42 +13353,47 @@ "type": "tidelift" } ], - "time": "2022-07-20T09:59:04+00:00" + "time": "2023-09-29T06:59:36+00:00" }, { - "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.13", + "name": "symfony/polyfill-ctype", + "version": "v1.27.0", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e" + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e", - "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", "shasum": "" }, "require": { - "php": ">=7.1.3" + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" }, "suggest": { - "psr/event-dispatcher": "", - "symfony/event-dispatcher-implementation": "" + "ext-ctype": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.1-dev" + "dev-main": "1.27-dev" }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" + "Symfony\\Polyfill\\Ctype\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -13338,26 +13402,24 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to dispatching event", + "description": "Symfony polyfill for ctype functions", "homepage": "https://symfony.com", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "compatibility", + "ctype", + "polyfill", + "portable" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" }, "funding": [ { @@ -13373,35 +13435,48 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:41:36+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { - "name": "symfony/expression-language", - "version": "v4.4.47", + "name": "symfony/polyfill-iconv", + "version": "v1.27.0", "source": { "type": "git", - "url": "https://github.com/symfony/expression-language.git", - "reference": "e4964c7636e19f6008660f450c09121c80c2a7b9" + "url": "https://github.com/symfony/polyfill-iconv.git", + "reference": "927013f3aac555983a5059aada98e1907d842695" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/expression-language/zipball/e4964c7636e19f6008660f450c09121c80c2a7b9", - "reference": "e4964c7636e19f6008660f450c09121c80c2a7b9", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695", + "reference": "927013f3aac555983a5059aada98e1907d842695", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/cache": "^3.4|^4.0|^5.0", - "symfony/service-contracts": "^1.1|^2" + "php": ">=7.1" }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\ExpressionLanguage\\": "" + "provide": { + "ext-iconv": "*" + }, + "suggest": { + "ext-iconv": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" }, - "exclude-from-classmap": [ - "/Tests/" - ] + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Iconv\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13409,18 +13484,25 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Provides an engine that can compile and evaluate expressions", + "description": "Symfony polyfill for the Iconv extension", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "iconv", + "polyfill", + "portable", + "shim" + ], "support": { - "source": "https://github.com/symfony/expression-language/tree/v4.4.47" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0" }, "funding": [ { @@ -13436,35 +13518,45 @@ "type": "tidelift" } ], - "time": "2022-10-03T15:15:11+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { - "name": "symfony/filesystem", - "version": "v4.4.42", + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.27.0", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5" + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "511a08c03c1960e08a883f4cffcacd219b758354" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5", - "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", + "reference": "511a08c03c1960e08a883f4cffcacd219b758354", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php80": "^1.16" + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Component\\Filesystem\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13472,18 +13564,26 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Provides basic utilities for the filesystem", + "description": "Symfony polyfill for intl's grapheme_* functions", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.42" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" }, "funding": [ { @@ -13499,34 +13599,47 @@ "type": "tidelift" } ], - "time": "2022-05-20T08:49:14+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { - "name": "symfony/finder", - "version": "v4.4.44", + "name": "symfony/polyfill-intl-idn", + "version": "v1.27.0", "source": { "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "66bd787edb5e42ff59d3523f623895af05043e4f" + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "639084e360537a19f9ee352433b84ce831f3d2da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f", - "reference": "66bd787edb5e42ff59d3523f623895af05043e4f", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", + "reference": "639084e360537a19f9ee352433b84ce831f3d2da", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Component\\Finder\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13534,18 +13647,30 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Finds files and directories via an intuitive fluent interface", + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], "support": { - "source": "https://github.com/symfony/finder/tree/v4.4.44" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" }, "funding": [ { @@ -13561,42 +13686,48 @@ "type": "tidelift" } ], - "time": "2022-07-29T07:35:46+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { - "name": "symfony/http-client-contracts", - "version": "v2.5.2", + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.27.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70" + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70", - "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=7.1" }, "suggest": { - "symfony/http-client-implementation": "" + "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.5-dev" + "dev-main": "1.27-dev" }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Contracts\\HttpClient\\": "" - } + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13612,18 +13743,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to HTTP clients", + "description": "Symfony polyfill for intl's Normalizer class and related functions", "homepage": "https://symfony.com", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" ], "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" }, "funding": [ { @@ -13639,40 +13770,48 @@ "type": "tidelift" } ], - "time": "2022-04-12T15:48:08+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { - "name": "symfony/http-foundation", - "version": "v4.4.49", + "name": "symfony/polyfill-mbstring", + "version": "v1.27.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-foundation.git", - "reference": "191413c7b832c015bb38eae963f2e57498c3c173" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173", - "reference": "191413c7b832c015bb38eae963f2e57498c3c173", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/mime": "^4.3|^5.0", - "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php80": "^1.16" + "php": ">=7.1" }, - "require-dev": { - "predis/predis": "~1.0", - "symfony/expression-language": "^3.4|^4.0|^5.0" + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Component\\HttpFoundation\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Symfony\\Polyfill\\Mbstring\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13680,18 +13819,25 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Defines an object-oriented layer for the HTTP specification", + "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], "support": { - "source": "https://github.com/symfony/http-foundation/tree/v4.4.49" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" }, "funding": [ { @@ -13707,76 +13853,42 @@ "type": "tidelift" } ], - "time": "2022-11-04T16:17:57+00:00" + "time": "2022-11-03T14:55:06+00:00" }, { - "name": "symfony/http-kernel", - "version": "v4.4.50", + "name": "symfony/polyfill-php72", + "version": "v1.28.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-kernel.git", - "reference": "aa6df6c045f034aa13ac752fc234bb300b9488ef" + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/aa6df6c045f034aa13ac752fc234bb300b9488ef", - "reference": "aa6df6c045f034aa13ac752fc234bb300b9488ef", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", "shasum": "" }, "require": { - "php": ">=7.1.3", - "psr/log": "^1|^2", - "symfony/error-handler": "^4.4", - "symfony/event-dispatcher": "^4.4", - "symfony/http-client-contracts": "^1.1|^2", - "symfony/http-foundation": "^4.4.30|^5.3.7", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-php73": "^1.9", - "symfony/polyfill-php80": "^1.16" - }, - "conflict": { - "symfony/browser-kit": "<4.3", - "symfony/config": "<3.4", - "symfony/console": ">=5", - "symfony/dependency-injection": "<4.3", - "symfony/translation": "<4.2", - "twig/twig": "<1.43|<2.13,>=2" - }, - "provide": { - "psr/log-implementation": "1.0|2.0" - }, - "require-dev": { - "psr/cache": "^1.0|^2.0|^3.0", - "symfony/browser-kit": "^4.3|^5.0", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/console": "^3.4|^4.0", - "symfony/css-selector": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^4.3|^5.0", - "symfony/dom-crawler": "^3.4|^4.0|^5.0", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/finder": "^3.4|^4.0|^5.0", - "symfony/process": "^3.4|^4.0|^5.0", - "symfony/routing": "^3.4|^4.0|^5.0", - "symfony/stopwatch": "^3.4|^4.0|^5.0", - "symfony/templating": "^3.4|^4.0|^5.0", - "symfony/translation": "^4.2|^5.0", - "symfony/translation-contracts": "^1.1|^2", - "twig/twig": "^1.43|^2.13|^3.0.4" - }, - "suggest": { - "symfony/browser-kit": "", - "symfony/config": "", - "symfony/console": "", - "symfony/dependency-injection": "" + "php": ">=7.1" }, "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\HttpKernel\\": "" + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" }, - "exclude-from-classmap": [ - "/Tests/" - ] + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13784,18 +13896,24 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Provides a structured process for converting a Request into a Response", + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], "support": { - "source": "https://github.com/symfony/http-kernel/tree/v4.4.50" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0" }, "funding": [ { @@ -13811,50 +13929,44 @@ "type": "tidelift" } ], - "time": "2023-02-01T08:01:31+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { - "name": "symfony/mime", - "version": "v5.4.13", + "name": "symfony/polyfill-php73", + "version": "v1.28.0", "source": { "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd" + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd", - "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5", + "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/polyfill-intl-idn": "^1.10", - "symfony/polyfill-mbstring": "^1.0", - "symfony/polyfill-php80": "^1.16" - }, - "conflict": { - "egulias/email-validator": "~3.0.0", - "phpdocumentor/reflection-docblock": "<3.2.2", - "phpdocumentor/type-resolver": "<1.4.0", - "symfony/mailer": "<4.4" - }, - "require-dev": { - "egulias/email-validator": "^2.1.10|^3.1", - "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/dependency-injection": "^4.4|^5.0|^6.0", - "symfony/property-access": "^4.4|^5.1|^6.0", - "symfony/property-info": "^4.4|^5.1|^6.0", - "symfony/serializer": "^5.2|^6.0" + "php": ">=7.1" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Component\\Mime\\": "" + "Symfony\\Polyfill\\Php73\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -13863,22 +13975,24 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Allows manipulating MIME messages", + "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ - "mime", - "mime-type" + "compatibility", + "polyfill", + "portable", + "shim" ], "support": { - "source": "https://github.com/symfony/mime/tree/v5.4.13" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0" }, "funding": [ { @@ -13894,35 +14008,29 @@ "type": "tidelift" } ], - "time": "2022-09-01T18:18:29+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { - "name": "symfony/polyfill-ctype", - "version": "v1.27.0", + "name": "symfony/polyfill-php80", + "version": "v1.28.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", - "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", "shasum": "" }, "require": { "php": ">=7.1" }, - "provide": { - "ext-ctype": "*" - }, - "suggest": { - "ext-ctype": "For best performance" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -13934,8 +14042,11 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - } + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13943,24 +14054,28 @@ ], "authors": [ { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for ctype functions", + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "ctype", "polyfill", - "portable" + "portable", + "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0" }, "funding": [ { @@ -13976,35 +14091,29 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { - "name": "symfony/polyfill-iconv", - "version": "v1.27.0", + "name": "symfony/polyfill-php81", + "version": "v1.28.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "927013f3aac555983a5059aada98e1907d842695" + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695", - "reference": "927013f3aac555983a5059aada98e1907d842695", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b", + "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b", "shasum": "" }, "require": { "php": ">=7.1" }, - "provide": { - "ext-iconv": "*" - }, - "suggest": { - "ext-iconv": "For best performance" - }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -14016,8 +14125,11 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Iconv\\": "" - } + "Symfony\\Polyfill\\Php81\\": "" + }, + "classmap": [ + "Resources/stubs" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -14033,17 +14145,16 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Iconv extension", + "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "iconv", "polyfill", "portable", "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0" }, "funding": [ { @@ -14059,29 +14170,25 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { - "name": "symfony/polyfill-intl-idn", + "name": "symfony/polyfill-php83", "version": "v1.27.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "639084e360537a19f9ee352433b84ce831f3d2da" + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "508c652ba3ccf69f8c97f251534f229791b52a57" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", - "reference": "639084e360537a19f9ee352433b84ce831f3d2da", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57", + "reference": "508c652ba3ccf69f8c97f251534f229791b52a57", "shasum": "" }, "require": { "php": ">=7.1", - "symfony/polyfill-intl-normalizer": "^1.10", - "symfony/polyfill-php72": "^1.10" - }, - "suggest": { - "ext-intl": "For best performance" + "symfony/polyfill-php80": "^1.14" }, "type": "library", "extra": { @@ -14098,7 +14205,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Intl\\Idn\\": "" + "Symfony\\Polyfill\\Php83\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -14107,30 +14214,24 @@ ], "authors": [ { - "name": "Laurent Bassin", - "email": "laurent@bassin.info" - }, - { - "name": "Trevor Rowbotham", - "email": "trevor.rowbotham@pm.me" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "idn", - "intl", "polyfill", "portable", "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0" }, "funding": [ { @@ -14149,44 +14250,29 @@ "time": "2022-11-03T14:55:06+00:00" }, { - "name": "symfony/polyfill-intl-normalizer", - "version": "v1.27.0", + "name": "symfony/process", + "version": "v6.3.4", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" + "url": "https://github.com/symfony/process.git", + "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", - "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54", + "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54", "shasum": "" }, "require": { - "php": ">=7.1" - }, - "suggest": { - "ext-intl": "For best performance" + "php": ">=8.1" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.27-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + "Symfony\\Component\\Process\\": "" }, - "classmap": [ - "Resources/stubs" + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -14195,26 +14281,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's Normalizer class and related functions", + "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "intl", - "normalizer", - "polyfill", - "portable", - "shim" - ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" + "source": "https://github.com/symfony/process/tree/v6.3.4" }, "funding": [ { @@ -14230,74 +14308,79 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-08-07T10:39:22+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.27.0", + "name": "symfony/psr-http-message-bridge", + "version": "v2.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" + "url": "https://github.com/symfony/psr-http-message-bridge.git", + "reference": "28a732c05bbad801304ad5a5c674cf2970508993" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", - "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993", + "reference": "28a732c05bbad801304ad5a5c674cf2970508993", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2.5", + "psr/http-message": "^1.0 || ^2.0", + "symfony/http-foundation": "^5.4 || ^6.0" }, - "provide": { - "ext-mbstring": "*" + "require-dev": { + "nyholm/psr7": "^1.1", + "psr/log": "^1.1 || ^2 || ^3", + "symfony/browser-kit": "^5.4 || ^6.0", + "symfony/config": "^5.4 || ^6.0", + "symfony/event-dispatcher": "^5.4 || ^6.0", + "symfony/framework-bundle": "^5.4 || ^6.0", + "symfony/http-kernel": "^5.4 || ^6.0", + "symfony/phpunit-bridge": "^6.2" }, "suggest": { - "ext-mbstring": "For best performance" + "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" }, - "type": "library", + "type": "symfony-bridge", "extra": { "branch-alias": { - "dev-main": "1.27-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-main": "2.2-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - } - }, + "Symfony\\Bridge\\PsrHttpMessage\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "homepage": "http://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Mbstring extension", - "homepage": "https://symfony.com", + "description": "PSR HTTP message bridge", + "homepage": "http://symfony.com", "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" + "http", + "http-message", + "psr-17", + "psr-7" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" + "issues": "https://github.com/symfony/psr-http-message-bridge/issues", + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0" }, "funding": [ { @@ -14313,42 +14396,49 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-04-21T08:40:19+00:00" }, { - "name": "symfony/polyfill-php72", - "version": "v1.28.0", + "name": "symfony/routing", + "version": "v6.3.5", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" + "url": "https://github.com/symfony/routing.git", + "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", - "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", + "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31", + "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } + "conflict": { + "doctrine/annotations": "<1.12", + "symfony/config": "<6.2", + "symfony/dependency-injection": "<5.4", + "symfony/yaml": "<5.4" + }, + "require-dev": { + "doctrine/annotations": "^1.12|^2", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.2", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/http-foundation": "^5.4|^6.0", + "symfony/yaml": "^5.4|^6.0" }, + "type": "library", "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Php72\\": "" - } + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -14356,24 +14446,24 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "description": "Maps an HTTP request to a set of configuration variables", "homepage": "https://symfony.com", "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" + "router", + "routing", + "uri", + "url" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0" + "source": "https://github.com/symfony/routing/tree/v6.3.5" }, "funding": [ { @@ -14389,44 +14479,65 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2023-09-20T16:05:51+00:00" }, { - "name": "symfony/polyfill-php73", - "version": "v1.28.0", + "name": "symfony/serializer", + "version": "v6.3.6", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5" + "url": "https://github.com/symfony/serializer.git", + "reference": "8c5fb7144889839751ad9680cf4f183f60f8fbce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5", - "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5", + "url": "https://api.github.com/repos/symfony/serializer/zipball/8c5fb7144889839751ad9680cf4f183f60f8fbce", + "reference": "8c5fb7144889839751ad9680cf4f183f60f8fbce", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "~1.8" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } + "conflict": { + "doctrine/annotations": "<1.12", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/dependency-injection": "<5.4", + "symfony/property-access": "<5.4", + "symfony/property-info": "<5.4.24|>=6,<6.2.11", + "symfony/uid": "<5.4", + "symfony/yaml": "<5.4" + }, + "require-dev": { + "doctrine/annotations": "^1.12|^2", + "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0", + "symfony/cache": "^5.4|^6.0", + "symfony/config": "^5.4|^6.0", + "symfony/console": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/error-handler": "^5.4|^6.0", + "symfony/filesystem": "^5.4|^6.0", + "symfony/form": "^5.4|^6.0", + "symfony/http-foundation": "^5.4|^6.0", + "symfony/http-kernel": "^5.4|^6.0", + "symfony/mime": "^5.4|^6.0", + "symfony/property-access": "^5.4|^6.0", + "symfony/property-info": "^5.4.24|^6.2.11", + "symfony/uid": "^5.4|^6.0", + "symfony/validator": "^5.4|^6.0", + "symfony/var-dumper": "^5.4|^6.0", + "symfony/var-exporter": "^5.4|^6.0", + "symfony/yaml": "^5.4|^6.0" }, + "type": "library", "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" + "Symfony\\Component\\Serializer\\": "" }, - "classmap": [ - "Resources/stubs" + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -14435,24 +14546,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0" + "source": "https://github.com/symfony/serializer/tree/v6.3.6" }, "funding": [ { @@ -14468,44 +14573,45 @@ "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2023-10-17T11:32:53+00:00" }, { - "name": "symfony/polyfill-php80", - "version": "v1.27.0", + "name": "symfony/service-contracts", + "version": "v3.3.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" + "url": "https://github.com/symfony/service-contracts.git", + "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", - "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4", + "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.1", + "psr/container": "^2.0" + }, + "conflict": { + "ext-psr": "<1.1|>=2" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "3.4-dev" }, "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" + "Symfony\\Contracts\\Service\\": "" }, - "classmap": [ - "Resources/stubs" + "exclude-from-classmap": [ + "/Test/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -14513,10 +14619,6 @@ "MIT" ], "authors": [ - { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, { "name": "Nicolas Grekas", "email": "p@tchwork.com" @@ -14526,16 +14628,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "description": "Generic abstractions related to writing services", "homepage": "https://symfony.com", "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" + "source": "https://github.com/symfony/service-contracts/tree/v3.3.0" }, "funding": [ { @@ -14551,30 +14655,46 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { - "name": "symfony/process", - "version": "v4.4.44", + "name": "symfony/string", + "version": "v6.3.5", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2" + "url": "https://github.com/symfony/string.git", + "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2", - "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2", + "url": "https://api.github.com/repos/symfony/string/zipball/13d76d0fb049051ed12a04bef4f9de8715bea339", + "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/error-handler": "^5.4|^6.0", + "symfony/http-client": "^5.4|^6.0", + "symfony/intl": "^6.2", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^5.4|^6.0" }, "type": "library", "autoload": { + "files": [ + "Resources/functions.php" + ], "psr-4": { - "Symfony\\Component\\Process\\": "" + "Symfony\\Component\\String\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -14586,18 +14706,26 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Executes commands in sub-processes", + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], "support": { - "source": "https://github.com/symfony/process/tree/v4.4.44" + "source": "https://github.com/symfony/string/tree/v6.3.5" }, "funding": [ { @@ -14613,52 +14741,41 @@ "type": "tidelift" } ], - "time": "2022-06-27T13:16:42+00:00" + "time": "2023-09-18T10:38:32+00:00" }, { - "name": "symfony/psr-http-message-bridge", - "version": "v2.1.4", + "name": "symfony/translation-contracts", + "version": "v3.3.0", "source": { "type": "git", - "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "a125b93ef378c492e274f217874906fb9babdebb" + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb", - "reference": "a125b93ef378c492e274f217874906fb9babdebb", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86", + "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86", "shasum": "" }, "require": { - "php": ">=7.1", - "psr/http-message": "^1.0", - "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0" - }, - "require-dev": { - "nyholm/psr7": "^1.1", - "psr/log": "^1.1 || ^2 || ^3", - "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0", - "symfony/config": "^4.4 || ^5.0 || ^6.0", - "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0", - "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0", - "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0", - "symfony/phpunit-bridge": "^5.4@dev || ^6.0" - }, - "suggest": { - "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + "php": ">=8.1" }, - "type": "symfony-bridge", + "type": "library", "extra": { "branch-alias": { - "dev-main": "2.1-dev" + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { "psr-4": { - "Symfony\\Bridge\\PsrHttpMessage\\": "" + "Symfony\\Contracts\\Translation\\": "" }, "exclude-from-classmap": [ - "/Tests/" + "/Test/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -14667,25 +14784,26 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", - "homepage": "http://symfony.com/contributors" + "homepage": "https://symfony.com/contributors" } ], - "description": "PSR HTTP message bridge", - "homepage": "http://symfony.com", + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", "keywords": [ - "http", - "http-message", - "psr-17", - "psr-7" + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" ], "support": { - "issues": "https://github.com/symfony/psr-http-message-bridge/issues", - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4" + "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0" }, "funding": [ { @@ -14701,51 +14819,64 @@ "type": "tidelift" } ], - "time": "2022-11-28T22:46:34+00:00" + "time": "2023-05-30T17:17:10+00:00" }, { - "name": "symfony/routing", - "version": "v4.4.44", + "name": "symfony/validator", + "version": "v6.3.6", "source": { "type": "git", - "url": "https://github.com/symfony/routing.git", - "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae" + "url": "https://github.com/symfony/validator.git", + "reference": "254290aa13d591883eb36327cbe80689cee38ffb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae", - "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae", + "url": "https://api.github.com/repos/symfony/validator/zipball/254290aa13d591883eb36327cbe80689cee38ffb", + "reference": "254290aa13d591883eb36327cbe80689cee38ffb", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php83": "^1.27", + "symfony/translation-contracts": "^2.5|^3" }, "conflict": { - "symfony/config": "<4.2", - "symfony/dependency-injection": "<3.4", - "symfony/yaml": "<3.4" + "doctrine/annotations": "<1.13", + "doctrine/lexer": "<1.1", + "symfony/dependency-injection": "<5.4", + "symfony/expression-language": "<5.4", + "symfony/http-kernel": "<5.4", + "symfony/intl": "<5.4", + "symfony/property-info": "<5.4", + "symfony/translation": "<5.4", + "symfony/yaml": "<5.4" }, "require-dev": { - "doctrine/annotations": "^1.10.4", - "psr/log": "^1|^2|^3", - "symfony/config": "^4.2|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/http-foundation": "^3.4|^4.0|^5.0", - "symfony/yaml": "^3.4|^4.0|^5.0" - }, - "suggest": { - "doctrine/annotations": "For using the annotation loader", - "symfony/config": "For using the all-in-one router or any loader", - "symfony/expression-language": "For using expression matching", - "symfony/http-foundation": "For using a Symfony Request object", - "symfony/yaml": "For using the YAML loader" + "doctrine/annotations": "^1.13|^2", + "egulias/email-validator": "^2.1.10|^3|^4", + "symfony/cache": "^5.4|^6.0", + "symfony/config": "^5.4|^6.0", + "symfony/console": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/finder": "^5.4|^6.0", + "symfony/http-client": "^5.4|^6.0", + "symfony/http-foundation": "^5.4|^6.0", + "symfony/http-kernel": "^5.4|^6.0", + "symfony/intl": "^5.4|^6.0", + "symfony/mime": "^5.4|^6.0", + "symfony/property-access": "^5.4|^6.0", + "symfony/property-info": "^5.4|^6.0", + "symfony/translation": "^5.4|^6.0", + "symfony/yaml": "^5.4|^6.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Routing\\": "" + "Symfony\\Component\\Validator\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -14765,16 +14896,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Maps an HTTP request to a set of configuration variables", + "description": "Provides tools to validate values", "homepage": "https://symfony.com", - "keywords": [ - "router", - "routing", - "uri", - "url" - ], "support": { - "source": "https://github.com/symfony/routing/tree/v4.4.44" + "source": "https://github.com/symfony/validator/tree/v6.3.6" }, "funding": [ { @@ -14790,62 +14915,48 @@ "type": "tidelift" } ], - "time": "2022-07-20T09:59:04+00:00" + "time": "2023-10-20T16:20:17+00:00" }, { - "name": "symfony/serializer", - "version": "v4.4.47", + "name": "symfony/var-dumper", + "version": "v6.3.6", "source": { "type": "git", - "url": "https://github.com/symfony/serializer.git", - "reference": "6e01d63c55657930a6de03d6e36aae50af98888d" + "url": "https://github.com/symfony/var-dumper.git", + "reference": "999ede244507c32b8e43aebaa10e9fce20de7c97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/6e01d63c55657930a6de03d6e36aae50af98888d", - "reference": "6e01d63c55657930a6de03d6e36aae50af98888d", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/999ede244507c32b8e43aebaa10e9fce20de7c97", + "reference": "999ede244507c32b8e43aebaa10e9fce20de7c97", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php80": "^1.16" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2", - "phpdocumentor/type-resolver": "<0.3.0|1.3.*", - "symfony/dependency-injection": "<3.4", - "symfony/property-access": "<3.4", - "symfony/property-info": "<3.4", - "symfony/yaml": "<3.4" + "symfony/console": "<5.4" }, "require-dev": { - "doctrine/annotations": "^1.10.4", - "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0", - "symfony/cache": "^3.4|^4.0|^5.0", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/error-handler": "^4.4|^5.0", - "symfony/http-foundation": "^3.4|^4.0|^5.0", - "symfony/mime": "^4.4|^5.0", - "symfony/property-access": "^4.4.36|^5.3.13", - "symfony/property-info": "^3.4.13|~4.0|^5.0", - "symfony/validator": "^3.4|^4.0|^5.0", - "symfony/yaml": "^3.4|^4.0|^5.0" - }, - "suggest": { - "doctrine/annotations": "For using the annotation mapping.", - "psr/cache-implementation": "For using the metadata cache.", - "symfony/config": "For using the XML mapping loader.", - "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.", - "symfony/property-access": "For using the ObjectNormalizer.", - "symfony/property-info": "To deserialize relations.", - "symfony/yaml": "For using the default YAML mapping loader." + "ext-iconv": "*", + "symfony/console": "^5.4|^6.0", + "symfony/http-kernel": "^5.4|^6.0", + "symfony/process": "^5.4|^6.0", + "symfony/uid": "^5.4|^6.0", + "twig/twig": "^2.13|^3.0.4" }, + "bin": [ + "Resources/bin/var-dump-server" + ], "type": "library", "autoload": { + "files": [ + "Resources/functions/dump.php" + ], "psr-4": { - "Symfony\\Component\\Serializer\\": "" + "Symfony\\Component\\VarDumper\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -14857,18 +14968,22 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", + "description": "Provides mechanisms for walking through any arbitrary PHP variable", "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], "support": { - "source": "https://github.com/symfony/serializer/tree/v4.4.47" + "source": "https://github.com/symfony/var-dumper/tree/v6.3.6" }, "funding": [ { @@ -14884,47 +14999,36 @@ "type": "tidelift" } ], - "time": "2022-09-19T08:38:33+00:00" + "time": "2023-10-12T18:45:56+00:00" }, { - "name": "symfony/service-contracts", - "version": "v2.5.2", + "name": "symfony/var-exporter", + "version": "v6.3.6", "source": { "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c" + "url": "https://github.com/symfony/var-exporter.git", + "reference": "374d289c13cb989027274c86206ddc63b16a2441" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c", - "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441", + "reference": "374d289c13cb989027274c86206ddc63b16a2441", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/container": "^1.1", - "symfony/deprecation-contracts": "^2.1|^3" - }, - "conflict": { - "ext-psr": "<1.1|>=2" + "php": ">=8.1" }, - "suggest": { - "symfony/service-implementation": "" + "require-dev": { + "symfony/var-dumper": "^5.4|^6.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, "autoload": { "psr-4": { - "Symfony\\Contracts\\Service\\": "" - } + "Symfony\\Component\\VarExporter\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -14940,18 +15044,20 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to writing services", + "description": "Allows exporting any serializable PHP data structure to plain PHP code", "homepage": "https://symfony.com", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "clone", + "construct", + "export", + "hydrate", + "instantiate", + "lazy-loading", + "proxy", + "serialize" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.5.2" + "source": "https://github.com/symfony/var-exporter/tree/v6.3.6" }, "funding": [ { @@ -14967,57 +15073,40 @@ "type": "tidelift" } ], - "time": "2022-05-30T19:17:29+00:00" + "time": "2023-10-13T09:16:49+00:00" }, { - "name": "symfony/translation", - "version": "v4.4.47", + "name": "symfony/yaml", + "version": "v6.3.3", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94" + "url": "https://github.com/symfony/yaml.git", + "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94", - "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94", + "url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add", + "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.16", - "symfony/translation-contracts": "^1.1.6|^2" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8" }, "conflict": { - "symfony/config": "<3.4", - "symfony/dependency-injection": "<3.4", - "symfony/http-kernel": "<4.4", - "symfony/yaml": "<3.4" - }, - "provide": { - "symfony/translation-implementation": "1.0|2.0" + "symfony/console": "<5.4" }, "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/console": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/finder": "~2.8|~3.0|~4.0|^5.0", - "symfony/http-kernel": "^4.4", - "symfony/intl": "^3.4|^4.0|^5.0", - "symfony/service-contracts": "^1.1.2|^2", - "symfony/yaml": "^3.4|^4.0|^5.0" - }, - "suggest": { - "psr/log-implementation": "To use logging capability in translator", - "symfony/config": "", - "symfony/yaml": "" + "symfony/console": "^5.4|^6.0" }, + "bin": [ + "Resources/bin/yaml-lint" + ], "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Translation\\": "" + "Symfony\\Component\\Yaml\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15037,10 +15126,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides tools to internationalize your application", + "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v4.4.47" + "source": "https://github.com/symfony/yaml/tree/v6.3.3" }, "funding": [ { @@ -15056,305 +15145,241 @@ "type": "tidelift" } ], - "time": "2022-10-03T15:15:11+00:00" + "time": "2023-07-31T07:08:24+00:00" }, { - "name": "symfony/translation-contracts", - "version": "v2.5.2", + "name": "twig/twig", + "version": "v3.6.1", "source": { "type": "git", - "url": "https://github.com/symfony/translation-contracts.git", - "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe" + "url": "https://github.com/twigphp/Twig.git", + "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe", - "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd", + "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=7.2.5", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.3" }, - "suggest": { - "symfony/translation-implementation": "" + "require-dev": { + "psr/container": "^1.0|^2.0", + "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, "autoload": { "psr-4": { - "Symfony\\Contracts\\Translation\\": "" + "Twig\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Twig Team", + "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" } ], - "description": "Generic abstractions related to translation", - "homepage": "https://symfony.com", + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "templating" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2" + "issues": "https://github.com/twigphp/Twig/issues", + "source": "https://github.com/twigphp/Twig/tree/v3.6.1" }, "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, { "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/twig/twig", "type": "tidelift" } ], - "time": "2022-06-27T16:58:25+00:00" + "time": "2023-06-08T12:52:13+00:00" }, { - "name": "symfony/validator", - "version": "v4.4.48", + "name": "vlucas/phpdotenv", + "version": "v5.5.0", "source": { "type": "git", - "url": "https://github.com/symfony/validator.git", - "reference": "54781a4c41efbd283b779110bf8ae7f263737775" + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/54781a4c41efbd283b779110bf8ae7f263737775", - "reference": "54781a4c41efbd283b779110bf8ae7f263737775", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", + "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.16", - "symfony/translation-contracts": "^1.1|^2" - }, - "conflict": { - "doctrine/lexer": "<1.1", - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", - "symfony/dependency-injection": "<3.4", - "symfony/http-kernel": "<4.4", - "symfony/intl": "<4.3", - "symfony/translation": ">=5.0", - "symfony/yaml": "<3.4" + "ext-pcre": "*", + "graham-campbell/result-type": "^1.0.2", + "php": "^7.1.3 || ^8.0", + "phpoption/phpoption": "^1.8", + "symfony/polyfill-ctype": "^1.23", + "symfony/polyfill-mbstring": "^1.23.1", + "symfony/polyfill-php80": "^1.23.1" }, "require-dev": { - "doctrine/annotations": "^1.10.4", - "doctrine/cache": "^1.0|^2.0", - "egulias/email-validator": "^2.1.10|^3", - "symfony/cache": "^3.4|^4.0|^5.0", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/http-client": "^4.3|^5.0", - "symfony/http-foundation": "^4.1|^5.0", - "symfony/http-kernel": "^4.4", - "symfony/intl": "^4.3|^5.0", - "symfony/mime": "^4.4|^5.0", - "symfony/property-access": "^3.4|^4.0|^5.0", - "symfony/property-info": "^3.4|^4.0|^5.0", - "symfony/translation": "^4.2", - "symfony/yaml": "^3.4|^4.0|^5.0" + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-filter": "*", + "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25" }, "suggest": { - "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.", - "doctrine/cache": "For using the default cached annotation reader.", - "egulias/email-validator": "Strict (RFC compliant) email validation", - "psr/cache-implementation": "For using the mapping 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/property-info": "To automatically add NotNull and Type constraints", - "symfony/translation": "For translating validation errors.", - "symfony/yaml": "" + "ext-filter": "Required to use the boolean validator." }, "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "branch-alias": { + "dev-master": "5.5-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\Validator\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Dotenv\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" } ], - "description": "Provides tools to validate values", - "homepage": "https://symfony.com", + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], "support": { - "source": "https://github.com/symfony/validator/tree/v4.4.48" + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", + "url": "https://github.com/GrahamCampbell", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", "type": "tidelift" } ], - "time": "2022-10-25T13:54:11+00:00" + "time": "2022-10-16T01:01:54+00:00" }, { - "name": "symfony/var-dumper", - "version": "v5.4.28", + "name": "webflo/drupal-finder", + "version": "1.2.2", "source": { "type": "git", - "url": "https://github.com/symfony/var-dumper.git", - "reference": "684b36ff415e1381d4a943c3ca2502cd2debad73" + "url": "https://github.com/webflo/drupal-finder.git", + "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/684b36ff415e1381d4a943c3ca2502cd2debad73", - "reference": "684b36ff415e1381d4a943c3ca2502cd2debad73", + "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee", + "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.16" - }, - "conflict": { - "symfony/console": "<4.4" + "ext-json": "*" }, "require-dev": { - "ext-iconv": "*", - "symfony/console": "^4.4|^5.0|^6.0", - "symfony/http-kernel": "^4.4|^5.0|^6.0", - "symfony/process": "^4.4|^5.0|^6.0", - "symfony/uid": "^5.1|^6.0", - "twig/twig": "^2.13|^3.0.4" - }, - "suggest": { - "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", - "ext-intl": "To show region name in time zone dump", - "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" + "mikey179/vfsstream": "^1.6", + "phpunit/phpunit": "^4.8" }, - "bin": [ - "Resources/bin/var-dump-server" - ], "type": "library", "autoload": { - "files": [ - "Resources/functions/dump.php" - ], - "psr-4": { - "Symfony\\Component\\VarDumper\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "src/DrupalFinder.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Florian Weber", + "email": "florian@webflo.org" } ], - "description": "Provides mechanisms for walking through any arbitrary PHP variable", - "homepage": "https://symfony.com", - "keywords": [ - "debug", - "dump" - ], + "description": "Helper class to locate a Drupal installation from a given path.", "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.4.28" + "issues": "https://github.com/webflo/drupal-finder/issues", + "source": "https://github.com/webflo/drupal-finder/tree/1.2.2" }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2023-08-24T13:38:36+00:00" + "time": "2020-10-27T09:42:17+00:00" }, { - "name": "symfony/var-exporter", - "version": "v6.3.4", + "name": "willdurand/geocoder", + "version": "4.6.0", "source": { "type": "git", - "url": "https://github.com/symfony/var-exporter.git", - "reference": "df1f8aac5751871b83d30bf3e2c355770f8f0691" + "url": "https://github.com/geocoder-php/php-common.git", + "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df1f8aac5751871b83d30bf3e2c355770f8f0691", - "reference": "df1f8aac5751871b83d30bf3e2c355770f8f0691", + "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1", + "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1", "shasum": "" }, "require": { - "php": ">=8.1" + "php": "^7.4 || ^8.0" }, "require-dev": { - "symfony/var-dumper": "^5.4|^6.0" + "nyholm/nsa": "^1.1", + "phpunit/phpunit": "^9.5", + "symfony/stopwatch": "~2.5" + }, + "suggest": { + "symfony/stopwatch": "If you want to use the TimedGeocoder" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\VarExporter\\": "" + "Geocoder\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -15366,80 +15391,64 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "William Durand", + "email": "william.durand1@gmail.com" } ], - "description": "Allows exporting any serializable PHP data structure to plain PHP code", - "homepage": "https://symfony.com", + "description": "Common files for PHP Geocoder", + "homepage": "http://geocoder-php.org", "keywords": [ - "clone", - "construct", - "export", - "hydrate", - "instantiate", - "lazy-loading", - "proxy", - "serialize" + "abstraction", + "geocoder", + "geocoding", + "geoip" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.3.4" + "source": "https://github.com/geocoder-php/php-common/tree/4.6.0" }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2023-08-16T18:14:47+00:00" - }, + "time": "2022-07-30T11:09:43+00:00" + } + ], + "packages-dev": [ { - "name": "symfony/yaml", - "version": "v4.4.45", + "name": "behat/mink", + "version": "v1.10.0", "source": { "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d" + "url": "https://github.com/minkphp/Mink.git", + "reference": "19e58905632e7cfdc5b2bafb9b950a3521af32c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d", - "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d", + "url": "https://api.github.com/repos/minkphp/Mink/zipball/19e58905632e7cfdc5b2bafb9b950a3521af32c5", + "reference": "19e58905632e7cfdc5b2bafb9b950a3521af32c5", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8" - }, - "conflict": { - "symfony/console": "<3.4" + "php": ">=7.2", + "symfony/css-selector": "^4.4 || ^5.0 || ^6.0" }, "require-dev": { - "symfony/console": "^3.4|^4.0|^5.0" + "phpunit/phpunit": "^8.5.22 || ^9.5.11", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0", + "symfony/phpunit-bridge": "^5.4 || ^6.0" }, "suggest": { - "symfony/console": "For validating YAML files using the lint command" + "behat/mink-browserkit-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)", + "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\Yaml\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Behat\\Mink\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -15447,324 +15456,348 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" } ], - "description": "Loads and dumps YAML files", - "homepage": "https://symfony.com", + "description": "Browser controller/emulator abstraction for PHP", + "homepage": "https://mink.behat.org/", + "keywords": [ + "browser", + "testing", + "web" + ], "support": { - "source": "https://github.com/symfony/yaml/tree/v4.4.45" + "issues": "https://github.com/minkphp/Mink/issues", + "source": "https://github.com/minkphp/Mink/tree/v1.10.0" }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2022-08-02T15:47:23+00:00" + "time": "2022-03-28T14:22:43+00:00" }, { - "name": "twig/twig", - "version": "v2.15.5", + "name": "behat/mink-browserkit-driver", + "version": "v2.1.0", "source": { "type": "git", - "url": "https://github.com/twigphp/Twig.git", - "reference": "fc02a6af3eeb97c4bf5650debc76c2eda85ac22e" + "url": "https://github.com/minkphp/MinkBrowserKitDriver.git", + "reference": "d2768e6c17b293d86d8fcff54cbb9e6ad938fee1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/fc02a6af3eeb97c4bf5650debc76c2eda85ac22e", - "reference": "fc02a6af3eeb97c4bf5650debc76c2eda85ac22e", + "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/d2768e6c17b293d86d8fcff54cbb9e6ad938fee1", + "reference": "d2768e6c17b293d86d8fcff54cbb9e6ad938fee1", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php72": "^1.8" + "behat/mink": "^1.9.0@dev", + "php": ">=7.2", + "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0", + "symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0" }, "require-dev": { - "psr/container": "^1.0", - "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0" + "mink/driver-testsuite": "dev-master", + "phpunit/phpunit": "^8.5 || ^9.5", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0", + "symfony/http-client": "^4.4 || ^5.0 || ^6.0", + "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0", + "symfony/mime": "^4.4 || ^5.0 || ^6.0", + "yoast/phpunit-polyfills": "^1.0" }, - "type": "library", + "type": "mink-driver", "extra": { "branch-alias": { - "dev-master": "2.15-dev" + "dev-master": "2.x-dev" } }, "autoload": { - "psr-0": { - "Twig_": "lib/" - }, "psr-4": { - "Twig\\": "src/" + "Behat\\Mink\\Driver\\": "src/" } }, "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": "Twig Team", - "role": "Contributors" - }, - { - "name": "Armin Ronacher", - "email": "armin.ronacher@active-4.com", - "role": "Project Founder" + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" } ], - "description": "Twig, the flexible, fast, and secure template language for PHP", - "homepage": "https://twig.symfony.com", + "description": "Symfony2 BrowserKit driver for Mink framework", + "homepage": "https://mink.behat.org/", "keywords": [ - "templating" + "Mink", + "Symfony2", + "browser", + "testing" ], "support": { - "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v2.15.5" + "issues": "https://github.com/minkphp/MinkBrowserKitDriver/issues", + "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v2.1.0" }, - "funding": [ - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/twig/twig", - "type": "tidelift" - } - ], - "time": "2023-05-03T17:49:41+00:00" + "time": "2022-03-28T14:33:51+00:00" }, { - "name": "typo3/phar-stream-wrapper", - "version": "v3.1.7", + "name": "behat/mink-selenium2-driver", + "version": "v1.6.0", "source": { "type": "git", - "url": "https://github.com/TYPO3/phar-stream-wrapper.git", - "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c" + "url": "https://github.com/minkphp/MinkSelenium2Driver.git", + "reference": "e5f8421654930da725499fb92983e6948c6f973e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c", - "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c", + "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/e5f8421654930da725499fb92983e6948c6f973e", + "reference": "e5f8421654930da725499fb92983e6948c6f973e", "shasum": "" }, "require": { + "behat/mink": "^1.9@dev", "ext-json": "*", - "php": "^7.0 || ^8.0" + "instaclick/php-webdriver": "^1.4", + "php": ">=7.2" }, "require-dev": { - "ext-xdebug": "*", - "phpspec/prophecy": "^1.10", - "symfony/phpunit-bridge": "^5.1" - }, - "suggest": { - "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing" + "mink/driver-testsuite": "dev-master", + "phpunit/phpunit": "^8.5.22 || ^9.5.11", + "symfony/error-handler": "^4.4 || ^5.0" }, - "type": "library", + "type": "mink-driver", "extra": { "branch-alias": { - "dev-master": "v3.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "TYPO3\\PharStreamWrapper\\": "src/" + "Behat\\Mink\\Driver\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Interceptors for PHP's native phar:// stream handling", - "homepage": "https://typo3.org/", + "authors": [ + { + "name": "Pete Otaqui", + "email": "pete@otaqui.com", + "homepage": "https://github.com/pete-otaqui" + }, + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Selenium2 (WebDriver) driver for Mink framework", + "homepage": "https://mink.behat.org/", "keywords": [ - "phar", - "php", - "security", - "stream-wrapper" + "ajax", + "browser", + "javascript", + "selenium", + "testing", + "webdriver" ], "support": { - "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues", - "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7" + "issues": "https://github.com/minkphp/MinkSelenium2Driver/issues", + "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.6.0" }, - "time": "2021-09-20T19:19:13+00:00" + "time": "2022-03-28T14:55:17+00:00" }, { - "name": "vlucas/phpdotenv", - "version": "v2.6.9", + "name": "colinodell/psr-testlogger", + "version": "v1.2.0", "source": { "type": "git", - "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141" + "url": "https://github.com/colinodell/psr-testlogger.git", + "reference": "9246155e688b310fb3d0f201ead2445686b5844e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141", - "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141", + "url": "https://api.github.com/repos/colinodell/psr-testlogger/zipball/9246155e688b310fb3d0f201ead2445686b5844e", + "reference": "9246155e688b310fb3d0f201ead2445686b5844e", "shasum": "" }, "require": { - "php": "^5.3.9 || ^7.0 || ^8.0", - "symfony/polyfill-ctype": "^1.17" + "php": "^8.0", + "psr/log": "^1.0 || ^2.0 || ^3.0" }, - "require-dev": { - "ext-filter": "*", - "ext-pcre": "*", - "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21" + "provide": { + "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" }, - "suggest": { - "ext-filter": "Required to use the boolean validator.", - "ext-pcre": "Required to use most of the library." + "require-dev": { + "phpstan/phpstan": "^1.9.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.30.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.6-dev" - } - }, "autoload": { "psr-4": { - "Dotenv\\": "src/" + "ColinODell\\PsrTestLogger\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - }, - { - "name": "Vance Lucas", - "email": "vance@vancelucas.com", - "homepage": "https://github.com/vlucas" + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" } ], - "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "description": "PSR-3 compliant test logger based on psr/log v1's, but compatible with v2 and v3 too!", + "homepage": "https://github.com/colinodell/psr-testlogger", "keywords": [ - "dotenv", - "env", - "environment" + "log", + "logger", + "logging", + "mock", + "phpunit", + "psr", + "test", + "unit" ], "support": { - "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9" + "issues": "https://github.com/colinodell/psr-testlogger/issues", + "rss": "https://github.com/colinodell/psr-testlogger/releases.atom", + "source": "https://github.com/colinodell/psr-testlogger" }, "funding": [ { - "url": "https://github.com/GrahamCampbell", - "type": "github" + "url": "https://www.colinodell.com/sponsor", + "type": "custom" }, { - "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", - "type": "tidelift" + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" } ], - "time": "2021-12-12T22:59:22+00:00" + "time": "2023-03-14T19:12:55+00:00" }, { - "name": "webflo/drupal-finder", - "version": "1.2.2", + "name": "composer/ca-bundle", + "version": "1.3.7", "source": { "type": "git", - "url": "https://github.com/webflo/drupal-finder.git", - "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee" + "url": "https://github.com/composer/ca-bundle.git", + "reference": "76e46335014860eec1aa5a724799a00a2e47cc85" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee", - "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85", + "reference": "76e46335014860eec1aa5a724799a00a2e47cc85", "shasum": "" }, "require": { - "ext-json": "*" + "ext-openssl": "*", + "ext-pcre": "*", + "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": "^4.8" + "phpstan/phpstan": "^0.12.55", + "psr/log": "^1.0", + "symfony/phpunit-bridge": "^4.2 || ^5", + "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, "autoload": { - "classmap": [ - "src/DrupalFinder.php" - ] + "psr-4": { + "Composer\\CaBundle\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Florian Weber", - "email": "florian@webflo.org" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "Helper class to locate a Drupal installation from a given path.", + "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", + "keywords": [ + "cabundle", + "cacert", + "certificate", + "ssl", + "tls" + ], "support": { - "issues": "https://github.com/webflo/drupal-finder/issues", - "source": "https://github.com/webflo/drupal-finder/tree/1.2.2" + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/ca-bundle/issues", + "source": "https://github.com/composer/ca-bundle/tree/1.3.7" }, - "time": "2020-10-27T09:42:17+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2023-08-30T09:31:38+00:00" }, { - "name": "webmozart/assert", - "version": "1.11.0", + "name": "composer/class-map-generator", + "version": "1.1.0", "source": { "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + "url": "https://github.com/composer/class-map-generator.git", + "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/953cc4ea32e0c31f2185549c7d216d7921f03da9", + "reference": "953cc4ea32e0c31f2185549c7d216d7921f03da9", "shasum": "" }, "require": { - "ext-ctype": "*", - "php": "^7.2 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" + "composer/pcre": "^2.1 || ^3.1", + "php": "^7.2 || ^8.0", + "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7" }, "require-dev": { - "phpunit/phpunit": "^8.5.13" + "phpstan/phpstan": "^1.6", + "phpstan/phpstan-deprecation-rules": "^1", + "phpstan/phpstan-phpunit": "^1", + "phpstan/phpstan-strict-rules": "^1.1", + "symfony/filesystem": "^5.4 || ^6", + "symfony/phpunit-bridge": "^5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.10-dev" + "dev-main": "1.x-dev" } }, "autoload": { "psr-4": { - "Webmozart\\Assert\\": "src/" + "Composer\\ClassMapGenerator\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -15773,53 +15806,102 @@ ], "authors": [ { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" } ], - "description": "Assertions to validate method input/output with nice error messages.", + "description": "Utilities to scan PHP code and generate class maps.", "keywords": [ - "assert", - "check", - "validate" + "classmap" ], "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.0" + "issues": "https://github.com/composer/class-map-generator/issues", + "source": "https://github.com/composer/class-map-generator/tree/1.1.0" }, - "time": "2022-06-03T18:03:27+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2023-06-30T13:58:57+00:00" }, { - "name": "webmozart/path-util", - "version": "2.3.0", + "name": "composer/composer", + "version": "2.6.5", "source": { "type": "git", - "url": "https://github.com/webmozart/path-util.git", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" + "url": "https://github.com/composer/composer.git", + "reference": "4b0fe89db9e65b1e64df633a992e70a7a215ab33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "url": "https://api.github.com/repos/composer/composer/zipball/4b0fe89db9e65b1e64df633a992e70a7a215ab33", + "reference": "4b0fe89db9e65b1e64df633a992e70a7a215ab33", "shasum": "" }, "require": { - "php": ">=5.3.3", - "webmozart/assert": "~1.0" + "composer/ca-bundle": "^1.0", + "composer/class-map-generator": "^1.0", + "composer/metadata-minifier": "^1.0", + "composer/pcre": "^2.1 || ^3.1", + "composer/semver": "^3.2.5", + "composer/spdx-licenses": "^1.5.7", + "composer/xdebug-handler": "^2.0.2 || ^3.0.3", + "justinrainbow/json-schema": "^5.2.11", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1.0 || ^2.0 || ^3.0", + "react/promise": "^2.8 || ^3", + "seld/jsonlint": "^1.4", + "seld/phar-utils": "^1.2", + "seld/signal-handler": "^2.0", + "symfony/console": "^5.4.11 || ^6.0.11 || ^7", + "symfony/filesystem": "^5.4 || ^6.0 || ^7", + "symfony/finder": "^5.4 || ^6.0 || ^7", + "symfony/polyfill-php73": "^1.24", + "symfony/polyfill-php80": "^1.24", + "symfony/polyfill-php81": "^1.24", + "symfony/process": "^5.4 || ^6.0 || ^7" }, "require-dev": { - "phpunit/phpunit": "^4.6", - "sebastian/version": "^1.0.1" + "phpstan/phpstan": "^1.9.3", + "phpstan/phpstan-deprecation-rules": "^1", + "phpstan/phpstan-phpunit": "^1.0", + "phpstan/phpstan-strict-rules": "^1", + "phpstan/phpstan-symfony": "^1.2.10", + "symfony/phpunit-bridge": "^6.0 || ^7" + }, + "suggest": { + "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", + "ext-zip": "Enabling the zip extension allows you to unzip archives", + "ext-zlib": "Allow gzip compression of HTTP requests" }, + "bin": [ + "bin/composer" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-main": "2.6-dev" + }, + "phpstan": { + "includes": [ + "phpstan/rules.neon" + ] } }, "autoload": { "psr-4": { - "Webmozart\\PathUtil\\": "src/" + "Composer\\": "src/Composer/" } }, "notification-url": "https://packagist.org/downloads/", @@ -15828,56 +15910,77 @@ ], "authors": [ { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "https://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" } ], - "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", + "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.", + "homepage": "https://getcomposer.org/", + "keywords": [ + "autoload", + "dependency", + "package" + ], "support": { - "issues": "https://github.com/webmozart/path-util/issues", - "source": "https://github.com/webmozart/path-util/tree/2.3.0" + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/composer/issues", + "security": "https://github.com/composer/composer/security/policy", + "source": "https://github.com/composer/composer/tree/2.6.5" }, - "abandoned": "symfony/filesystem", - "time": "2015-12-17T08:42:14+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2023-10-06T08:11:52+00:00" }, { - "name": "willdurand/geocoder", - "version": "4.4.0", + "name": "composer/metadata-minifier", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/geocoder-php/php-common.git", - "reference": "3e86f5b10ab0cef1cf03f979fe8e34b6476daff0" + "url": "https://github.com/composer/metadata-minifier.git", + "reference": "c549d23829536f0d0e984aaabbf02af91f443207" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/3e86f5b10ab0cef1cf03f979fe8e34b6476daff0", - "reference": "3e86f5b10ab0cef1cf03f979fe8e34b6476daff0", + "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", + "reference": "c549d23829536f0d0e984aaabbf02af91f443207", "shasum": "" }, "require": { - "php": "^7.3 || ^8.0" + "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "nyholm/nsa": "^1.1", - "phpunit/phpunit": "^9.5", - "symfony/stopwatch": "~2.5" - }, - "suggest": { - "symfony/stopwatch": "If you want to use the TimedGeocoder" + "composer/composer": "^2", + "phpstan/phpstan": "^0.12.55", + "symfony/phpunit-bridge": "^4.2 || ^5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.1-dev" + "dev-main": "1.x-dev" } }, "autoload": { "psr-4": { - "Geocoder\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Composer\\MetadataMinifier\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -15885,63 +15988,67 @@ ], "authors": [ { - "name": "William Durand", - "email": "william.durand1@gmail.com" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "Common files for PHP Geocoder", - "homepage": "http://geocoder-php.org", + "description": "Small utility library that handles metadata minification and expansion.", "keywords": [ - "abstraction", - "geocoder", - "geocoding", - "geoip" + "composer", + "compression" ], "support": { - "source": "https://github.com/geocoder-php/php-common/tree/4.4.0" + "issues": "https://github.com/composer/metadata-minifier/issues", + "source": "https://github.com/composer/metadata-minifier/tree/1.0.0" }, - "time": "2020-12-21T09:30:01+00:00" - } - ], - "packages-dev": [ + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2021-04-07T13:37:33+00:00" + }, { - "name": "behat/mink", - "version": "v1.10.0", + "name": "composer/pcre", + "version": "3.1.1", "source": { "type": "git", - "url": "https://github.com/minkphp/Mink.git", - "reference": "19e58905632e7cfdc5b2bafb9b950a3521af32c5" + "url": "https://github.com/composer/pcre.git", + "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/Mink/zipball/19e58905632e7cfdc5b2bafb9b950a3521af32c5", - "reference": "19e58905632e7cfdc5b2bafb9b950a3521af32c5", + "url": "https://api.github.com/repos/composer/pcre/zipball/00104306927c7a0919b4ced2aaa6782c1e61a3c9", + "reference": "00104306927c7a0919b4ced2aaa6782c1e61a3c9", "shasum": "" }, "require": { - "php": ">=7.2", - "symfony/css-selector": "^4.4 || ^5.0 || ^6.0" + "php": "^7.4 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0 || ^6.0", - "symfony/phpunit-bridge": "^5.4 || ^6.0" - }, - "suggest": { - "behat/mink-browserkit-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)", - "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)" + "phpstan/phpstan": "^1.3", + "phpstan/phpstan-strict-rules": "^1.1", + "symfony/phpunit-bridge": "^5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "3.x-dev" } }, "autoload": { "psr-4": { - "Behat\\Mink\\": "src/" + "Composer\\Pcre\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -15950,116 +16057,58 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "Browser controller/emulator abstraction for PHP", - "homepage": "https://mink.behat.org/", + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", "keywords": [ - "browser", - "testing", - "web" + "PCRE", + "preg", + "regex", + "regular expression" ], "support": { - "issues": "https://github.com/minkphp/Mink/issues", - "source": "https://github.com/minkphp/Mink/tree/v1.10.0" - }, - "time": "2022-03-28T14:22:43+00:00" - }, - { - "name": "behat/mink-selenium2-driver", - "version": "v1.6.0", - "source": { - "type": "git", - "url": "https://github.com/minkphp/MinkSelenium2Driver.git", - "reference": "e5f8421654930da725499fb92983e6948c6f973e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/e5f8421654930da725499fb92983e6948c6f973e", - "reference": "e5f8421654930da725499fb92983e6948c6f973e", - "shasum": "" - }, - "require": { - "behat/mink": "^1.9@dev", - "ext-json": "*", - "instaclick/php-webdriver": "^1.4", - "php": ">=7.2" - }, - "require-dev": { - "mink/driver-testsuite": "dev-master", - "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0" - }, - "type": "mink-driver", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Behat\\Mink\\Driver\\": "src/" - } + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.1.1" }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ + "funding": [ { - "name": "Pete Otaqui", - "email": "pete@otaqui.com", - "homepage": "https://github.com/pete-otaqui" + "url": "https://packagist.com", + "type": "custom" }, { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" } ], - "description": "Selenium2 (WebDriver) driver for Mink framework", - "homepage": "https://mink.behat.org/", - "keywords": [ - "ajax", - "browser", - "javascript", - "selenium", - "testing", - "webdriver" - ], - "support": { - "issues": "https://github.com/minkphp/MinkSelenium2Driver/issues", - "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.6.0" - }, - "time": "2022-03-28T14:55:17+00:00" + "time": "2023-10-11T07:11:09+00:00" }, { - "name": "composer/ca-bundle", - "version": "1.3.7", + "name": "composer/spdx-licenses", + "version": "1.5.7", "source": { "type": "git", - "url": "https://github.com/composer/ca-bundle.git", - "reference": "76e46335014860eec1aa5a724799a00a2e47cc85" + "url": "https://github.com/composer/spdx-licenses.git", + "reference": "c848241796da2abf65837d51dce1fae55a960149" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85", - "reference": "76e46335014860eec1aa5a724799a00a2e47cc85", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149", + "reference": "c848241796da2abf65837d51dce1fae55a960149", "shasum": "" }, "require": { - "ext-openssl": "*", - "ext-pcre": "*", "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { "phpstan/phpstan": "^0.12.55", - "psr/log": "^1.0", - "symfony/phpunit-bridge": "^4.2 || ^5", - "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + "symfony/phpunit-bridge": "^4.2 || ^5" }, "type": "library", "extra": { @@ -16069,7 +16118,7 @@ }, "autoload": { "psr-4": { - "Composer\\CaBundle\\": "src" + "Composer\\Spdx\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -16077,24 +16126,32 @@ "MIT" ], "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, { "name": "Jordi Boggiano", "email": "j.boggiano@seld.be", "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" } ], - "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", + "description": "SPDX licenses list and validation library.", "keywords": [ - "cabundle", - "cacert", - "certificate", - "ssl", - "tls" + "license", + "spdx", + "validator" ], "support": { "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.3.7" + "issues": "https://github.com/composer/spdx-licenses/issues", + "source": "https://github.com/composer/spdx-licenses/tree/1.5.7" }, "funding": [ { @@ -16110,61 +16167,36 @@ "type": "tidelift" } ], - "time": "2023-08-30T09:31:38+00:00" + "time": "2022-05-23T07:37:50+00:00" }, { - "name": "composer/composer", - "version": "2.2.21", + "name": "composer/xdebug-handler", + "version": "3.0.3", "source": { "type": "git", - "url": "https://github.com/composer/composer.git", - "reference": "978198befc71de0b18fc1fc5a472c03b184b504a" + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "ced299686f41dce890debac69273b47ffe98a40c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/978198befc71de0b18fc1fc5a472c03b184b504a", - "reference": "978198befc71de0b18fc1fc5a472c03b184b504a", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c", + "reference": "ced299686f41dce890debac69273b47ffe98a40c", "shasum": "" }, "require": { - "composer/ca-bundle": "^1.0", - "composer/metadata-minifier": "^1.0", - "composer/pcre": "^1.0", - "composer/semver": "^3.0", - "composer/spdx-licenses": "^1.2", - "composer/xdebug-handler": "^2.0 || ^3.0", - "justinrainbow/json-schema": "^5.2.11", - "php": "^5.3.2 || ^7.0 || ^8.0", - "psr/log": "^1.0 || ^2.0", - "react/promise": "^1.2 || ^2.7", - "seld/jsonlint": "^1.4", - "seld/phar-utils": "^1.0", - "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0", - "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0", - "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0", - "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0" + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1 || ^2 || ^3" }, "require-dev": { - "phpspec/prophecy": "^1.10", - "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0" - }, - "suggest": { - "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", - "ext-zip": "Enabling the zip extension allows you to unzip archives", - "ext-zlib": "Allow gzip compression of HTTP requests" + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-strict-rules": "^1.1", + "symfony/phpunit-bridge": "^6.0" }, - "bin": [ - "bin/composer" - ], "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.2-dev" - } - }, "autoload": { "psr-4": { - "Composer\\": "src/Composer" + "Composer\\XdebugHandler\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -16173,27 +16205,19 @@ ], "authors": [ { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "https://www.naderman.de" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "https://seld.be" + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" } ], - "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.", - "homepage": "https://getcomposer.org/", + "description": "Restarts a process without Xdebug.", "keywords": [ - "autoload", - "dependency", - "package" + "Xdebug", + "performance" ], "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/composer/issues", - "source": "https://github.com/composer/composer/tree/2.2.21" + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/3.0.3" }, "funding": [ { @@ -16209,39 +16233,42 @@ "type": "tidelift" } ], - "time": "2023-02-15T12:07:40+00:00" + "time": "2022-02-25T21:32:43+00:00" }, { - "name": "composer/metadata-minifier", - "version": "1.0.0", + "name": "dealerdirect/phpcodesniffer-composer-installer", + "version": "v1.0.0", "source": { "type": "git", - "url": "https://github.com/composer/metadata-minifier.git", - "reference": "c549d23829536f0d0e984aaabbf02af91f443207" + "url": "https://github.com/PHPCSStandards/composer-installer.git", + "reference": "4be43904336affa5c2f70744a348312336afd0da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", - "reference": "c549d23829536f0d0e984aaabbf02af91f443207", + "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da", + "reference": "4be43904336affa5c2f70744a348312336afd0da", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" + "composer-plugin-api": "^1.0 || ^2.0", + "php": ">=5.4", + "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" }, "require-dev": { - "composer/composer": "^2", - "phpstan/phpstan": "^0.12.55", - "symfony/phpunit-bridge": "^4.2 || ^5" + "composer/composer": "*", + "ext-json": "*", + "ext-zip": "*", + "php-parallel-lint/php-parallel-lint": "^1.3.1", + "phpcompatibility/php-compatibility": "^9.0", + "yoast/phpunit-polyfills": "^1.0" }, - "type": "library", + "type": "composer-plugin", "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } + "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" }, "autoload": { "psr-4": { - "Composer\\MetadataMinifier\\": "src" + "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -16250,67 +16277,74 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Franck Nijhof", + "email": "franck.nijhof@dealerdirect.com", + "homepage": "http://www.frenck.nl", + "role": "Developer / IT Manager" + }, + { + "name": "Contributors", + "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors" } ], - "description": "Small utility library that handles metadata minification and expansion.", + "description": "PHP_CodeSniffer Standards Composer Installer Plugin", + "homepage": "http://www.dealerdirect.com", "keywords": [ - "composer", - "compression" + "PHPCodeSniffer", + "PHP_CodeSniffer", + "code quality", + "codesniffer", + "composer", + "installer", + "phpcbf", + "phpcs", + "plugin", + "qa", + "quality", + "standard", + "standards", + "style guide", + "stylecheck", + "tests" ], "support": { - "issues": "https://github.com/composer/metadata-minifier/issues", - "source": "https://github.com/composer/metadata-minifier/tree/1.0.0" + "issues": "https://github.com/PHPCSStandards/composer-installer/issues", + "source": "https://github.com/PHPCSStandards/composer-installer" }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2021-04-07T13:37:33+00:00" + "time": "2023-01-05T11:28:13+00:00" }, { - "name": "composer/pcre", - "version": "1.0.1", + "name": "doctrine/common", + "version": "3.4.3", "source": { "type": "git", - "url": "https://github.com/composer/pcre.git", - "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560" + "url": "https://github.com/doctrine/common.git", + "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/67a32d7d6f9f560b726ab25a061b38ff3a80c560", - "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560", + "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced", + "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" + "doctrine/persistence": "^2.0 || ^3.0", + "php": "^7.1 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^1.3", - "phpstan/phpstan-strict-rules": "^1.1", - "symfony/phpunit-bridge": "^4.2 || ^5" + "doctrine/coding-standard": "^9.0 || ^10.0", + "doctrine/collections": "^1", + "phpstan/phpstan": "^1.4.1", + "phpstan/phpstan-phpunit": "^1", + "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0", + "squizlabs/php_codesniffer": "^3.0", + "symfony/phpunit-bridge": "^6.1", + "vimeo/psalm": "^4.4" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, "autoload": { "psr-4": { - "Composer\\Pcre\\": "src" + "Doctrine\\Common\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -16319,68 +16353,87 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" } ], - "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.", + "homepage": "https://www.doctrine-project.org/projects/common.html", "keywords": [ - "PCRE", - "preg", - "regex", - "regular expression" + "common", + "doctrine", + "php" ], "support": { - "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/1.0.1" + "issues": "https://github.com/doctrine/common/issues", + "source": "https://github.com/doctrine/common/tree/3.4.3" }, "funding": [ { - "url": "https://packagist.com", + "url": "https://www.doctrine-project.org/sponsorship.html", "type": "custom" }, { - "url": "https://github.com/composer", - "type": "github" + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" }, { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon", "type": "tidelift" } ], - "time": "2022-01-21T20:24:37+00:00" + "time": "2022-10-09T11:47:59+00:00" }, { - "name": "composer/spdx-licenses", - "version": "1.5.7", + "name": "doctrine/event-manager", + "version": "2.0.0", "source": { "type": "git", - "url": "https://github.com/composer/spdx-licenses.git", - "reference": "c848241796da2abf65837d51dce1fae55a960149" + "url": "https://github.com/doctrine/event-manager.git", + "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149", - "reference": "c848241796da2abf65837d51dce1fae55a960149", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32", + "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" + "php": "^8.1" + }, + "conflict": { + "doctrine/common": "<2.9" }, "require-dev": { - "phpstan/phpstan": "^0.12.55", - "symfony/phpunit-bridge": "^4.2 || ^5" + "doctrine/coding-standard": "^10", + "phpstan/phpstan": "^1.8.8", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^4.28" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, "autoload": { "psr-4": { - "Composer\\Spdx\\": "src" + "Doctrine\\Common\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -16389,76 +16442,90 @@ ], "authors": [ { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "http://www.naderman.de" + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" }, { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Roman Borschel", + "email": "roman@code-factory.org" }, { - "name": "Rob Bast", - "email": "rob.bast@gmail.com", - "homepage": "http://robbast.nl" + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" } ], - "description": "SPDX licenses list and validation library.", + "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", + "homepage": "https://www.doctrine-project.org/projects/event-manager.html", "keywords": [ - "license", - "spdx", - "validator" + "event", + "event dispatcher", + "event manager", + "event system", + "events" ], "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/spdx-licenses/issues", - "source": "https://github.com/composer/spdx-licenses/tree/1.5.7" + "issues": "https://github.com/doctrine/event-manager/issues", + "source": "https://github.com/doctrine/event-manager/tree/2.0.0" }, "funding": [ { - "url": "https://packagist.com", + "url": "https://www.doctrine-project.org/sponsorship.html", "type": "custom" }, { - "url": "https://github.com/composer", - "type": "github" + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" }, { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager", "type": "tidelift" } ], - "time": "2022-05-23T07:37:50+00:00" + "time": "2022-10-12T20:59:15+00:00" }, { - "name": "composer/xdebug-handler", - "version": "3.0.3", + "name": "doctrine/instantiator", + "version": "2.0.0", "source": { "type": "git", - "url": "https://github.com/composer/xdebug-handler.git", - "reference": "ced299686f41dce890debac69273b47ffe98a40c" + "url": "https://github.com/doctrine/instantiator.git", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c", - "reference": "ced299686f41dce890debac69273b47ffe98a40c", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", "shasum": "" }, "require": { - "composer/pcre": "^1 || ^2 || ^3", - "php": "^7.2.5 || ^8.0", - "psr/log": "^1 || ^2 || ^3" + "php": "^8.1" }, "require-dev": { - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-strict-rules": "^1.1", - "symfony/phpunit-bridge": "^6.0" + "doctrine/coding-standard": "^11", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^1.2", + "phpstan/phpstan": "^1.9.4", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5.27", + "vimeo/psalm": "^5.4" }, "type": "library", "autoload": { "psr-4": { - "Composer\\XdebugHandler\\": "src" + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" } }, "notification-url": "https://packagist.org/downloads/", @@ -16467,67 +16534,74 @@ ], "authors": [ { - "name": "John Stevenson", - "email": "john-stevenson@blueyonder.co.uk" + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "https://ocramius.github.io/" } ], - "description": "Restarts a process without Xdebug.", + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", "keywords": [ - "Xdebug", - "performance" + "constructor", + "instantiate" ], "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.3" + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/2.0.0" }, "funding": [ { - "url": "https://packagist.com", + "url": "https://www.doctrine-project.org/sponsorship.html", "type": "custom" }, { - "url": "https://github.com/composer", - "type": "github" + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" }, { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", "type": "tidelift" } ], - "time": "2022-02-25T21:32:43+00:00" + "time": "2022-12-30T00:23:10+00:00" }, { - "name": "dealerdirect/phpcodesniffer-composer-installer", - "version": "v0.7.2", + "name": "doctrine/persistence", + "version": "3.2.0", "source": { "type": "git", - "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", - "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db" + "url": "https://github.com/doctrine/persistence.git", + "reference": "63fee8c33bef740db6730eb2a750cd3da6495603" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", - "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603", + "reference": "63fee8c33bef740db6730eb2a750cd3da6495603", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "php": ">=5.3", - "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" + "doctrine/event-manager": "^1 || ^2", + "php": "^7.2 || ^8.0", + "psr/cache": "^1.0 || ^2.0 || ^3.0" }, - "require-dev": { - "composer/composer": "*", - "php-parallel-lint/php-parallel-lint": "^1.3.1", - "phpcompatibility/php-compatibility": "^9.0" + "conflict": { + "doctrine/common": "<2.10" }, - "type": "composer-plugin", - "extra": { - "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" + "require-dev": { + "composer/package-versions-deprecated": "^1.11", + "doctrine/coding-standard": "^11", + "doctrine/common": "^3.0", + "phpstan/phpstan": "1.9.4", + "phpstan/phpstan-phpunit": "^1", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.5", + "symfony/cache": "^4.4 || ^5.4 || ^6.0", + "vimeo/psalm": "4.30.0 || 5.3.0" }, + "type": "library", "autoload": { "psr-4": { - "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + "Doctrine\\Persistence\\": "src/Persistence" } }, "notification-url": "https://packagist.org/downloads/", @@ -16536,90 +16610,8 @@ ], "authors": [ { - "name": "Franck Nijhof", - "email": "franck.nijhof@dealerdirect.com", - "homepage": "http://www.frenck.nl", - "role": "Developer / IT Manager" - }, - { - "name": "Contributors", - "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors" - } - ], - "description": "PHP_CodeSniffer Standards Composer Installer Plugin", - "homepage": "http://www.dealerdirect.com", - "keywords": [ - "PHPCodeSniffer", - "PHP_CodeSniffer", - "code quality", - "codesniffer", - "composer", - "installer", - "phpcbf", - "phpcs", - "plugin", - "qa", - "quality", - "standard", - "standards", - "style guide", - "stylecheck", - "tests" - ], - "support": { - "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", - "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" - }, - "time": "2022-02-04T12:51:07+00:00" - }, - { - "name": "doctrine/cache", - "version": "1.13.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/cache.git", - "reference": "56cd022adb5514472cb144c087393c1821911d09" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09", - "reference": "56cd022adb5514472cb144c087393c1821911d09", - "shasum": "" - }, - "require": { - "php": "~7.1 || ^8.0" - }, - "conflict": { - "doctrine/common": ">2.2,<2.4" - }, - "require-dev": { - "alcaeus/mongo-php-adapter": "^1.1", - "cache/integration-tests": "dev-master", - "doctrine/coding-standard": "^9", - "mongodb/mongodb": "^1.1", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "predis/predis": "~1.0", - "psr/cache": "^1.0 || ^2.0 || ^3.0", - "symfony/cache": "^4.4 || ^5.4 || ^6", - "symfony/var-exporter": "^4.4 || ^5.4 || ^6" - }, - "suggest": { - "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" }, { "name": "Roman Borschel", @@ -16636,24 +16628,24 @@ { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" } ], - "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.", - "homepage": "https://www.doctrine-project.org/projects/cache.html", + "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.", + "homepage": "https://www.doctrine-project.org/projects/persistence.html", "keywords": [ - "abstraction", - "apcu", - "cache", - "caching", - "couchdb", - "memcached", - "php", - "redis", - "xcache" + "mapper", + "object", + "odm", + "orm", + "persistence" ], "support": { - "issues": "https://github.com/doctrine/cache/issues", - "source": "https://github.com/doctrine/cache/tree/1.13.0" + "issues": "https://github.com/doctrine/persistence/issues", + "source": "https://github.com/doctrine/persistence/tree/3.2.0" }, "funding": [ { @@ -16665,54 +16657,30 @@ "type": "patreon" }, { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache", + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence", "type": "tidelift" } ], - "time": "2022-05-20T20:06:54+00:00" + "time": "2023-05-17T18:32:04+00:00" }, { - "name": "doctrine/common", - "version": "2.13.3", + "name": "dof-dss/maestro-core", + "version": "1.0.3", "source": { "type": "git", - "url": "https://github.com/doctrine/common.git", - "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f" + "url": "https://github.com/dof-dss/maestro-core.git", + "reference": "3701b144d3660ebb6835ea671ed2e360049f6438" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f", - "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f", + "url": "https://api.github.com/repos/dof-dss/maestro-core/zipball/3701b144d3660ebb6835ea671ed2e360049f6438", + "reference": "3701b144d3660ebb6835ea671ed2e360049f6438", "shasum": "" }, - "require": { - "doctrine/annotations": "^1.0", - "doctrine/cache": "^1.0", - "doctrine/collections": "^1.0", - "doctrine/event-manager": "^1.0", - "doctrine/inflector": "^1.0", - "doctrine/lexer": "^1.0", - "doctrine/persistence": "^1.3.3", - "doctrine/reflection": "^1.0", - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "doctrine/coding-standard": "^1.0", - "phpstan/phpstan": "^0.11", - "phpstan/phpstan-phpunit": "^0.11", - "phpunit/phpunit": "^7.0", - "squizlabs/php_codesniffer": "^3.0", - "symfony/phpunit-bridge": "^4.0.5" - }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.11.x-dev" - } - }, "autoload": { "psr-4": { - "Doctrine\\Common\\": "lib/Doctrine/Common" + "Maestro\\Core\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -16721,88 +16689,38 @@ ], "authors": [ { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - }, - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" + "name": "OMAHM", + "email": "hello@onemanandhismouse.com" } ], - "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.", - "homepage": "https://www.doctrine-project.org/projects/common.html", - "keywords": [ - "common", - "doctrine", - "php" - ], + "description": "Maestro core composition project", "support": { - "issues": "https://github.com/doctrine/common/issues", - "source": "https://github.com/doctrine/common/tree/2.13.x" + "issues": "https://github.com/dof-dss/maestro-core/issues", + "source": "https://github.com/dof-dss/maestro-core/tree/1.0.3" }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon", - "type": "tidelift" - } - ], - "time": "2020-06-05T16:46:05+00:00" + "time": "2023-05-16T08:17:37+00:00" }, { - "name": "doctrine/event-manager", - "version": "1.2.0", + "name": "dof-dss/maestro-hosting", + "version": "1.0.9", "source": { "type": "git", - "url": "https://github.com/doctrine/event-manager.git", - "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520" + "url": "https://github.com/dof-dss/maestro-hosting.git", + "reference": "b1818f4b486535bf0df3a2dde53f87bb44ade80e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520", - "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520", + "url": "https://api.github.com/repos/dof-dss/maestro-hosting/zipball/b1818f4b486535bf0df3a2dde53f87bb44ade80e", + "reference": "b1818f4b486535bf0df3a2dde53f87bb44ade80e", "shasum": "" }, "require": { - "doctrine/deprecations": "^0.5.3 || ^1", - "php": "^7.1 || ^8.0" - }, - "conflict": { - "doctrine/common": "<2.9" - }, - "require-dev": { - "doctrine/coding-standard": "^9 || ^10", - "phpstan/phpstan": "~1.4.10 || ^1.8.8", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.24" + "dof-dss/maestro-core": "^1.0" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Common\\": "src" + "Maestro\\Hosting\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -16811,713 +16729,327 @@ ], "authors": [ { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - }, - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" + "name": "OMAHM", + "email": "hello@onemanandhismouse.com" } ], - "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", - "homepage": "https://www.doctrine-project.org/projects/event-manager.html", - "keywords": [ - "event", - "event dispatcher", - "event manager", - "event system", - "events" - ], + "description": "Maestro hosting resources", "support": { - "issues": "https://github.com/doctrine/event-manager/issues", - "source": "https://github.com/doctrine/event-manager/tree/1.2.0" + "issues": "https://github.com/dof-dss/maestro-hosting/issues", + "source": "https://github.com/dof-dss/maestro-hosting/tree/1.0.9" }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager", - "type": "tidelift" - } - ], - "time": "2022-10-12T20:51:15+00:00" + "time": "2023-10-04T10:22:48+00:00" }, { - "name": "doctrine/inflector", - "version": "1.4.4", + "name": "dof-dss/maestro-shell", + "version": "10.1.0", "source": { "type": "git", - "url": "https://github.com/doctrine/inflector.git", - "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9" + "url": "https://github.com/dof-dss/maestro-shell.git", + "reference": "db2510da16aee189ed3abe9e58d3741c25e95ac1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9", - "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9", + "url": "https://api.github.com/repos/dof-dss/maestro-shell/zipball/db2510da16aee189ed3abe9e58d3741c25e95ac1", + "reference": "db2510da16aee189ed3abe9e58d3741c25e95ac1", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "composer/ca-bundle": "^1.3", + "dof-dss/maestro-core": "^1.0", + "ext-json": "*", + "romaricdrigon/metayaml": "dev-master", + "stecman/symfony-console-completion": "^0.12", + "symfony/cache": "^6.3", + "symfony/config": "^6.0", + "symfony/console": "^6.0", + "symfony/dependency-injection": "^6.0", + "symfony/event-dispatcher": "^6.0", + "symfony/filesystem": "^6.0", + "symfony/finder": "^6.0", + "symfony/http-client": "^5.4", + "symfony/process": "^6.0", + "symfony/yaml": "^6.0", + "webflo/drupal-finder": "^1.2" }, - "require-dev": { - "doctrine/coding-standard": "^8.0", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", - "phpstan/phpstan-strict-rules": "^0.12", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + "suggest": { + "drush/drush": "For Drupal projects" }, + "bin": [ + "bin/maestro" + ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, "autoload": { + "files": [ + "constants.php" + ], "psr-4": { - "Doctrine\\Inflector\\": "lib/Doctrine/Inflector", - "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" + "Maestro\\Shell\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", - "homepage": "https://www.doctrine-project.org/projects/inflector.html", - "keywords": [ - "inflection", - "inflector", - "lowercase", - "manipulation", - "php", - "plural", - "singular", - "strings", - "uppercase", - "words" - ], + "description": "Shell for working with Maestro projects.", "support": { - "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/1.4.4" + "issues": "https://github.com/dof-dss/maestro-shell/issues", + "source": "https://github.com/dof-dss/maestro-shell/tree/10.1.0" }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", - "type": "tidelift" - } - ], - "time": "2021-04-16T17:34:40+00:00" + "time": "2023-06-26T10:17:14+00:00" }, { - "name": "doctrine/instantiator", - "version": "1.5.0", + "name": "drupal/coder", + "version": "8.3.22", "source": { "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" + "url": "https://github.com/pfrenssen/coder.git", + "reference": "ba6e62303d567863275fb086941f50a06dc7d08f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", - "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", + "url": "https://api.github.com/repos/pfrenssen/coder/zipball/ba6e62303d567863275fb086941f50a06dc7d08f", + "reference": "ba6e62303d567863275fb086941f50a06dc7d08f", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1 || ^1.0.0", + "ext-mbstring": "*", + "php": ">=7.2", + "sirbrillig/phpcs-variable-analysis": "^2.11.7", + "slevomat/coding-standard": "^8.11", + "squizlabs/php_codesniffer": "^3.7.1", + "symfony/yaml": ">=3.4.0" }, "require-dev": { - "doctrine/coding-standard": "^9 || ^11", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^0.16 || ^1", - "phpstan/phpstan": "^1.4", - "phpstan/phpstan-phpunit": "^1", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.30 || ^5.4" + "phpstan/phpstan": "^1.7.12", + "phpunit/phpunit": "^8.0" }, - "type": "library", + "type": "phpcodesniffer-standard", "autoload": { "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + "Drupal\\": "coder_sniffer/Drupal/", + "DrupalPractice\\": "coder_sniffer/DrupalPractice/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "https://ocramius.github.io/" - } + "GPL-2.0-or-later" ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "description": "Coder is a library to review Drupal code.", + "homepage": "https://www.drupal.org/project/coder", "keywords": [ - "constructor", - "instantiate" + "code review", + "phpcs", + "standards" ], "support": { - "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.5.0" + "issues": "https://www.drupal.org/project/issues/coder", + "source": "https://www.drupal.org/project/coder" }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", - "type": "tidelift" - } - ], - "time": "2022-12-30T00:15:36+00:00" + "time": "2023-10-15T09:55:50+00:00" }, { - "name": "doctrine/persistence", - "version": "1.3.8", + "name": "drupal/core-dev", + "version": "10.1.5", "source": { "type": "git", - "url": "https://github.com/doctrine/persistence.git", - "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288" + "url": "https://github.com/drupal/core-dev.git", + "reference": "e11a86bc8c037e67c7c5c974fbabe051bbcdcc81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288", - "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288", + "url": "https://api.github.com/repos/drupal/core-dev/zipball/e11a86bc8c037e67c7c5c974fbabe051bbcdcc81", + "reference": "e11a86bc8c037e67c7c5c974fbabe051bbcdcc81", "shasum": "" }, "require": { - "doctrine/annotations": "^1.0", - "doctrine/cache": "^1.0", - "doctrine/collections": "^1.0", - "doctrine/event-manager": "^1.0", - "doctrine/reflection": "^1.2", - "php": "^7.1 || ^8.0" + "behat/mink": "^1.10", + "behat/mink-browserkit-driver": "^2.1", + "behat/mink-selenium2-driver": "^1.4", + "colinodell/psr-testlogger": "^1.2", + "composer/composer": "^2.4", + "drupal/coder": "^8.3.10", + "instaclick/php-webdriver": "^1.4.1", + "justinrainbow/json-schema": "^5.2", + "mglaman/phpstan-drupal": "^1.1.34", + "mikey179/vfsstream": "^1.6.11", + "phpspec/prophecy-phpunit": "^2", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.10.1", + "phpstan/phpstan-phpunit": "^1.3.11", + "phpunit/phpunit": "^9.5", + "symfony/browser-kit": "^6.3", + "symfony/css-selector": "^6.3", + "symfony/dom-crawler": "^6.3", + "symfony/error-handler": "^6.3", + "symfony/filesystem": "^6.3", + "symfony/finder": "^6.3", + "symfony/lock": "^6.3", + "symfony/phpunit-bridge": "^6.3", + "symfony/var-dumper": "^6.3" }, "conflict": { - "doctrine/common": "<2.10@dev" - }, - "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan": "^0.11", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", - "vimeo/psalm": "^3.11" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.3.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\": "lib/Doctrine/Common", - "Doctrine\\Persistence\\": "lib/Doctrine/Persistence" - } + "webflo/drupal-core-require-dev": "*" }, + "type": "metapackage", "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - }, - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - } - ], - "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.", - "homepage": "https://doctrine-project.org/projects/persistence.html", - "keywords": [ - "mapper", - "object", - "odm", - "orm", - "persistence" + "GPL-2.0-or-later" ], + "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", "support": { - "issues": "https://github.com/doctrine/persistence/issues", - "source": "https://github.com/doctrine/persistence/tree/1.3.x" + "source": "https://github.com/drupal/core-dev/tree/10.1.5" }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence", - "type": "tidelift" - } - ], - "time": "2020-06-20T12:56:16+00:00" + "time": "2023-05-25T11:39:24+00:00" }, { - "name": "dof-dss/maestro-core", - "version": "1.0.3", + "name": "drupal/devel", + "version": "5.1.2", "source": { "type": "git", - "url": "https://github.com/dof-dss/maestro-core.git", - "reference": "3701b144d3660ebb6835ea671ed2e360049f6438" + "url": "https://git.drupalcode.org/project/devel.git", + "reference": "5.1.2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dof-dss/maestro-core/zipball/3701b144d3660ebb6835ea671ed2e360049f6438", - "reference": "3701b144d3660ebb6835ea671ed2e360049f6438", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip", + "reference": "5.1.2", + "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f" }, - "type": "library", - "autoload": { - "psr-4": { - "Maestro\\Core\\": "src" + "require": { + "doctrine/common": "^2.7 || ^3.4", + "drupal/core": "^9 || ^10", + "php": ">=7.4", + "symfony/var-dumper": "^4 || ^5 || ^6" + }, + "conflict": { + "kint-php/kint": "<3" + }, + "require-dev": { + "drush/drush": "^11" + }, + "suggest": { + "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "5.1.2", + "datestamp": "1686161028", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10 || ^11" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "OMAHM", - "email": "hello@onemanandhismouse.com" + "name": "drupalspoons", + "homepage": "https://www.drupal.org/user/3647684" + }, + { + "name": "moshe weitzman", + "homepage": "https://www.drupal.org/user/23" } ], - "description": "Maestro core composition project", + "description": "Various blocks, pages, and functions for developers.", + "homepage": "https://www.drupal.org/project/devel", "support": { - "issues": "https://github.com/dof-dss/maestro-core/issues", - "source": "https://github.com/dof-dss/maestro-core/tree/1.0.3" - }, - "time": "2023-05-16T08:17:37+00:00" + "source": "https://gitlab.com/drupalspoons/devel", + "issues": "https://gitlab.com/drupalspoons/devel/-/issues", + "slack": "https://drupal.slack.com/archives/C012WAW1MH6" + } }, { - "name": "dof-dss/maestro-hosting", - "version": "1.0.9", + "name": "drupal/easy_install_d10", + "version": "dev-10.x", "source": { "type": "git", - "url": "https://github.com/dof-dss/maestro-hosting.git", - "reference": "b1818f4b486535bf0df3a2dde53f87bb44ade80e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dof-dss/maestro-hosting/zipball/b1818f4b486535bf0df3a2dde53f87bb44ade80e", - "reference": "b1818f4b486535bf0df3a2dde53f87bb44ade80e", - "shasum": "" + "url": "https://git.drupalcode.org/project/easy_install_d10.git", + "reference": "164ded5c28913b709086dbb1c20927e5e2112690" }, "require": { - "dof-dss/maestro-core": "^1.0" + "drupal/core": "^9.3 || ^10" }, - "type": "library", - "autoload": { - "psr-4": { - "Maestro\\Hosting\\": "src" + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-10.x": "10.x-dev" + }, + "drupal": { + "version": "8.x-10.x-dev", + "datestamp": "1688720249", + "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-or-later" ], "authors": [ { - "name": "OMAHM", - "email": "hello@onemanandhismouse.com" + "name": "DuttonMa", + "homepage": "https://www.drupal.org/user/2250396" } ], - "description": "Maestro hosting resources", + "homepage": "https://www.drupal.org/project/easy_install_d10", "support": { - "issues": "https://github.com/dof-dss/maestro-hosting/issues", - "source": "https://github.com/dof-dss/maestro-hosting/tree/1.0.9" - }, - "time": "2023-10-04T10:22:48+00:00" + "source": "https://git.drupalcode.org/project/easy_install_d10" + } }, { - "name": "dof-dss/maestro-shell", - "version": "1.0.5", + "name": "drupal/migrate_tools", + "version": "6.0.2", "source": { "type": "git", - "url": "https://github.com/dof-dss/maestro-shell.git", - "reference": "03ac225f708b9869d21ff349c01703f79c111126" + "url": "https://git.drupalcode.org/project/migrate_tools.git", + "reference": "6.0.2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dof-dss/maestro-shell/zipball/03ac225f708b9869d21ff349c01703f79c111126", - "reference": "03ac225f708b9869d21ff349c01703f79c111126", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/migrate_tools-6.0.2.zip", + "reference": "6.0.2", + "shasum": "9d6346306e52a6741f3eb52e32caaa95a2752ad0" }, "require": { - "composer/ca-bundle": "^1.3", - "dof-dss/maestro-core": "^1.0", - "ext-json": "*", - "romaricdrigon/metayaml": "dev-master", - "stecman/symfony-console-completion": "^0.11", - "symfony/cache": "^5.4", - "symfony/config": "^4.4", - "symfony/console": "^4.4", - "symfony/dependency-injection": "^4.4", - "symfony/event-dispatcher": "^4.4", - "symfony/filesystem": "^4.4", - "symfony/finder": "^4.4", - "symfony/http-client": "^5.4", - "symfony/process": "^4.4", - "symfony/yaml": "^4.2", - "webflo/drupal-finder": "^1.2" - }, - "suggest": { - "drush/drush": "For Drupal projects" - }, - "bin": [ - "bin/maestro" - ], - "type": "library", - "autoload": { - "files": [ - "constants.php" - ], - "psr-4": { - "Maestro\\Shell\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Shell for working with Maestro projects.", - "support": { - "issues": "https://github.com/dof-dss/maestro-shell/issues", - "source": "https://github.com/dof-dss/maestro-shell/tree/1.0.5" - }, - "time": "2023-10-04T13:07:42+00:00" - }, - { - "name": "drupal/coder", - "version": "8.3.18", - "source": { - "type": "git", - "url": "https://github.com/pfrenssen/coder.git", - "reference": "d5911f812b69ca3bda5524899bdd06b3b4e687ff" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/pfrenssen/coder/zipball/d5911f812b69ca3bda5524899bdd06b3b4e687ff", - "reference": "d5911f812b69ca3bda5524899bdd06b3b4e687ff", - "shasum": "" - }, - "require": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1 || ^1.0.0", - "ext-mbstring": "*", - "php": ">=7.1", - "sirbrillig/phpcs-variable-analysis": "^2.11.7", - "slevomat/coding-standard": "^7.0 || ^8.0", - "squizlabs/php_codesniffer": "^3.7.1", - "symfony/yaml": ">=3.4.0" - }, - "require-dev": { - "phpstan/phpstan": "^1.7.12", - "phpunit/phpunit": "^7.0 || ^8.0" - }, - "type": "phpcodesniffer-standard", - "autoload": { - "psr-4": { - "Drupal\\": "coder_sniffer/Drupal/", - "DrupalPractice\\": "coder_sniffer/DrupalPractice/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "Coder is a library to review Drupal code.", - "homepage": "https://www.drupal.org/project/coder", - "keywords": [ - "code review", - "phpcs", - "standards" - ], - "support": { - "issues": "https://www.drupal.org/project/issues/coder", - "source": "https://www.drupal.org/project/coder" - }, - "time": "2023-04-18T12:07:59+00:00" - }, - { - "name": "drupal/core-dev", - "version": "9.5.11", - "source": { - "type": "git", - "url": "https://github.com/drupal/core-dev.git", - "reference": "60196e12909624e168c482660c0f5795df67a6d7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/drupal/core-dev/zipball/60196e12909624e168c482660c0f5795df67a6d7", - "reference": "60196e12909624e168c482660c0f5795df67a6d7", - "shasum": "" - }, - "require": { - "behat/mink": "^1.8", - "behat/mink-selenium2-driver": "^1.4", - "composer/composer": "^2.2.12", - "drupal/coder": "^8.3.10", - "easyrdf/easyrdf": "^0.9 || ^1.0", - "friends-of-behat/mink-browserkit-driver": "^1.4", - "instaclick/php-webdriver": "^1.4.1", - "justinrainbow/json-schema": "^5.2", - "mikey179/vfsstream": "^1.6.11", - "phpspec/prophecy": "^1.12", - "phpunit/phpunit": "^8.5.14 || ^9", - "symfony/browser-kit": "^4.4", - "symfony/css-selector": "^4.4", - "symfony/dom-crawler": "^4.4 !=4.4.5", - "symfony/error-handler": "^4.4", - "symfony/filesystem": "^4.4", - "symfony/finder": "^4.4", - "symfony/lock": "^4.4", - "symfony/phpunit-bridge": "^5.4", - "symfony/var-dumper": "^5.4" - }, - "conflict": { - "webflo/drupal-core-require-dev": "*" - }, - "type": "metapackage", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", - "support": { - "source": "https://github.com/drupal/core-dev/tree/9.5.11" - }, - "time": "2022-07-27T00:23:55+00:00" - }, - { - "name": "drupal/devel", - "version": "4.1.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/devel.git", - "reference": "4.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip", - "reference": "4.1.1", - "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198" - }, - "require": { - "doctrine/common": "^2.7", - "drupal/core": "^8.8 || ^9", - "symfony/var-dumper": "^4 || ^5" - }, - "conflict": { - "kint-php/kint": "<3" + "drupal/core": ">=9.1", + "php": ">=7.4" }, "require-dev": { - "drush/drush": "^10" + "drupal/migrate_plus": ">=5", + "drupal/migrate_source_csv": ">=3", + "drush/drush": ">=11" }, "suggest": { - "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing." - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.1.1", - "datestamp": "1631968537", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "drupalspoons", - "homepage": "https://www.drupal.org/user/3647684" - }, - { - "name": "moshe weitzman", - "homepage": "https://www.drupal.org/user/23" - } - ], - "description": "Various blocks, pages, and functions for developers.", - "homepage": "https://www.drupal.org/project/devel", - "support": { - "source": "https://gitlab.com/drupalspoons/devel", - "issues": "https://gitlab.com/drupalspoons/devel/-/issues", - "slack": "https://drupal.slack.com/archives/C012WAW1MH6" - } - }, - { - "name": "drupal/easy_install", - "version": "10.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/easy_install.git", - "reference": "8.x-10.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/easy_install-8.x-10.4.zip", - "reference": "8.x-10.4", - "shasum": "399bbb506ad23bb91b8f41922e6d9c1cd39cf6df" - }, - "require": { - "drupal/core": "^8 || ^9" + "drupal/migrate_plus": ">=5", + "drush/drush": ">=11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-10.4", - "datestamp": "1590560253", + "version": "6.0.2", + "datestamp": "1694604959", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "btobac", - "homepage": "https://www.drupal.org/user/3630142" - }, - { - "name": "karthikeyan-manivasagam", - "homepage": "https://www.drupal.org/user/1494424" - } - ], - "description": "Provides UI to delete configuration while uninstalling or reinstalling the modules.", - "homepage": "https://www.drupal.org/project/easy_install", - "support": { - "source": "https://git.drupalcode.org/project/easy_install" - } - }, - { - "name": "drupal/migrate_tools", - "version": "dev-5.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_tools.git", - "reference": "9d9c02f1cb8fcd7afa83e8eb2eaf7def75673a4e" - }, - "require": { - "drupal/core": "^9.1", - "drupal/migrate_plus": "^5", - "php": ">=7.1" - }, - "require-dev": { - "drupal/migrate_source_csv": "^3.0", - "drush/drush": "^10" - }, - "suggest": { - "drush/drush": "^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-5.x": "5.x-dev" - }, - "drupal": { - "version": "8.x-5.1+6-dev", - "datestamp": "1672419787", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } }, "drush": { "services": { - "drush.services.yml": "^9 || ^10" + "drush.services.yml": ">=9" } } }, @@ -17551,26 +17083,26 @@ }, { "name": "drupal/permissions_filter", - "version": "1.2.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/permissions_filter.git", - "reference": "8.x-1.2" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/permissions_filter-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "1ada16d1e641cc9e78c3ffd109d75cd6afe39ff3" + "url": "https://ftp.drupal.org/files/projects/permissions_filter-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "e82c585fe7f6cbfcc768eef6dab35daa084fcf1f" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1607272352", + "version": "8.x-1.5", + "datestamp": "1696428612", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17599,26 +17131,31 @@ }, { "name": "drupal/stage_file_proxy", - "version": "1.2.0", + "version": "2.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/stage_file_proxy.git", - "reference": "8.x-1.2" + "reference": "2.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stage_file_proxy-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "a0bea520c139a4b0b67738b0c54e7ee21af081da" + "url": "https://ftp.drupal.org/files/projects/stage_file_proxy-2.1.1.zip", + "reference": "2.1.1", + "shasum": "0a4d6cb83c4f5da20542e4c9f5fed32dbf490154" }, "require": { - "drupal/core": ">=8.7.7" + "drupal/core": "^9 || ^10", + "php": ">=8" + }, + "require-dev": { + "drupal/coder": "^8.3", + "drush/drush": "^11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1637007759", + "version": "2.1.1", + "datestamp": "1691507193", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17626,11 +17163,22 @@ }, "drush": { "services": { - "stage_file_proxy.drush.services.yml": "^9 || ^10" + "stage_file_proxy.drush.services.yml": "^11" } } }, "notification-url": "https://packages.drupal.org/8/downloads", + "scripts": { + "phpcs": [ + "vendor/bin/phpcs -p ." + ], + "phpcbf": [ + "vendor/bin/phpcbf -p ." + ], + "test": [ + "@phpcs" + ] + }, "license": [ "GPL-2.0-or-later" ], @@ -17660,392 +17208,775 @@ "homepage": "https://www.drupal.org/user/75278" }, { - "name": "netaustin", - "homepage": "https://www.drupal.org/user/199298" + "name": "netaustin", + "homepage": "https://www.drupal.org/user/199298" + }, + { + "name": "robwilmshurst", + "homepage": "https://www.drupal.org/user/144488" + }, + { + "name": "smustgrave", + "homepage": "https://www.drupal.org/user/3252890" + } + ], + "description": "Provides stage_file_proxy module.", + "homepage": "https://www.drupal.org/project/stage_file_proxy", + "support": { + "source": "https://git.drupalcode.org/project/stage_file_proxy" + } + }, + { + "name": "instaclick/php-webdriver", + "version": "1.4.16", + "source": { + "type": "git", + "url": "https://github.com/instaclick/php-webdriver.git", + "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", + "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.5", + "satooshi/php-coveralls": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, + "autoload": { + "psr-0": { + "WebDriver": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Justin Bishop", + "email": "jubishop@gmail.com", + "role": "Developer" + }, + { + "name": "Anthon Pang", + "email": "apang@softwaredevelopment.ca", + "role": "Fork Maintainer" + } + ], + "description": "PHP WebDriver for Selenium 2", + "homepage": "http://instaclick.com/", + "keywords": [ + "browser", + "selenium", + "webdriver", + "webtest" + ], + "support": { + "issues": "https://github.com/instaclick/php-webdriver/issues", + "source": "https://github.com/instaclick/php-webdriver/tree/1.4.16" + }, + "time": "2022-10-28T13:30:35+00:00" + }, + { + "name": "jean85/pretty-package-versions", + "version": "2.0.5", + "source": { + "type": "git", + "url": "https://github.com/Jean85/pretty-package-versions.git", + "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.0.0", + "php": "^7.1|^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.17", + "jean85/composer-provided-replaced-stub-package": "^1.0", + "phpstan/phpstan": "^0.12.66", + "phpunit/phpunit": "^7.5|^8.5|^9.4", + "vimeo/psalm": "^4.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Jean85\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alessandro Lai", + "email": "alessandro.lai85@gmail.com" + } + ], + "description": "A library to get pretty versions strings of installed dependencies", + "keywords": [ + "composer", + "package", + "release", + "versions" + ], + "support": { + "issues": "https://github.com/Jean85/pretty-package-versions/issues", + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5" + }, + "time": "2021-10-08T21:21:46+00:00" + }, + { + "name": "justinrainbow/json-schema", + "version": "v5.2.13", + "source": { + "type": "git", + "url": "https://github.com/justinrainbow/json-schema.git", + "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793", + "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1", + "json-schema/json-schema-test-suite": "1.2.0", + "phpunit/phpunit": "^4.8.35" + }, + "bin": [ + "bin/validate-json" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "JsonSchema\\": "src/JsonSchema/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bruno Prieto Reis", + "email": "bruno.p.reis@gmail.com" + }, + { + "name": "Justin Rainbow", + "email": "justin.rainbow@gmail.com" + }, + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + }, + { + "name": "Robert Schönthal", + "email": "seroscho@googlemail.com" + } + ], + "description": "A library to validate a json schema.", + "homepage": "https://github.com/justinrainbow/json-schema", + "keywords": [ + "json", + "schema" + ], + "support": { + "issues": "https://github.com/justinrainbow/json-schema/issues", + "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13" + }, + "time": "2023-09-26T02:20:38+00:00" + }, + { + "name": "kint-php/kint", + "version": "5.0.7", + "source": { + "type": "git", + "url": "https://github.com/kint-php/kint.git", + "reference": "a700653a77250b122920799b10c94e904c9b78c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/kint-php/kint/zipball/a700653a77250b122920799b10c94e904c9b78c7", + "reference": "a700653a77250b122920799b10c94e904c9b78c7", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3", + "phpspec/prophecy-phpunit": "^2", + "phpunit/phpunit": "^9", + "seld/phar-utils": "^1", + "symfony/finder": "^4.0 || ^5.0 || ^6.0", + "vimeo/psalm": "^5@dev" + }, + "suggest": { + "kint-php/kint-helpers": "Provides extra helper functions", + "kint-php/kint-twig": "Provides d() and s() functions in twig templates" + }, + "type": "library", + "autoload": { + "files": [ + "init.php" + ], + "psr-4": { + "Kint\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jonathan Vollebregt", + "homepage": "https://github.com/jnvsor" + }, + { + "name": "Contributors", + "homepage": "https://github.com/kint-php/kint/graphs/contributors" + } + ], + "description": "Kint - debugging tool for PHP developers", + "homepage": "https://kint-php.github.io/kint/", + "keywords": [ + "debug", + "kint", + "php" + ], + "support": { + "issues": "https://github.com/kint-php/kint/issues", + "source": "https://github.com/kint-php/kint/tree/5.0.7" + }, + "time": "2023-06-26T19:25:00+00:00" + }, + { + "name": "mglaman/drupal-check", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://github.com/mglaman/drupal-check.git", + "reference": "e78eff7b10f79659c020a45baaa1f3035cb9a06a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mglaman/drupal-check/zipball/e78eff7b10f79659c020a45baaa1f3035cb9a06a", + "reference": "e78eff7b10f79659c020a45baaa1f3035cb9a06a", + "shasum": "" + }, + "require": { + "composer/xdebug-handler": "^1.1 || ^2.0.1 || ^3.0", + "jean85/pretty-package-versions": "^1.5.0 || ^2.0.1", + "mglaman/phpstan-drupal": "^1.0.0", + "nette/neon": "^3.1", + "php": "^7.2.5|^8.0", + "phpstan/phpstan-deprecation-rules": "^1.0.0", + "symfony/console": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", + "symfony/process": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", + "webflo/drupal-finder": "^1.1" + }, + "require-dev": { + "phpstan/phpstan": "^1.0.0", + "phpstan/phpstan-strict-rules": "^1.0.0", + "squizlabs/php_codesniffer": "^3.4" + }, + "bin": [ + "drupal-check" + ], + "type": "project", + "extra": { + "violinist": { + "one_pull_request_per_package": 1 + } + }, + "autoload": { + "psr-4": { + "DrupalCheck\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Matt Glaman", + "email": "nmd.matt@gmail.com" + } + ], + "description": "CLI tool for running checks on a Drupal code base", + "support": { + "issues": "https://github.com/mglaman/drupal-check/issues", + "source": "https://github.com/mglaman/drupal-check/tree/1.4.0" + }, + "funding": [ + { + "url": "https://github.com/mglaman", + "type": "github" + }, + { + "url": "https://opencollective.com/phpstan-drupal", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/mglaman/drupal-check", + "type": "tidelift" + } + ], + "time": "2022-04-29T02:26:28+00:00" + }, + { + "name": "mglaman/phpstan-drupal", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/mglaman/phpstan-drupal.git", + "reference": "d721420086f146640acecebb7a678661a66e97d5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/d721420086f146640acecebb7a678661a66e97d5", + "reference": "d721420086f146640acecebb7a678661a66e97d5", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "phpstan/phpstan": "^1.10.1", + "phpstan/phpstan-deprecation-rules": "^1.1.4", + "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0", + "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", + "webflo/drupal-finder": "^1.2" + }, + "require-dev": { + "behat/mink": "^1.8", + "composer/installers": "^1.9", + "drupal/core-recommended": "^8.8@alpha || ^9.0", + "drush/drush": "^9.6 || ^10.0 || ^11", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9", + "slevomat/coding-standard": "^7.1", + "squizlabs/php_codesniffer": "^3.3", + "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0" + }, + "suggest": { + "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", + "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.", + "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan." + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-main": "1.0-dev" + }, + "installer-paths": { + "tests/fixtures/drupal/core": [ + "type:drupal-core" + ], + "tests/fixtures/drupal/libraries/{$name}": [ + "type:drupal-library" + ], + "tests/fixtures/drupal/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "tests/fixtures/drupal/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "tests/fixtures/drupal/themes/contrib/{$name}": [ + "type:drupal-theme" + ] + }, + "phpstan": { + "includes": [ + "extension.neon", + "rules.neon" + ] + } + }, + "autoload": { + "psr-4": { + "mglaman\\PHPStanDrupal\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Glaman", + "email": "nmd.matt@gmail.com" + } + ], + "description": "Drupal extension and rules for PHPStan", + "support": { + "issues": "https://github.com/mglaman/phpstan-drupal/issues", + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.0" + }, + "funding": [ + { + "url": "https://github.com/mglaman", + "type": "github" }, { - "name": "robwilmshurst", - "homepage": "https://www.drupal.org/user/144488" + "url": "https://opencollective.com/phpstan-drupal", + "type": "open_collective" }, { - "name": "smustgrave", - "homepage": "https://www.drupal.org/user/3252890" + "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal", + "type": "tidelift" } ], - "description": "Provides stage_file_proxy module.", - "homepage": "https://www.drupal.org/project/stage_file_proxy", - "support": { - "source": "https://git.drupalcode.org/project/stage_file_proxy" - } + "time": "2023-08-24T20:32:56+00:00" }, { - "name": "drupal/upgrade_status", - "version": "3.18.0", + "name": "mikey179/vfsstream", + "version": "v1.6.11", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/upgrade_status.git", - "reference": "8.x-3.18" + "url": "https://github.com/bovigo/vfsStream.git", + "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.18.zip", - "reference": "8.x-3.18", - "shasum": "09a9c75603de8e5ce2254ce75603c00981d6f6d4" + "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", + "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", + "shasum": "" }, "require": { - "drupal/core": "^8 || ^9", - "mathieuviossat/arraytotexttable": "~1.0.0", - "mglaman/phpstan-drupal": "^1.0.0", - "nikic/php-parser": "^4.0.0", - "phpstan/phpstan-deprecation-rules": "^1.0.0", - "symfony/process": "^3.4|^4.0|^5.0|^6.0", - "webflo/drupal-finder": "^1.2" + "php": ">=5.3.0" }, - "type": "drupal-module", + "require-dev": { + "phpunit/phpunit": "^4.5|^5.0" + }, + "type": "library", "extra": { - "drupal": { - "version": "8.x-3.18", - "datestamp": "1669215749", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10" - } + "branch-alias": { + "dev-master": "1.6.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-0": { + "org\\bovigo\\vfs\\": "src/main/php" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "BSD-3-Clause" ], "authors": [ { - "name": "colan", - "homepage": "https://www.drupal.org/user/58704" - }, - { - "name": "Gábor Hojtsy", - "homepage": "https://www.drupal.org/user/4166" - }, - { - "name": "herczogzoltan", - "homepage": "https://www.drupal.org/user/3528391" - }, - { - "name": "sun", - "homepage": "https://www.drupal.org/user/54136" - }, - { - "name": "webchick", - "homepage": "https://www.drupal.org/user/24967" - }, - { - "name": "xjm", - "homepage": "https://www.drupal.org/user/65776" + "name": "Frank Kleine", + "homepage": "http://frankkleine.de/", + "role": "Developer" } ], - "description": "Review Drupal major upgrade readiness of the environment and components of the site.", - "homepage": "http://drupal.org/project/upgrade_status", + "description": "Virtual file system to mock the real file system in unit tests.", + "homepage": "http://vfs.bovigo.org/", "support": { - "source": "https://git.drupalcode.org/project/upgrade_status" - } + "issues": "https://github.com/bovigo/vfsStream/issues", + "source": "https://github.com/bovigo/vfsStream/tree/master", + "wiki": "https://github.com/bovigo/vfsStream/wiki" + }, + "time": "2022-02-23T02:02:42+00:00" }, { - "name": "easyrdf/easyrdf", - "version": "1.1.1", + "name": "myclabs/deep-copy", + "version": "1.11.1", "source": { "type": "git", - "url": "https://github.com/easyrdf/easyrdf.git", - "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64" + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64", - "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-mbstring": "*", - "ext-pcre": "*", - "ext-xmlreader": "*", - "lib-libxml": "*", - "php": ">=7.1.0" + "php": "^7.1 || ^8.0" }, - "require-dev": { - "code-lts/doctum": "^5", - "ml/json-ld": "~1.0", - "phpunit/phpunit": "^7", - "semsol/arc2": "^2.4", - "squizlabs/php_codesniffer": "3.*", - "zendframework/zend-http": "~2.3" + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3,<3.2.2" }, - "suggest": { - "ml/json-ld": "~1.0", - "semsol/arc2": "~2.2" + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" }, "type": "library", "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], "psr-4": { - "EasyRdf\\": "lib" + "DeepCopy\\": "src/DeepCopy/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Nicholas Humfrey", - "email": "njh@aelius.com", - "homepage": "http://www.aelius.com/njh/", - "role": "Developer" - }, - { - "name": "Alexey Zakhlestin", - "email": "indeyets@gmail.com", - "homepage": "http://indeyets.ru/", - "role": "Developer" - } + "MIT" ], - "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.", - "homepage": "http://www.easyrdf.org/", + "description": "Create deep copies (clones) of your objects", "keywords": [ - "Linked Data", - "RDF", - "Semantic Web", - "Turtle", - "rdfa", - "sparql" + "clone", + "copy", + "duplicate", + "object", + "object graph" ], "support": { - "forum": "http://groups.google.com/group/easyrdf/", - "issues": "http://github.com/easyrdf/easyrdf/issues", - "source": "https://github.com/easyrdf/easyrdf/tree/1.1.1" + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" }, - "time": "2020-12-02T08:47:31+00:00" + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2023-03-08T13:26:56+00:00" }, { - "name": "friends-of-behat/mink-browserkit-driver", - "version": "v1.6.1", + "name": "nette/neon", + "version": "v3.4.1", "source": { "type": "git", - "url": "https://github.com/FriendsOfBehat/MinkBrowserKitDriver.git", - "reference": "b3c29f18fe20487846e4c2733b066ec5e47f4f76" + "url": "https://github.com/nette/neon.git", + "reference": "457bfbf0560f600b30d9df4233af382a478bb44d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfBehat/MinkBrowserKitDriver/zipball/b3c29f18fe20487846e4c2733b066ec5e47f4f76", - "reference": "b3c29f18fe20487846e4c2733b066ec5e47f4f76", + "url": "https://api.github.com/repos/nette/neon/zipball/457bfbf0560f600b30d9df4233af382a478bb44d", + "reference": "457bfbf0560f600b30d9df4233af382a478bb44d", "shasum": "" }, "require": { - "behat/mink": "^1.7", - "php": "^7.4|^8.0", - "symfony/browser-kit": "^4.4|^5.0|^6.0", - "symfony/dom-crawler": "^4.4|^5.0|^6.0" - }, - "replace": { - "behat/mink-browserkit-driver": "self.version" + "ext-json": "*", + "php": "8.0 - 8.3" }, "require-dev": { - "friends-of-behat/mink-driver-testsuite": "dev-master", - "symfony/http-kernel": "^4.4|^5.0|^6.0" + "nette/tester": "^2.4", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.7" }, - "type": "mink-driver", + "bin": [ + "bin/neon-lint" + ], + "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "3.4-dev" } }, "autoload": { - "psr-4": { - "Behat\\Mink\\Driver\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" } ], - "description": "Symfony2 BrowserKit driver for Mink framework", - "homepage": "http://mink.behat.org/", + "description": "🍸 Nette NEON: encodes and decodes NEON file format.", + "homepage": "https://ne-on.org", "keywords": [ - "Mink", - "Symfony2", - "browser", - "testing" + "export", + "import", + "neon", + "nette", + "yaml" ], "support": { - "source": "https://github.com/FriendsOfBehat/MinkBrowserKitDriver/tree/v1.6.1" + "issues": "https://github.com/nette/neon/issues", + "source": "https://github.com/nette/neon/tree/v3.4.1" }, - "time": "2021-12-13T10:41:57+00:00" + "time": "2023-09-27T08:59:11+00:00" }, { - "name": "instaclick/php-webdriver", - "version": "1.4.16", + "name": "phar-io/manifest", + "version": "2.0.3", "source": { "type": "git", - "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606" + "url": "https://github.com/phar-io/manifest.git", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", - "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", + "reference": "97803eca37d319dfa7826cc2437fc020857acb53", "shasum": "" }, "require": { - "ext-curl": "*", - "php": ">=5.3.2" - }, - "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.5", - "satooshi/php-coveralls": "^1.0 || ^2.0" + "ext-dom": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { - "psr-0": { - "WebDriver": "lib/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "BSD-3-Clause" ], "authors": [ { - "name": "Justin Bishop", - "email": "jubishop@gmail.com", + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", "role": "Developer" }, { - "name": "Anthon Pang", - "email": "apang@softwaredevelopment.ca", - "role": "Fork Maintainer" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" } ], - "description": "PHP WebDriver for Selenium 2", - "homepage": "http://instaclick.com/", - "keywords": [ - "browser", - "selenium", - "webdriver", - "webtest" - ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", "support": { - "issues": "https://github.com/instaclick/php-webdriver/issues", - "source": "https://github.com/instaclick/php-webdriver/tree/1.4.16" + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.3" }, - "time": "2022-10-28T13:30:35+00:00" + "time": "2021-07-20T11:28:43+00:00" }, { - "name": "jean85/pretty-package-versions", - "version": "2.0.5", + "name": "phar-io/version", + "version": "3.2.1", "source": { "type": "git", - "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af" + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af", - "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", "shasum": "" }, "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^2.17", - "jean85/composer-provided-replaced-stub-package": "^1.0", - "phpstan/phpstan": "^0.12.66", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" + "php": "^7.2 || ^8.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, "autoload": { - "psr-4": { - "Jean85\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Alessandro Lai", - "email": "alessandro.lai85@gmail.com" + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" } ], - "description": "A library to get pretty versions strings of installed dependencies", - "keywords": [ - "composer", - "package", - "release", - "versions" - ], + "description": "Library for handling version information and constraints", "support": { - "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5" + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" }, - "time": "2021-10-08T21:21:46+00:00" + "time": "2022-02-21T01:04:05+00:00" }, { - "name": "justinrainbow/json-schema", - "version": "5.2.12", + "name": "phpdocumentor/reflection-common", + "version": "2.2.0", "source": { "type": "git", - "url": "https://github.com/justinrainbow/json-schema.git", - "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60" + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60", - "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", "shasum": "" }, "require": { - "php": ">=5.3.3" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1", - "json-schema/json-schema-test-suite": "1.2.0", - "phpunit/phpunit": "^4.8.35" + "php": "^7.2 || ^8.0" }, - "bin": [ - "bin/validate-json" - ], "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0.x-dev" + "dev-2.x": "2.x-dev" } }, "autoload": { "psr-4": { - "JsonSchema\\": "src/JsonSchema/" + "phpDocumentor\\Reflection\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -18054,75 +17985,59 @@ ], "authors": [ { - "name": "Bruno Prieto Reis", - "email": "bruno.p.reis@gmail.com" - }, - { - "name": "Justin Rainbow", - "email": "justin.rainbow@gmail.com" - }, - { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" - }, - { - "name": "Robert Schönthal", - "email": "seroscho@googlemail.com" + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" } ], - "description": "A library to validate a json schema.", - "homepage": "https://github.com/justinrainbow/json-schema", + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", "keywords": [ - "json", - "schema" + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" ], "support": { - "issues": "https://github.com/justinrainbow/json-schema/issues", - "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12" + "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", + "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" }, - "time": "2022-04-13T08:02:27+00:00" + "time": "2020-06-27T09:03:43+00:00" }, { - "name": "kint-php/kint", - "version": "3.3", + "name": "phpdocumentor/reflection-docblock", + "version": "5.3.0", "source": { "type": "git", - "url": "https://github.com/kint-php/kint.git", - "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b" + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b", - "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", + "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", "shasum": "" }, "require": { - "php": ">=5.3.6" + "ext-filter": "*", + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.2", + "phpdocumentor/type-resolver": "^1.3", + "webmozart/assert": "^1.9.1" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.0", - "phpunit/phpunit": "^4.0", - "seld/phar-utils": "^1.0", - "symfony/finder": "^2.0 || ^3.0 || ^4.0", - "vimeo/psalm": "^3.0" - }, - "suggest": { - "ext-ctype": "Simple data type tests", - "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages", - "ext-mbstring": "Provides string encoding detection", - "kint-php/kint-js": "Provides a simplified dump to console.log()", - "kint-php/kint-twig": "Provides d() and s() functions in twig templates", - "symfony/polyfill-ctype": "Replacement for ext-ctype if missing", - "symfony/polyfill-iconv": "Replacement for ext-iconv if missing", - "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing" + "mockery/mockery": "~1.3.2", + "psalm/phar": "^4.8" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, "autoload": { - "files": [ - "init.php" - ], "psr-4": { - "Kint\\": "src/" + "phpDocumentor\\Reflection\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -18131,197 +18046,175 @@ ], "authors": [ { - "name": "Jonathan Vollebregt", - "homepage": "https://github.com/jnvsor" - }, - { - "name": "Rokas Šleinius", - "homepage": "https://github.com/raveren" + "name": "Mike van Riel", + "email": "me@mikevanriel.com" }, { - "name": "Contributors", - "homepage": "https://github.com/kint-php/kint/graphs/contributors" + "name": "Jaap van Otterdijk", + "email": "account@ijaap.nl" } ], - "description": "Kint - debugging tool for PHP developers", - "homepage": "https://kint-php.github.io/kint/", - "keywords": [ - "debug", - "kint", - "php" - ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "support": { - "issues": "https://github.com/kint-php/kint/issues", - "source": "https://github.com/kint-php/kint/tree/master" + "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" }, - "time": "2019-10-17T18:05:24+00:00" + "time": "2021-10-19T17:43:47+00:00" }, { - "name": "laminas/laminas-servicemanager", - "version": "3.10.0", + "name": "phpdocumentor/type-resolver", + "version": "1.7.3", "source": { "type": "git", - "url": "https://github.com/laminas/laminas-servicemanager.git", - "reference": "e52b985909e0940bf22d34f322eb3f48bbef6bd1" + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/e52b985909e0940bf22d34f322eb3f48bbef6bd1", - "reference": "e52b985909e0940bf22d34f322eb3f48bbef6bd1", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419", + "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419", "shasum": "" }, "require": { - "container-interop/container-interop": "^1.2", - "laminas/laminas-stdlib": "^3.2.1", - "php": "~7.4.0 || ~8.0.0 || ~8.1.0", - "psr/container": "^1.0" - }, - "conflict": { - "laminas/laminas-code": "<3.3.1", - "zendframework/zend-code": "<3.3.1", - "zendframework/zend-servicemanager": "*" - }, - "provide": { - "container-interop/container-interop-implementation": "^1.2", - "psr/container-implementation": "^1.0" + "doctrine/deprecations": "^1.0", + "php": "^7.4 || ^8.0", + "phpdocumentor/reflection-common": "^2.0", + "phpstan/phpdoc-parser": "^1.13" }, "require-dev": { - "composer/package-versions-deprecated": "^1.0", - "laminas/laminas-coding-standard": "~2.2.1", - "laminas/laminas-container-config-test": "^0.3", - "laminas/laminas-dependency-plugin": "^2.1.2", - "mikey179/vfsstream": "^1.6.10@alpha", - "ocramius/proxy-manager": "^2.11", - "phpbench/phpbench": "^1.1", - "phpspec/prophecy-phpunit": "^2.0", - "phpunit/phpunit": "^9.5.5", - "psalm/plugin-phpunit": "^0.16.1", - "vimeo/psalm": "^4.8" - }, - "suggest": { - "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services" + "ext-tokenizer": "*", + "phpbench/phpbench": "^1.2", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^9.5", + "rector/rector": "^0.13.9", + "vimeo/psalm": "^4.25" }, - "bin": [ - "bin/generate-deps-for-config-factory", - "bin/generate-factory-for-class" - ], "type": "library", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + } + }, "autoload": { "psr-4": { - "Laminas\\ServiceManager\\": "src/" + "phpDocumentor\\Reflection\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" - ], - "description": "Factory-Driven Dependency Injection Container", - "homepage": "https://laminas.dev", - "keywords": [ - "PSR-11", - "dependency-injection", - "di", - "dic", - "laminas", - "service-manager", - "servicemanager" + "MIT" ], - "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-servicemanager/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-servicemanager/issues", - "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom", - "source": "https://github.com/laminas/laminas-servicemanager" - }, - "funding": [ + "authors": [ { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" + "name": "Mike van Riel", + "email": "me@mikevanriel.com" } ], - "time": "2021-09-18T20:19:36+00:00" + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "support": { + "issues": "https://github.com/phpDocumentor/TypeResolver/issues", + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3" + }, + "time": "2023-08-12T11:01:26+00:00" }, { - "name": "laminas/laminas-text", - "version": "2.9.0", + "name": "phpspec/prophecy", + "version": "v1.17.0", "source": { "type": "git", - "url": "https://github.com/laminas/laminas-text.git", - "reference": "8879e75d03e09b0d6787e6680cfa255afd4645a7" + "url": "https://github.com/phpspec/prophecy.git", + "reference": "15873c65b207b07765dbc3c95d20fdf4a320cbe2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-text/zipball/8879e75d03e09b0d6787e6680cfa255afd4645a7", - "reference": "8879e75d03e09b0d6787e6680cfa255afd4645a7", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/15873c65b207b07765dbc3c95d20fdf4a320cbe2", + "reference": "15873c65b207b07765dbc3c95d20fdf4a320cbe2", "shasum": "" }, - "require": { - "laminas/laminas-servicemanager": "^3.4", - "laminas/laminas-stdlib": "^3.6", - "php": "^7.3 || ~8.0.0 || ~8.1.0" - }, - "conflict": { - "zendframework/zend-text": "*" + "require": { + "doctrine/instantiator": "^1.2 || ^2.0", + "php": "^7.2 || 8.0.* || 8.1.* || 8.2.*", + "phpdocumentor/reflection-docblock": "^5.2", + "sebastian/comparator": "^3.0 || ^4.0", + "sebastian/recursion-context": "^3.0 || ^4.0" }, "require-dev": { - "laminas/laminas-coding-standard": "~1.0.0", - "phpunit/phpunit": "^9.3" + "phpspec/phpspec": "^6.0 || ^7.0", + "phpstan/phpstan": "^1.9", + "phpunit/phpunit": "^8.0 || ^9.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, "autoload": { "psr-4": { - "Laminas\\Text\\": "src/" + "Prophecy\\": "src/Prophecy" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], - "description": "Create FIGlets and text-based tables", - "homepage": "https://laminas.dev", + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", "keywords": [ - "laminas", - "text" + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" ], "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-text/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-text/issues", - "rss": "https://github.com/laminas/laminas-text/releases.atom", - "source": "https://github.com/laminas/laminas-text" + "issues": "https://github.com/phpspec/prophecy/issues", + "source": "https://github.com/phpspec/prophecy/tree/v1.17.0" }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2021-09-02T16:50:53+00:00" + "time": "2023-02-02T15:41:36+00:00" }, { - "name": "mathieuviossat/arraytotexttable", - "version": "v1.0.9", + "name": "phpspec/prophecy-phpunit", + "version": "v2.0.2", "source": { "type": "git", - "url": "https://github.com/viossat/arraytotexttable.git", - "reference": "518ec338fe62e92c064a9d3d3bc8c64fb6e77d1c" + "url": "https://github.com/phpspec/prophecy-phpunit.git", + "reference": "9f26c224a2fa335f33e6666cc078fbf388255e87" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/518ec338fe62e92c064a9d3d3bc8c64fb6e77d1c", - "reference": "518ec338fe62e92c064a9d3d3bc8c64fb6e77d1c", + "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/9f26c224a2fa335f33e6666cc078fbf388255e87", + "reference": "9f26c224a2fa335f33e6666cc078fbf388255e87", "shasum": "" }, "require": { - "laminas/laminas-text": "^2.9", - "php": ">=5.3.0" + "php": "^7.3 || ^8", + "phpspec/prophecy": "^1.3", + "phpunit/phpunit": "^9.1" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, "autoload": { "psr-4": { - "MathieuViossat\\Util\\": "src/" + "Prophecy\\PhpUnit\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -18330,346 +18223,315 @@ ], "authors": [ { - "name": "Mathieu Viossat", - "email": "mathieu@viossat.fr", - "homepage": "https://viossat.fr" + "name": "Christophe Coevoet", + "email": "stof@notk.org" } ], - "description": "Display arrays in terminal", - "homepage": "https://github.com/viossat/arraytotexttable", + "description": "Integrating the Prophecy mocking library in PHPUnit test cases", + "homepage": "http://phpspec.net", "keywords": [ - "array", - "ascii", - "table", - "terminal", - "text", - "unicode" + "phpunit", + "prophecy" ], "support": { - "issues": "https://github.com/viossat/arraytotexttable/issues", - "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.9" + "issues": "https://github.com/phpspec/prophecy-phpunit/issues", + "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.0.2" }, - "time": "2022-08-30T15:33:10+00:00" + "time": "2023-04-18T11:58:05+00:00" }, { - "name": "mglaman/drupal-check", - "version": "1.4.0", + "name": "phpstan/extension-installer", + "version": "1.3.1", "source": { "type": "git", - "url": "https://github.com/mglaman/drupal-check.git", - "reference": "e78eff7b10f79659c020a45baaa1f3035cb9a06a" + "url": "https://github.com/phpstan/extension-installer.git", + "reference": "f45734bfb9984c6c56c4486b71230355f066a58a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/drupal-check/zipball/e78eff7b10f79659c020a45baaa1f3035cb9a06a", - "reference": "e78eff7b10f79659c020a45baaa1f3035cb9a06a", + "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/f45734bfb9984c6c56c4486b71230355f066a58a", + "reference": "f45734bfb9984c6c56c4486b71230355f066a58a", "shasum": "" }, "require": { - "composer/xdebug-handler": "^1.1 || ^2.0.1 || ^3.0", - "jean85/pretty-package-versions": "^1.5.0 || ^2.0.1", - "mglaman/phpstan-drupal": "^1.0.0", - "nette/neon": "^3.1", - "php": "^7.2.5|^8.0", - "phpstan/phpstan-deprecation-rules": "^1.0.0", - "symfony/console": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", - "symfony/process": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", - "webflo/drupal-finder": "^1.1" + "composer-plugin-api": "^2.0", + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.9.0" }, "require-dev": { - "phpstan/phpstan": "^1.0.0", - "phpstan/phpstan-strict-rules": "^1.0.0", - "squizlabs/php_codesniffer": "^3.4" + "composer/composer": "^2.0", + "php-parallel-lint/php-parallel-lint": "^1.2.0", + "phpstan/phpstan-strict-rules": "^0.11 || ^0.12 || ^1.0" }, - "bin": [ - "drupal-check" - ], - "type": "project", + "type": "composer-plugin", "extra": { - "violinist": { - "one_pull_request_per_package": 1 - } + "class": "PHPStan\\ExtensionInstaller\\Plugin" }, "autoload": { "psr-4": { - "DrupalCheck\\": "src" + "PHPStan\\ExtensionInstaller\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Matt Glaman", - "email": "nmd.matt@gmail.com" - } + "MIT" ], - "description": "CLI tool for running checks on a Drupal code base", + "description": "Composer plugin for automatic installation of PHPStan extensions", "support": { - "issues": "https://github.com/mglaman/drupal-check/issues", - "source": "https://github.com/mglaman/drupal-check/tree/1.4.0" + "issues": "https://github.com/phpstan/extension-installer/issues", + "source": "https://github.com/phpstan/extension-installer/tree/1.3.1" }, - "funding": [ - { - "url": "https://github.com/mglaman", - "type": "github" - }, - { - "url": "https://opencollective.com/phpstan-drupal", - "type": "open_collective" - }, - { - "url": "https://tidelift.com/funding/github/packagist/mglaman/drupal-check", - "type": "tidelift" - } - ], - "time": "2022-04-29T02:26:28+00:00" + "time": "2023-05-24T08:59:17+00:00" }, { - "name": "mglaman/phpstan-drupal", - "version": "1.1.26", + "name": "phpstan/phpdoc-parser", + "version": "1.24.2", "source": { "type": "git", - "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "5e8b527e4d9b9f23f37eac727b31aeff278bbe43" + "url": "https://github.com/phpstan/phpdoc-parser.git", + "reference": "bcad8d995980440892759db0c32acae7c8e79442" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/5e8b527e4d9b9f23f37eac727b31aeff278bbe43", - "reference": "5e8b527e4d9b9f23f37eac727b31aeff278bbe43", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bcad8d995980440892759db0c32acae7c8e79442", + "reference": "bcad8d995980440892759db0c32acae7c8e79442", "shasum": "" }, "require": { - "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^1.9.0", - "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0", - "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", - "webflo/drupal-finder": "^1.2" + "php": "^7.2 || ^8.0" }, "require-dev": { - "behat/mink": "^1.8", - "composer/installers": "^1.9", - "drupal/core-recommended": "^8.8@alpha || ^9.0", - "drush/drush": "^9.6 || ^10.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan-deprecation-rules": "^1.0", + "doctrine/annotations": "^2.0", + "nikic/php-parser": "^4.15", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.5", + "phpstan/phpstan-phpunit": "^1.1", "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9", - "slevomat/coding-standard": "^7.1", - "squizlabs/php_codesniffer": "^3.3", - "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0" - }, - "suggest": { - "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", - "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.", - "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan." + "phpunit/phpunit": "^9.5", + "symfony/process": "^5.2" }, - "type": "phpstan-extension", - "extra": { - "branch-alias": { - "dev-main": "1.0-dev" - }, - "installer-paths": { - "tests/fixtures/drupal/core": [ - "type:drupal-core" - ], - "tests/fixtures/drupal/libraries/{$name}": [ - "type:drupal-library" - ], - "tests/fixtures/drupal/modules/contrib/{$name}": [ - "type:drupal-module" - ], - "tests/fixtures/drupal/profiles/contrib/{$name}": [ - "type:drupal-profile" - ], - "tests/fixtures/drupal/themes/contrib/{$name}": [ - "type:drupal-theme" - ] - }, - "phpstan": { - "includes": [ - "extension.neon", - "rules.neon" + "type": "library", + "autoload": { + "psr-4": { + "PHPStan\\PhpDocParser\\": [ + "src/" ] } }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPDoc parser with support for nullable, intersection and generic types", + "support": { + "issues": "https://github.com/phpstan/phpdoc-parser/issues", + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.2" + }, + "time": "2023-09-26T12:28:12+00:00" + }, + { + "name": "phpstan/phpstan", + "version": "1.10.38", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "5302bb402c57f00fb3c2c015bac86e0827e4b691" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/5302bb402c57f00fb3c2c015bac86e0827e4b691", + "reference": "5302bb402c57f00fb3c2c015bac86e0827e4b691", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", "autoload": { - "psr-4": { - "mglaman\\PHPStanDrupal\\": "src/" - } + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ - { - "name": "Matt Glaman", - "email": "nmd.matt@gmail.com" - } + "description": "PHPStan - PHP Static Analysis Tool", + "keywords": [ + "dev", + "static analysis" ], - "description": "Drupal extension and rules for PHPStan", "support": { - "issues": "https://github.com/mglaman/phpstan-drupal/issues", - "source": "https://github.com/mglaman/phpstan-drupal/tree/1.1.26" + "docs": "https://phpstan.org/user-guide/getting-started", + "forum": "https://github.com/phpstan/phpstan/discussions", + "issues": "https://github.com/phpstan/phpstan/issues", + "security": "https://github.com/phpstan/phpstan/security/policy", + "source": "https://github.com/phpstan/phpstan-src" }, "funding": [ { - "url": "https://github.com/mglaman", + "url": "https://github.com/ondrejmirtes", "type": "github" }, { - "url": "https://opencollective.com/phpstan-drupal", - "type": "open_collective" + "url": "https://github.com/phpstan", + "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal", + "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", "type": "tidelift" } ], - "time": "2022-12-22T14:42:15+00:00" + "time": "2023-10-06T14:19:14+00:00" }, { - "name": "mikey179/vfsstream", - "version": "v1.6.11", + "name": "phpstan/phpstan-deprecation-rules", + "version": "1.1.4", "source": { "type": "git", - "url": "https://github.com/bovigo/vfsStream.git", - "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f" + "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", + "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", - "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa", + "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.10.3" }, "require-dev": { - "phpunit/phpunit": "^4.5|^5.0" + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-php-parser": "^1.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5" }, - "type": "library", + "type": "phpstan-extension", "extra": { - "branch-alias": { - "dev-master": "1.6.x-dev" + "phpstan": { + "includes": [ + "rules.neon" + ] } }, "autoload": { - "psr-0": { - "org\\bovigo\\vfs\\": "src/main/php" + "psr-4": { + "PHPStan\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Frank Kleine", - "homepage": "http://frankkleine.de/", - "role": "Developer" - } + "MIT" ], - "description": "Virtual file system to mock the real file system in unit tests.", - "homepage": "http://vfs.bovigo.org/", + "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", "support": { - "issues": "https://github.com/bovigo/vfsStream/issues", - "source": "https://github.com/bovigo/vfsStream/tree/master", - "wiki": "https://github.com/bovigo/vfsStream/wiki" + "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", + "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.4" }, - "time": "2022-02-23T02:02:42+00:00" + "time": "2023-08-05T09:02:04+00:00" }, { - "name": "myclabs/deep-copy", - "version": "1.11.1", + "name": "phpstan/phpstan-phpunit", + "version": "1.3.15", "source": { "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + "url": "https://github.com/phpstan/phpstan-phpunit.git", + "reference": "70ecacc64fe8090d8d2a33db5a51fe8e88acd93a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/70ecacc64fe8090d8d2a33db5a51fe8e88acd93a", + "reference": "70ecacc64fe8090d8d2a33db5a51fe8e88acd93a", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.10" }, "conflict": { - "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3,<3.2.2" + "phpunit/phpunit": "<7.0" }, "require-dev": { - "doctrine/collections": "^1.6.8", - "doctrine/common": "^2.13.3 || ^3.2.2", - "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + "nikic/php-parser": "^4.13.0", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-strict-rules": "^1.5.1", + "phpunit/phpunit": "^9.5" + }, + "type": "phpstan-extension", + "extra": { + "phpstan": { + "includes": [ + "extension.neon", + "rules.neon" + ] + } }, - "type": "library", "autoload": { - "files": [ - "src/DeepCopy/deep_copy.php" - ], "psr-4": { - "DeepCopy\\": "src/DeepCopy/" + "PHPStan\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Create deep copies (clones) of your objects", - "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" - ], + "description": "PHPUnit extensions and rules for PHPStan", "support": { - "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + "issues": "https://github.com/phpstan/phpstan-phpunit/issues", + "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.3.15" }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", - "type": "tidelift" - } - ], - "time": "2023-03-08T13:26:56+00:00" + "time": "2023-10-09T18:58:39+00:00" }, { - "name": "nette/neon", - "version": "v3.4.0", + "name": "phpunit/php-code-coverage", + "version": "9.2.29", "source": { "type": "git", - "url": "https://github.com/nette/neon.git", - "reference": "372d945c156ee7f35c953339fb164538339e6283" + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/neon/zipball/372d945c156ee7f35c953339fb164538339e6283", - "reference": "372d945c156ee7f35c953339fb164538339e6283", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6a3a87ac2bbe33b25042753df8195ba4aa534c76", + "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76", "shasum": "" }, "require": { - "ext-json": "*", - "php": ">=8.0 <8.3" + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.15", + "php": ">=7.3", + "phpunit/php-file-iterator": "^3.0.3", + "phpunit/php-text-template": "^2.0.2", + "sebastian/code-unit-reverse-lookup": "^2.0.2", + "sebastian/complexity": "^2.0", + "sebastian/environment": "^5.1.2", + "sebastian/lines-of-code": "^1.0.3", + "sebastian/version": "^3.0.1", + "theseer/tokenizer": "^1.2.0" }, "require-dev": { - "nette/tester": "^2.4", - "phpstan/phpstan": "^1.0", - "tracy/tracy": "^2.7" + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, - "bin": [ - "bin/neon-lint" - ], "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "9.2-dev" } }, "autoload": { @@ -18679,60 +18541,59 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause", - "GPL-2.0-only", - "GPL-3.0-only" + "BSD-3-Clause" ], "authors": [ { - "name": "David Grudl", - "homepage": "https://davidgrudl.com" - }, - { - "name": "Nette Community", - "homepage": "https://nette.org/contributors" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "🍸 Nette NEON: encodes and decodes NEON file format.", - "homepage": "https://ne-on.org", + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", "keywords": [ - "export", - "import", - "neon", - "nette", - "yaml" + "coverage", + "testing", + "xunit" ], "support": { - "issues": "https://github.com/nette/neon/issues", - "source": "https://github.com/nette/neon/tree/v3.4.0" + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29" }, - "time": "2023-01-13T03:08:29+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-09-19T04:57:46+00:00" }, { - "name": "phar-io/manifest", - "version": "2.0.3", + "name": "phpunit/php-file-iterator", + "version": "3.0.6", "source": { "type": "git", - "url": "https://github.com/phar-io/manifest.git", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-phar": "*", - "ext-xmlwriter": "*", - "phar-io/version": "^3.0.1", - "php": "^7.2 || ^8.0" + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -18745,47 +18606,60 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de", - "role": "Developer" + "role": "lead" } ], - "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], "support": { - "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/2.0.3" + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" }, - "time": "2021-07-20T11:28:43+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-12-02T12:48:52+00:00" }, { - "name": "phar-io/version", - "version": "3.2.1", + "name": "phpunit/php-invoker", + "version": "3.1.1", "source": { "type": "git", - "url": "https://github.com/phar-io/version.git", - "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", - "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": ">=7.3" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcntl": "*" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, "autoload": { "classmap": [ "src/" @@ -18796,455 +18670,503 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de", - "role": "Developer" + "role": "lead" } ], - "description": "Library for handling version information and constraints", + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], "support": { - "issues": "https://github.com/phar-io/version/issues", - "source": "https://github.com/phar-io/version/tree/3.2.1" + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" }, - "time": "2022-02-21T01:04:05+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:58:55+00:00" }, { - "name": "phpdocumentor/reflection-common", - "version": "2.2.0", + "name": "phpunit/php-text-template", + "version": "2.0.4", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", - "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-2.x": "2.x-dev" + "dev-master": "2.0-dev" } }, "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Jaap van Otterdijk", - "email": "opensource@ijaap.nl" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Common reflection classes used by phpdocumentor to reflect the code structure", - "homepage": "http://www.phpdoc.org", + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", "keywords": [ - "FQSEN", - "phpDocumentor", - "phpdoc", - "reflection", - "static analysis" + "template" ], "support": { - "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", - "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" }, - "time": "2020-06-27T09:03:43+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T05:33:50+00:00" }, { - "name": "phpdocumentor/reflection-docblock", - "version": "5.3.0", + "name": "phpunit/php-timer", + "version": "5.0.3", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", "shasum": "" }, "require": { - "ext-filter": "*", - "php": "^7.2 || ^8.0", - "phpdocumentor/reflection-common": "^2.2", - "phpdocumentor/type-resolver": "^1.3", - "webmozart/assert": "^1.9.1" + "php": ">=7.3" }, "require-dev": { - "mockery/mockery": "~1.3.2", - "psalm/phar": "^4.8" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.x-dev" + "dev-master": "5.0-dev" } }, "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - }, - { - "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], "support": { - "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" }, - "time": "2021-10-19T17:43:47+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:16:10+00:00" }, { - "name": "phpdocumentor/type-resolver", - "version": "1.7.3", + "name": "phpunit/phpunit", + "version": "9.6.13", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419" + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419", - "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f3d767f7f9e191eab4189abe41ab37797e30b1be", + "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be", "shasum": "" }, "require": { - "doctrine/deprecations": "^1.0", - "php": "^7.4 || ^8.0", - "phpdocumentor/reflection-common": "^2.0", - "phpstan/phpdoc-parser": "^1.13" + "doctrine/instantiator": "^1.3.1 || ^2", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.10.1", + "phar-io/manifest": "^2.0.3", + "phar-io/version": "^3.0.2", + "php": ">=7.3", + "phpunit/php-code-coverage": "^9.2.28", + "phpunit/php-file-iterator": "^3.0.5", + "phpunit/php-invoker": "^3.1.1", + "phpunit/php-text-template": "^2.0.3", + "phpunit/php-timer": "^5.0.2", + "sebastian/cli-parser": "^1.0.1", + "sebastian/code-unit": "^1.0.6", + "sebastian/comparator": "^4.0.8", + "sebastian/diff": "^4.0.3", + "sebastian/environment": "^5.1.3", + "sebastian/exporter": "^4.0.5", + "sebastian/global-state": "^5.0.1", + "sebastian/object-enumerator": "^4.0.3", + "sebastian/resource-operations": "^3.0.3", + "sebastian/type": "^3.2", + "sebastian/version": "^3.0.2" }, - "require-dev": { - "ext-tokenizer": "*", - "phpbench/phpbench": "^1.2", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-phpunit": "^1.1", - "phpunit/phpunit": "^9.5", - "rector/rector": "^0.13.9", - "vimeo/psalm": "^4.25" + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, + "bin": [ + "phpunit" + ], "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-master": "9.6-dev" } }, "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], "support": { - "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3" + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.13" }, - "time": "2023-08-12T11:01:26+00:00" + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2023-09-19T05:39:22+00:00" }, { - "name": "phpspec/prophecy", - "version": "v1.17.0", + "name": "previousnext/phpunit-finder", + "version": "2.0.2", "source": { "type": "git", - "url": "https://github.com/phpspec/prophecy.git", - "reference": "15873c65b207b07765dbc3c95d20fdf4a320cbe2" + "url": "https://github.com/previousnext/phpunit-finder.git", + "reference": "1964f6975a9234f97dd099c6171fed6198784bc2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/15873c65b207b07765dbc3c95d20fdf4a320cbe2", - "reference": "15873c65b207b07765dbc3c95d20fdf4a320cbe2", + "url": "https://api.github.com/repos/previousnext/phpunit-finder/zipball/1964f6975a9234f97dd099c6171fed6198784bc2", + "reference": "1964f6975a9234f97dd099c6171fed6198784bc2", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.2 || ^2.0", - "php": "^7.2 || 8.0.* || 8.1.* || 8.2.*", - "phpdocumentor/reflection-docblock": "^5.2", - "sebastian/comparator": "^3.0 || ^4.0", - "sebastian/recursion-context": "^3.0 || ^4.0" + "php": "^7.4||^8.0", + "phpunit/phpunit": "^9.5", + "symfony/console": "^3.4||^4.4||^5||^6" }, "require-dev": { - "phpspec/phpspec": "^6.0 || ^7.0", - "phpstan/phpstan": "^1.9", - "phpunit/phpunit": "^8.0 || ^9.0" + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1", + "drupal/coder": "~8.3.12", + "phpcompatibility/php-compatibility": "^9.3" }, + "bin": [ + "phpunit-finder" + ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, "autoload": { "psr-4": { - "Prophecy\\": "src/Prophecy" + "PhpUnitFinder\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Kim Pepper", + "email": "kim@previousnext.com.au" }, { - "name": "Marcello Duarte", - "email": "marcello.duarte@gmail.com" + "name": "Lee Rowlands", + "email": "lee.rowlands@previousnext.com.au" } ], - "description": "Highly opinionated mocking framework for PHP 5.3+", - "homepage": "https://github.com/phpspec/prophecy", - "keywords": [ - "Double", - "Dummy", - "fake", - "mock", - "spy", - "stub" - ], + "description": "PHP lib for finding and outputting all tests from a phpunit.xml config file.", "support": { - "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/v1.17.0" + "source": "https://github.com/previousnext/phpunit-finder/tree/2.0.2" }, - "time": "2023-02-02T15:41:36+00:00" + "time": "2023-01-13T04:40:56+00:00" }, { - "name": "phpstan/phpdoc-parser", - "version": "1.24.2", + "name": "react/promise", + "version": "v3.0.0", "source": { "type": "git", - "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "bcad8d995980440892759db0c32acae7c8e79442" + "url": "https://github.com/reactphp/promise.git", + "reference": "c86753c76fd3be465d93b308f18d189f01a22be4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bcad8d995980440892759db0c32acae7c8e79442", - "reference": "bcad8d995980440892759db0c32acae7c8e79442", + "url": "https://api.github.com/repos/reactphp/promise/zipball/c86753c76fd3be465d93b308f18d189f01a22be4", + "reference": "c86753c76fd3be465d93b308f18d189f01a22be4", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": ">=7.1.0" }, "require-dev": { - "doctrine/annotations": "^2.0", - "nikic/php-parser": "^4.15", - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.5", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/phpunit": "^9.5", - "symfony/process": "^5.2" + "phpstan/phpstan": "1.10.20 || 1.4.10", + "phpunit/phpunit": "^9.5 || ^7.5" }, "type": "library", "autoload": { + "files": [ + "src/functions_include.php" + ], "psr-4": { - "PHPStan\\PhpDocParser\\": [ - "src/" - ] + "React\\Promise\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "PHPDoc parser with support for nullable, intersection and generic types", + "authors": [ + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "keywords": [ + "promise", + "promises" + ], "support": { - "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.2" + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v3.0.0" }, - "time": "2023-09-26T12:28:12+00:00" + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-07-11T16:12:49+00:00" }, { - "name": "phpstan/phpstan", - "version": "1.9.14", + "name": "romaricdrigon/metayaml", + "version": "dev-master", "source": { "type": "git", - "url": "https://github.com/phpstan/phpstan.git", - "reference": "e5fcc96289cf737304286a9b505fbed091f02e58" + "url": "https://github.com/romaricdrigon/MetaYaml.git", + "reference": "1481b99679b29cbb50c88f3e10e4951ac64b8ad3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e5fcc96289cf737304286a9b505fbed091f02e58", - "reference": "e5fcc96289cf737304286a9b505fbed091f02e58", + "url": "https://api.github.com/repos/romaricdrigon/MetaYaml/zipball/1481b99679b29cbb50c88f3e10e4951ac64b8ad3", + "reference": "1481b99679b29cbb50c88f3e10e4951ac64b8ad3", "shasum": "" }, "require": { - "php": "^7.2|^8.0" + "php": ">=5.3.3", + "symfony/yaml": ">=2.3.0" }, - "conflict": { - "phpstan/phpstan-shim": "*" + "require-dev": { + "atoum/atoum": "~1" }, - "bin": [ - "phpstan", - "phpstan.phar" - ], + "default-branch": true, "type": "library", "autoload": { - "files": [ - "bootstrap.php" - ] + "psr-0": { + "RomaricDrigon\\MetaYaml": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "PHPStan - PHP Static Analysis Tool", + "description": "Using [Yaml|Xml|json] schemas files to validate [Yaml|Xml|json] ", + "homepage": "http://github.com/romaricdrigon/MetaYaml", "keywords": [ - "dev", - "static analysis" + "json", + "schema", + "validation", + "xml", + "yaml" ], "support": { - "issues": "https://github.com/phpstan/phpstan/issues", - "source": "https://github.com/phpstan/phpstan/tree/1.9.14" + "issues": "https://github.com/romaricdrigon/MetaYaml/issues", + "source": "https://github.com/romaricdrigon/MetaYaml/tree/master" }, - "funding": [ - { - "url": "https://github.com/ondrejmirtes", - "type": "github" - }, - { - "url": "https://github.com/phpstan", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", - "type": "tidelift" - } - ], - "time": "2023-01-19T10:47:09+00:00" + "time": "2018-07-31T16:13:05+00:00" }, { - "name": "phpstan/phpstan-deprecation-rules", - "version": "1.1.1", + "name": "sebastian/cli-parser", + "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "2c6792eda026d9c474c14aa018aed312686714db" + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/2c6792eda026d9c474c14aa018aed312686714db", - "reference": "2c6792eda026d9c474c14aa018aed312686714db", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0", - "phpstan/phpstan": "^1.9.3" + "php": ">=7.3" }, "require-dev": { - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/phpstan-php-parser": "^1.1", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^9.5" + "phpunit/phpunit": "^9.3" }, - "type": "phpstan-extension", + "type": "library", "extra": { - "phpstan": { - "includes": [ - "rules.neon" - ] + "branch-alias": { + "dev-master": "1.0-dev" } }, "autoload": { - "psr-4": { - "PHPStan\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], - "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", "support": { - "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", - "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.1" + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" }, - "time": "2022-12-13T14:26:20+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:08:49+00:00" }, { - "name": "phpunit/php-code-coverage", - "version": "7.0.15", + "name": "sebastian/code-unit", + "version": "1.0.8", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "819f92bba8b001d4363065928088de22f25a3a48" + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48", - "reference": "819f92bba8b001d4363065928088de22f25a3a48", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-xmlwriter": "*", - "php": ">=7.2", - "phpunit/php-file-iterator": "^2.0.2", - "phpunit/php-text-template": "^1.2.1", - "phpunit/php-token-stream": "^3.1.3 || ^4.0", - "sebastian/code-unit-reverse-lookup": "^1.0.1", - "sebastian/environment": "^4.2.2", - "sebastian/version": "^2.0.1", - "theseer/tokenizer": "^1.1.3" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^8.2.2" - }, - "suggest": { - "ext-xdebug": "^2.7.2" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "7.0-dev" + "dev-master": "1.0-dev" } }, "autoload": { @@ -19263,16 +19185,11 @@ "role": "lead" } ], - "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", - "homepage": "https://github.com/sebastianbergmann/php-code-coverage", - "keywords": [ - "coverage", - "testing", - "xunit" - ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", "support": { - "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15" + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" }, "funding": [ { @@ -19280,32 +19197,32 @@ "type": "github" } ], - "time": "2021-07-26T12:20:09+00:00" + "time": "2020-10-26T13:08:54+00:00" }, { - "name": "phpunit/php-file-iterator", - "version": "2.0.5", + "name": "sebastian/code-unit-reverse-lookup", + "version": "2.0.3", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5" + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5", - "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^8.5" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -19320,19 +19237,14 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "email": "sebastian@phpunit.de" } ], - "description": "FilterIterator implementation that filters files based on a list of suffixes.", - "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", - "keywords": [ - "filesystem", - "iterator" - ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", "support": { - "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5" + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" }, "funding": [ { @@ -19340,26 +19252,36 @@ "type": "github" } ], - "time": "2021-12-02T12:42:26+00:00" + "time": "2020-09-28T05:30:19+00:00" }, { - "name": "phpunit/php-text-template", - "version": "1.2.1", + "name": "sebastian/comparator", + "version": "4.0.8", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", - "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.3", + "sebastian/diff": "^4.0", + "sebastian/exporter": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, "autoload": { "classmap": [ "src/" @@ -19372,45 +19294,65 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" } ], - "description": "Simple template engine.", - "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", "keywords": [ - "template" + "comparator", + "compare", + "equality" ], "support": { - "issues": "https://github.com/sebastianbergmann/php-text-template/issues", - "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1" + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" }, - "time": "2015-06-21T13:50:34+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2022-09-14T12:41:17+00:00" }, { - "name": "phpunit/php-timer", - "version": "2.1.3", + "name": "sebastian/complexity", + "version": "2.0.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662" + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662", - "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", + "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", "shasum": "" }, "require": { - "php": ">=7.1" + "nikic/php-parser": "^4.7", + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^8.5" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -19429,14 +19371,11 @@ "role": "lead" } ], - "description": "Utility class for timing", - "homepage": "https://github.com/sebastianbergmann/php-timer/", - "keywords": [ - "timer" - ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", "support": { - "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3" + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" }, "funding": [ { @@ -19444,33 +19383,35 @@ "type": "github" } ], - "time": "2020-11-30T08:20:02+00:00" + "time": "2020-10-26T15:52:27+00:00" }, { - "name": "phpunit/php-token-stream", - "version": "4.0.4", + "name": "sebastian/environment", + "version": "5.1.5", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3" + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3", - "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", "shasum": "" }, "require": { - "ext-tokenizer": "*", - "php": "^7.3 || ^8.0" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-posix": "*" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "5.1-dev" } }, "autoload": { @@ -19488,14 +19429,16 @@ "email": "sebastian@phpunit.de" } ], - "description": "Wrapper around PHP's tokenizer extension.", - "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", "keywords": [ - "tokenizer" + "Xdebug", + "environment", + "hhvm" ], "support": { - "issues": "https://github.com/sebastianbergmann/php-token-stream/issues", - "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master" + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" }, "funding": [ { @@ -19503,61 +19446,34 @@ "type": "github" } ], - "abandoned": true, - "time": "2020-08-04T08:28:15+00:00" + "time": "2023-02-03T06:03:51+00:00" }, { - "name": "phpunit/phpunit", - "version": "8.5.34", + "name": "sebastian/exporter", + "version": "4.0.5", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "622d0186707f39a4ae71df3bcf42d759bb868854" + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/622d0186707f39a4ae71df3bcf42d759bb868854", - "reference": "622d0186707f39a4ae71df3bcf42d759bb868854", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", + "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1", - "ext-dom": "*", - "ext-json": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "ext-xml": "*", - "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.10.0", - "phar-io/manifest": "^2.0.3", - "phar-io/version": "^3.0.2", - "php": ">=7.2", - "phpunit/php-code-coverage": "^7.0.12", - "phpunit/php-file-iterator": "^2.0.4", - "phpunit/php-text-template": "^1.2.1", - "phpunit/php-timer": "^2.1.2", - "sebastian/comparator": "^3.0.5", - "sebastian/diff": "^3.0.2", - "sebastian/environment": "^4.2.3", - "sebastian/exporter": "^3.1.5", - "sebastian/global-state": "^3.0.0", - "sebastian/object-enumerator": "^3.0.3", - "sebastian/resource-operations": "^2.0.1", - "sebastian/type": "^1.1.3", - "sebastian/version": "^2.0.1" + "php": ">=7.3", + "sebastian/recursion-context": "^4.0" }, - "suggest": { - "ext-soap": "To be able to generate mocks based on WSDL files", - "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage", - "phpunit/php-invoker": "To allow enforcing time limits" + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^9.3" }, - "bin": [ - "phpunit" - ], "type": "library", "extra": { "branch-alias": { - "dev-master": "8.5-dev" + "dev-master": "4.0-dev" } }, "autoload": { @@ -19572,234 +19488,245 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" } ], - "description": "The PHP Unit Testing framework.", - "homepage": "https://phpunit.de/", + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", "keywords": [ - "phpunit", - "testing", - "xunit" + "export", + "exporter" ], "support": { - "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.34" + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" }, "funding": [ - { - "url": "https://phpunit.de/sponsors.html", - "type": "custom" - }, { "url": "https://github.com/sebastianbergmann", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", - "type": "tidelift" } ], - "time": "2023-09-19T05:20:51+00:00" + "time": "2022-09-14T06:03:37+00:00" }, { - "name": "previousnext/phpunit-finder", - "version": "1.3.0", + "name": "sebastian/global-state", + "version": "5.0.6", "source": { "type": "git", - "url": "https://github.com/previousnext/phpunit-finder.git", - "reference": "4e3ee1b77efda62a195bfed67e4759b9388b803a" + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "bde739e7565280bda77be70044ac1047bc007e34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/previousnext/phpunit-finder/zipball/4e3ee1b77efda62a195bfed67e4759b9388b803a", - "reference": "4e3ee1b77efda62a195bfed67e4759b9388b803a", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34", + "reference": "bde739e7565280bda77be70044ac1047bc007e34", "shasum": "" }, "require": { - "php": "^7.2||^8.0", - "phpunit/phpunit": "^6.4||^7.0||^8.0", - "symfony/console": "^3.4||^4.4" + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" }, "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1", - "drupal/coder": "~8.3.12", - "phpcompatibility/php-compatibility": "^9.3" + "ext-dom": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-uopz": "*" }, - "bin": [ - "phpunit-finder" - ], "type": "library", - "autoload": { - "psr-4": { - "PhpUnitFinder\\": "src/" + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "BSD-3-Clause" ], "authors": [ { - "name": "Kim Pepper", - "email": "kim@previousnext.com.au" - }, - { - "name": "Lee Rowlands", - "email": "lee.rowlands@previousnext.com.au" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" } ], - "description": "PHP lib for finding and outputting all tests from a phpunit.xml config file.", + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], "support": { - "source": "https://github.com/previousnext/phpunit-finder/tree/1.3.0" + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" }, - "time": "2021-01-20T01:30:28+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-02T09:26:13+00:00" }, { - "name": "react/promise", - "version": "v2.10.0", + "name": "sebastian/lines-of-code", + "version": "1.0.3", "source": { "type": "git", - "url": "https://github.com/reactphp/promise.git", - "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38" + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38", - "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", "shasum": "" }, "require": { - "php": ">=5.4.0" + "nikic/php-parser": "^4.6", + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.36" + "phpunit/phpunit": "^9.3" }, "type": "library", - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "React\\Promise\\": "src/" + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" - }, - { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "A lightweight implementation of CommonJS Promises/A for PHP", - "keywords": [ - "promise", - "promises" - ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", "support": { - "issues": "https://github.com/reactphp/promise/issues", - "source": "https://github.com/reactphp/promise/tree/v2.10.0" + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" }, "funding": [ { - "url": "https://opencollective.com/reactphp", - "type": "open_collective" + "url": "https://github.com/sebastianbergmann", + "type": "github" } ], - "time": "2023-05-02T15:15:43+00:00" + "time": "2020-11-28T06:42:11+00:00" }, { - "name": "romaricdrigon/metayaml", - "version": "dev-master", + "name": "sebastian/object-enumerator", + "version": "4.0.4", "source": { "type": "git", - "url": "https://github.com/romaricdrigon/MetaYaml.git", - "reference": "1481b99679b29cbb50c88f3e10e4951ac64b8ad3" + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/romaricdrigon/MetaYaml/zipball/1481b99679b29cbb50c88f3e10e4951ac64b8ad3", - "reference": "1481b99679b29cbb50c88f3e10e4951ac64b8ad3", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", "shasum": "" }, "require": { - "php": ">=5.3.3", - "symfony/yaml": ">=2.3.0" + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" }, "require-dev": { - "atoum/atoum": "~1" + "phpunit/phpunit": "^9.3" }, - "default-branch": true, "type": "library", - "autoload": { - "psr-0": { - "RomaricDrigon\\MetaYaml": "src/" + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], - "description": "Using [Yaml|Xml|json] schemas files to validate [Yaml|Xml|json] ", - "homepage": "http://github.com/romaricdrigon/MetaYaml", - "keywords": [ - "json", - "schema", - "validation", - "xml", - "yaml" + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", "support": { - "issues": "https://github.com/romaricdrigon/MetaYaml/issues", - "source": "https://github.com/romaricdrigon/MetaYaml/tree/master" + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" }, - "time": "2018-07-31T16:13:05+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:12:34+00:00" }, { - "name": "sebastian/code-unit-reverse-lookup", - "version": "1.0.2", + "name": "sebastian/object-reflector", + "version": "2.0.4", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619" + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619", - "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", "shasum": "" }, "require": { - "php": ">=5.6" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^8.5" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -19817,11 +19744,11 @@ "email": "sebastian@phpunit.de" } ], - "description": "Looks up which function or method a line of code belongs to", - "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", "support": { - "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", - "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2" + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" }, "funding": [ { @@ -19829,34 +19756,32 @@ "type": "github" } ], - "time": "2020-11-30T08:15:22+00:00" + "time": "2020-10-26T13:14:26+00:00" }, { - "name": "sebastian/comparator", - "version": "3.0.5", + "name": "sebastian/recursion-context", + "version": "4.0.5", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770" + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1dc7ceb4a24aede938c7af2a9ed1de09609ca770", - "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", "shasum": "" }, "require": { - "php": ">=7.1", - "sebastian/diff": "^3.0", - "sebastian/exporter": "^3.1" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^8.5" + "phpunit/phpunit": "^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "4.0-dev" } }, "autoload": { @@ -19878,24 +19803,15 @@ "email": "whatthejeff@gmail.com" }, { - "name": "Volker Dusch", - "email": "github@wallbash.com" - }, - { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" + "name": "Adam Harvey", + "email": "aharvey@php.net" } ], - "description": "Provides the functionality to compare PHP values for equality", - "homepage": "https://github.com/sebastianbergmann/comparator", - "keywords": [ - "comparator", - "compare", - "equality" - ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { - "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.5" + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" }, "funding": [ { @@ -19903,28 +19819,27 @@ "type": "github" } ], - "time": "2022-09-14T12:31:48+00:00" + "time": "2023-02-03T06:07:39+00:00" }, { - "name": "sebastian/diff", - "version": "3.0.4", + "name": "sebastian/resource-operations", + "version": "3.0.3", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "6296a0c086dd0117c1b78b059374d7fcbe7545ae" + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/6296a0c086dd0117c1b78b059374d7fcbe7545ae", - "reference": "6296a0c086dd0117c1b78b059374d7fcbe7545ae", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "^7.5 || ^8.0", - "symfony/process": "^2 || ^3.3 || ^4" + "phpunit/phpunit": "^9.0" }, "type": "library", "extra": { @@ -19945,23 +19860,13 @@ { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" - }, - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" } ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" - ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "support": { - "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/3.0.4" + "issues": "https://github.com/sebastianbergmann/resource-operations/issues", + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" }, "funding": [ { @@ -19969,35 +19874,32 @@ "type": "github" } ], - "time": "2023-05-07T05:30:20+00:00" + "time": "2020-09-28T06:45:17+00:00" }, { - "name": "sebastian/environment", - "version": "4.2.4", + "name": "sebastian/type", + "version": "3.2.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0" + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0", - "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", "shasum": "" }, "require": { - "php": ">=7.1" - }, - "require-dev": { - "phpunit/phpunit": "^7.5" - }, - "suggest": { - "ext-posix": "*" + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -20012,19 +19914,15 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "http://www.github.com/sebastianbergmann/environment", - "keywords": [ - "Xdebug", - "environment", - "hhvm" - ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", "support": { - "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4" + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" }, "funding": [ { @@ -20032,34 +19930,29 @@ "type": "github" } ], - "time": "2020-11-30T07:53:42+00:00" + "time": "2023-02-03T06:13:03+00:00" }, { - "name": "sebastian/exporter", - "version": "3.1.5", + "name": "sebastian/version", + "version": "3.0.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6" + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c6c1022351a901512170118436c764e473f6de8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/73a9676f2833b9a7c36968f9d882589cd75511e6", - "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", + "reference": "c6c1022351a901512170118436c764e473f6de8c", "shasum": "" }, "require": { - "php": ">=7.0", - "sebastian/recursion-context": "^3.0" - }, - "require-dev": { - "ext-mbstring": "*", - "phpunit/phpunit": "^8.5" + "php": ">=7.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.1.x-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -20074,34 +19967,15 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" - }, - { - "name": "Adam Harvey", - "email": "aharvey@php.net" - }, - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Provides the functionality to export PHP variables for visualization", - "homepage": "http://www.github.com/sebastianbergmann/exporter", - "keywords": [ - "export", - "exporter" - ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", "support": { - "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.5" + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" }, "funding": [ { @@ -20109,431 +19983,443 @@ "type": "github" } ], - "time": "2022-09-14T06:00:17+00:00" + "time": "2020-09-28T06:39:44+00:00" }, { - "name": "sebastian/global-state", - "version": "3.0.3", + "name": "seld/jsonlint", + "version": "1.10.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "66783ce213de415b451b904bfef9dda0cf9aeae0" + "url": "https://github.com/Seldaek/jsonlint.git", + "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/66783ce213de415b451b904bfef9dda0cf9aeae0", - "reference": "66783ce213de415b451b904bfef9dda0cf9aeae0", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1", + "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1", "shasum": "" }, "require": { - "php": ">=7.2", - "sebastian/object-reflector": "^1.1.1", - "sebastian/recursion-context": "^3.0" + "php": "^5.3 || ^7.0 || ^8.0" }, "require-dev": { - "ext-dom": "*", - "phpunit/phpunit": "^8.0" - }, - "suggest": { - "ext-uopz": "*" + "phpstan/phpstan": "^1.5", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13" }, + "bin": [ + "bin/jsonlint" + ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Seld\\JsonLint\\": "src/Seld/JsonLint/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "Snapshotting of global state", - "homepage": "http://www.github.com/sebastianbergmann/global-state", + "description": "JSON Linter", "keywords": [ - "global state" + "json", + "linter", + "parser", + "validator" ], "support": { - "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.3" + "issues": "https://github.com/Seldaek/jsonlint/issues", + "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://github.com/Seldaek", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", + "type": "tidelift" } ], - "time": "2023-08-02T09:23:32+00:00" + "time": "2023-05-11T13:16:46+00:00" }, { - "name": "sebastian/object-enumerator", - "version": "3.0.4", + "name": "seld/phar-utils", + "version": "1.2.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2" + "url": "https://github.com/Seldaek/phar-utils.git", + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2", - "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2", + "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", "shasum": "" }, "require": { - "php": ">=7.0", - "sebastian/object-reflector": "^1.1.1", - "sebastian/recursion-context": "^3.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.0" + "php": ">=5.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Seld\\PharUtils\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" } ], - "description": "Traverses array structures and object graphs to enumerate all referenced objects", - "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "description": "PHAR file format utilities, for when PHP phars you up", + "keywords": [ + "phar" + ], "support": { - "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", - "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4" + "issues": "https://github.com/Seldaek/phar-utils/issues", + "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2020-11-30T07:40:27+00:00" + "time": "2022-08-31T10:31:18+00:00" }, { - "name": "sebastian/object-reflector", - "version": "1.1.2", + "name": "seld/signal-handler", + "version": "2.0.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d" + "url": "https://github.com/Seldaek/signal-handler.git", + "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d", - "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d", + "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", + "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", "shasum": "" }, "require": { - "php": ">=7.0" + "php": ">=7.2.0" }, "require-dev": { - "phpunit/phpunit": "^6.0" + "phpstan/phpstan": "^1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^7.5.20 || ^8.5.23", + "psr/log": "^1 || ^2 || ^3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-main": "2.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Seld\\Signal\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "Allows reflection of object attributes, including inherited and non-public ones", - "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development", + "keywords": [ + "posix", + "sigint", + "signal", + "sigterm", + "unix" + ], "support": { - "issues": "https://github.com/sebastianbergmann/object-reflector/issues", - "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2" + "issues": "https://github.com/Seldaek/signal-handler/issues", + "source": "https://github.com/Seldaek/signal-handler/tree/2.0.2" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2020-11-30T07:37:18+00:00" + "time": "2023-09-03T09:24:00+00:00" }, { - "name": "sebastian/recursion-context", - "version": "3.0.1", + "name": "sirbrillig/phpcs-variable-analysis", + "version": "v2.11.17", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb" + "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", + "reference": "3b71162a6bf0cde2bff1752e40a1788d8273d049" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb", - "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/3b71162a6bf0cde2bff1752e40a1788d8273d049", + "reference": "3b71162a6bf0cde2bff1752e40a1788d8273d049", "shasum": "" }, "require": { - "php": ">=7.0" + "php": ">=5.4.0", + "squizlabs/php_codesniffer": "^3.5.6" }, "require-dev": { - "phpunit/phpunit": "^6.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0.x-dev" - } + "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", + "phpcsstandards/phpcsdevcs": "^1.1", + "phpstan/phpstan": "^1.7", + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", + "sirbrillig/phpcs-import-detection": "^1.1", + "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0@beta" }, + "type": "phpcodesniffer-standard", "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "VariableAnalysis\\": "VariableAnalysis/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "BSD-2-Clause" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" + "name": "Sam Graham", + "email": "php-codesniffer-variableanalysis@illusori.co.uk" }, { - "name": "Adam Harvey", - "email": "aharvey@php.net" + "name": "Payton Swick", + "email": "payton@foolord.com" } ], - "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "description": "A PHPCS sniff to detect problems with variables.", + "keywords": [ + "phpcs", + "static analysis" + ], "support": { - "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1" + "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", + "source": "https://github.com/sirbrillig/phpcs-variable-analysis", + "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2020-11-30T07:34:24+00:00" + "time": "2023-08-05T23:46:11+00:00" }, { - "name": "sebastian/resource-operations", - "version": "2.0.2", + "name": "slevomat/coding-standard", + "version": "8.14.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3" + "url": "https://github.com/slevomat/coding-standard.git", + "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3", - "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/fea1fd6f137cc84f9cba0ae30d549615dbc6a926", + "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926", "shasum": "" }, - "require": { - "php": ">=7.1" + "require": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0", + "php": "^7.2 || ^8.0", + "phpstan/phpdoc-parser": "^1.23.1", + "squizlabs/php_codesniffer": "^3.7.1" + }, + "require-dev": { + "phing/phing": "2.17.4", + "php-parallel-lint/php-parallel-lint": "1.3.2", + "phpstan/phpstan": "1.10.37", + "phpstan/phpstan-deprecation-rules": "1.1.4", + "phpstan/phpstan-phpunit": "1.3.14", + "phpstan/phpstan-strict-rules": "1.5.1", + "phpunit/phpunit": "8.5.21|9.6.8|10.3.5" }, - "type": "library", + "type": "phpcodesniffer-standard", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "8.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "SlevomatCodingStandard\\": "SlevomatCodingStandard/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } + "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "keywords": [ + "dev", + "phpcs" ], - "description": "Provides a list of PHP built-in functions that operate on resources", - "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "support": { - "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2" + "issues": "https://github.com/slevomat/coding-standard/issues", + "source": "https://github.com/slevomat/coding-standard/tree/8.14.1" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://github.com/kukulich", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", + "type": "tidelift" } ], - "time": "2020-11-30T07:30:19+00:00" + "time": "2023-10-08T07:28:08+00:00" }, { - "name": "sebastian/type", - "version": "1.1.4", + "name": "squizlabs/php_codesniffer", + "version": "3.7.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/type.git", - "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4" + "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", + "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4", - "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879", + "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879", "shasum": "" }, "require": { - "php": ">=7.2" + "ext-simplexml": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^8.2" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" }, + "bin": [ + "bin/phpcs", + "bin/phpcbf" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "3.x-dev" } }, - "autoload": { - "classmap": [ - "src/" - ] - }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", + "name": "Greg Sherwood", "role": "lead" } ], - "description": "Collection of value objects that represent the types of the PHP type system", - "homepage": "https://github.com/sebastianbergmann/type", + "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", + "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", + "keywords": [ + "phpcs", + "standards", + "static analysis" + ], "support": { - "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/1.1.4" + "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", + "source": "https://github.com/squizlabs/PHP_CodeSniffer", + "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2020-11-30T07:25:11+00:00" + "time": "2023-02-22T23:07:41+00:00" }, { - "name": "sebastian/version", - "version": "2.0.1", + "name": "stecman/symfony-console-completion", + "version": "v0.12.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/version.git", - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + "url": "https://github.com/stecman/symfony-console-completion.git", + "reference": "17e105a12ad8ce0ae1347e6ef5d2cf4c96b8fd1b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", - "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/17e105a12ad8ce0ae1347e6ef5d2cf4c96b8fd1b", + "reference": "17e105a12ad8ce0ae1347e6ef5d2cf4c96b8fd1b", "shasum": "" }, "require": { - "php": ">=5.6" + "php": ">=8.0.2", + "symfony/console": "~6.3" + }, + "require-dev": { + "dms/phpunit-arraysubset-asserts": "^0.4.0", + "phpunit/phpunit": "^9.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "0.12.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Stephen Holdaway", + "email": "stephen@stecman.co.nz" } ], - "description": "Library that helps with managing the version number of Git-hosted PHP projects", - "homepage": "https://github.com/sebastianbergmann/version", + "description": "Automatic BASH completion for Symfony Console Component based applications.", "support": { - "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/master" + "issues": "https://github.com/stecman/symfony-console-completion/issues", + "source": "https://github.com/stecman/symfony-console-completion/tree/v0.12.2" }, - "time": "2016-10-03T07:35:21+00:00" + "time": "2023-06-27T23:55:08+00:00" }, { - "name": "seld/jsonlint", - "version": "1.10.0", + "name": "symfony/browser-kit", + "version": "v6.3.2", "source": { "type": "git", - "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1" + "url": "https://github.com/symfony/browser-kit.git", + "reference": "ca4a988488f61ac18f8f845445eabdd36f89aa8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1", - "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/ca4a988488f61ac18f8f845445eabdd36f89aa8d", + "reference": "ca4a988488f61ac18f8f845445eabdd36f89aa8d", "shasum": "" }, "require": { - "php": "^5.3 || ^7.0 || ^8.0" + "php": ">=8.1", + "symfony/dom-crawler": "^5.4|^6.0" }, "require-dev": { - "phpstan/phpstan": "^1.5", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13" + "symfony/css-selector": "^5.4|^6.0", + "symfony/http-client": "^5.4|^6.0", + "symfony/mime": "^5.4|^6.0", + "symfony/process": "^5.4|^6.0" }, - "bin": [ - "bin/jsonlint" - ], "type": "library", "autoload": { "psr-4": { - "Seld\\JsonLint\\": "src/Seld/JsonLint/" - } + "Symfony\\Component\\BrowserKit\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -20541,61 +20427,91 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "JSON Linter", - "keywords": [ - "json", - "linter", - "parser", - "validator" - ], + "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/Seldaek/jsonlint/issues", - "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0" + "source": "https://github.com/symfony/browser-kit/tree/v6.3.2" }, "funding": [ { - "url": "https://github.com/Seldaek", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2023-05-11T13:16:46+00:00" + "time": "2023-07-06T06:56:43+00:00" }, { - "name": "seld/phar-utils", - "version": "1.2.1", + "name": "symfony/cache", + "version": "v6.3.5", "source": { "type": "git", - "url": "https://github.com/Seldaek/phar-utils.git", - "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c" + "url": "https://github.com/symfony/cache.git", + "reference": "6c1a3ea078c4d88ee892530945df63a87981b2da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", - "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "url": "https://api.github.com/repos/symfony/cache/zipball/6c1a3ea078c4d88ee892530945df63a87981b2da", + "reference": "6c1a3ea078c4d88ee892530945df63a87981b2da", "shasum": "" }, "require": { - "php": ">=5.3" + "php": ">=8.1", + "psr/cache": "^2.0|^3.0", + "psr/log": "^1.1|^2|^3", + "symfony/cache-contracts": "^2.5|^3", + "symfony/service-contracts": "^2.5|^3", + "symfony/var-exporter": "^6.2.10" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } + "conflict": { + "doctrine/dbal": "<2.13.1", + "symfony/dependency-injection": "<5.4", + "symfony/http-kernel": "<5.4", + "symfony/var-dumper": "<5.4" + }, + "provide": { + "psr/cache-implementation": "2.0|3.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0", + "symfony/cache-implementation": "1.1|2.0|3.0" + }, + "require-dev": { + "cache/integration-tests": "dev-master", + "doctrine/dbal": "^2.13.1|^3.0", + "predis/predis": "^1.1|^2.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "symfony/config": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/filesystem": "^5.4|^6.0", + "symfony/http-kernel": "^5.4|^6.0", + "symfony/messenger": "^5.4|^6.0", + "symfony/var-dumper": "^5.4|^6.0" }, + "type": "library", "autoload": { "psr-4": { - "Seld\\PharUtils\\": "src/" - } + "Symfony\\Component\\Cache\\": "" + }, + "classmap": [ + "Traits/ValueWrapper.php" + ], + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -20603,228 +20519,211 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "PHAR file format utilities, for when PHP phars you up", + "description": "Provides extended PSR-6, PSR-16 (and tags) implementations", + "homepage": "https://symfony.com", "keywords": [ - "phar" + "caching", + "psr6" ], "support": { - "issues": "https://github.com/Seldaek/phar-utils/issues", - "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1" - }, - "time": "2022-08-31T10:31:18+00:00" - }, - { - "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.17", - "source": { - "type": "git", - "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "3b71162a6bf0cde2bff1752e40a1788d8273d049" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/3b71162a6bf0cde2bff1752e40a1788d8273d049", - "reference": "3b71162a6bf0cde2bff1752e40a1788d8273d049", - "shasum": "" - }, - "require": { - "php": ">=5.4.0", - "squizlabs/php_codesniffer": "^3.5.6" - }, - "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", - "phpcsstandards/phpcsdevcs": "^1.1", - "phpstan/phpstan": "^1.7", - "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", - "sirbrillig/phpcs-import-detection": "^1.1", - "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0@beta" - }, - "type": "phpcodesniffer-standard", - "autoload": { - "psr-4": { - "VariableAnalysis\\": "VariableAnalysis/" - } + "source": "https://github.com/symfony/cache/tree/v6.3.5" }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-2-Clause" - ], - "authors": [ + "funding": [ { - "name": "Sam Graham", - "email": "php-codesniffer-variableanalysis@illusori.co.uk" + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" }, { - "name": "Payton Swick", - "email": "payton@foolord.com" + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "description": "A PHPCS sniff to detect problems with variables.", - "keywords": [ - "phpcs", - "static analysis" - ], - "support": { - "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", - "source": "https://github.com/sirbrillig/phpcs-variable-analysis", - "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" - }, - "time": "2023-08-05T23:46:11+00:00" + "time": "2023-09-26T15:48:55+00:00" }, { - "name": "slevomat/coding-standard", - "version": "7.2.1", + "name": "symfony/cache-contracts", + "version": "v3.3.0", "source": { "type": "git", - "url": "https://github.com/slevomat/coding-standard.git", - "reference": "aff06ae7a84e4534bf6f821dc982a93a5d477c90" + "url": "https://github.com/symfony/cache-contracts.git", + "reference": "ad945640ccc0ae6e208bcea7d7de4b39b569896b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/aff06ae7a84e4534bf6f821dc982a93a5d477c90", - "reference": "aff06ae7a84e4534bf6f821dc982a93a5d477c90", + "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ad945640ccc0ae6e208bcea7d7de4b39b569896b", + "reference": "ad945640ccc0ae6e208bcea7d7de4b39b569896b", "shasum": "" }, "require": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7", - "php": "^7.2 || ^8.0", - "phpstan/phpdoc-parser": "^1.5.1", - "squizlabs/php_codesniffer": "^3.6.2" - }, - "require-dev": { - "phing/phing": "2.17.3", - "php-parallel-lint/php-parallel-lint": "1.3.2", - "phpstan/phpstan": "1.4.10|1.7.1", - "phpstan/phpstan-deprecation-rules": "1.0.0", - "phpstan/phpstan-phpunit": "1.0.0|1.1.1", - "phpstan/phpstan-strict-rules": "1.2.3", - "phpunit/phpunit": "7.5.20|8.5.21|9.5.20" + "php": ">=8.1", + "psr/cache": "^3.0" }, - "type": "phpcodesniffer-standard", + "type": "library", "extra": { "branch-alias": { - "dev-master": "7.x-dev" + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { "psr-4": { - "SlevomatCodingStandard\\": "SlevomatCodingStandard" + "Symfony\\Contracts\\Cache\\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to caching", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], "support": { - "issues": "https://github.com/slevomat/coding-standard/issues", - "source": "https://github.com/slevomat/coding-standard/tree/7.2.1" + "source": "https://github.com/symfony/cache-contracts/tree/v3.3.0" }, "funding": [ { - "url": "https://github.com/kukulich", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2022-05-25T10:58:12+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { - "name": "squizlabs/php_codesniffer", - "version": "3.7.2", + "name": "symfony/config", + "version": "v6.3.2", "source": { "type": "git", - "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879" + "url": "https://github.com/symfony/config.git", + "reference": "b47ca238b03e7b0d7880ffd1cf06e8d637ca1467" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879", - "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879", + "url": "https://api.github.com/repos/symfony/config/zipball/b47ca238b03e7b0d7880ffd1cf06e8d637ca1467", + "reference": "b47ca238b03e7b0d7880ffd1cf06e8d637ca1467", "shasum": "" }, "require": { - "ext-simplexml": "*", - "ext-tokenizer": "*", - "ext-xmlwriter": "*", - "php": ">=5.4.0" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/filesystem": "^5.4|^6.0", + "symfony/polyfill-ctype": "~1.8" + }, + "conflict": { + "symfony/finder": "<5.4", + "symfony/service-contracts": "<2.5" }, "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + "symfony/event-dispatcher": "^5.4|^6.0", + "symfony/finder": "^5.4|^6.0", + "symfony/messenger": "^5.4|^6.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^5.4|^6.0" }, - "bin": [ - "bin/phpcs", - "bin/phpcbf" - ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } + "autoload": { + "psr-4": { + "Symfony\\Component\\Config\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Greg Sherwood", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", - "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", - "keywords": [ - "phpcs", - "standards", - "static analysis" - ], + "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", - "source": "https://github.com/squizlabs/PHP_CodeSniffer", - "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" + "source": "https://github.com/symfony/config/tree/v6.3.2" }, - "time": "2023-02-22T23:07:41+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-07-19T20:22:16+00:00" }, { - "name": "symfony/browser-kit", - "version": "v4.4.44", + "name": "symfony/css-selector", + "version": "v6.3.2", "source": { "type": "git", - "url": "https://github.com/symfony/browser-kit.git", - "reference": "2a1ff40723ef6b29c8229a860a9c8f815ad7dbbb" + "url": "https://github.com/symfony/css-selector.git", + "reference": "883d961421ab1709877c10ac99451632a3d6fa57" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2a1ff40723ef6b29c8229a860a9c8f815ad7dbbb", - "reference": "2a1ff40723ef6b29c8229a860a9c8f815ad7dbbb", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/883d961421ab1709877c10ac99451632a3d6fa57", + "reference": "883d961421ab1709877c10ac99451632a3d6fa57", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/dom-crawler": "^3.4|^4.0|^5.0", - "symfony/polyfill-php80": "^1.16" - }, - "require-dev": { - "symfony/css-selector": "^3.4|^4.0|^5.0", - "symfony/http-client": "^4.3|^5.0", - "symfony/mime": "^4.3|^5.0", - "symfony/process": "^3.4|^4.0|^5.0" - }, - "suggest": { - "symfony/process": "" + "php": ">=8.1" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\BrowserKit\\": "" + "Symfony\\Component\\CssSelector\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -20839,15 +20738,19 @@ "name": "Fabien Potencier", "email": "fabien@symfony.com" }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", + "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v4.4.44" + "source": "https://github.com/symfony/css-selector/tree/v6.3.2" }, "funding": [ { @@ -20863,56 +20766,35 @@ "type": "tidelift" } ], - "time": "2022-07-25T12:56:14+00:00" + "time": "2023-07-12T16:00:22+00:00" }, { - "name": "symfony/http-client", - "version": "v5.4.26", + "name": "symfony/dom-crawler", + "version": "v6.3.4", "source": { "type": "git", - "url": "https://github.com/symfony/http-client.git", - "reference": "19d48ef7f38e5057ed1789a503cd3eccef039bce" + "url": "https://github.com/symfony/dom-crawler.git", + "reference": "3fdd2a3d5fdc363b2e8dbf817f9726a4d013cbd1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/19d48ef7f38e5057ed1789a503cd3eccef039bce", - "reference": "19d48ef7f38e5057ed1789a503cd3eccef039bce", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/3fdd2a3d5fdc363b2e8dbf817f9726a4d013cbd1", + "reference": "3fdd2a3d5fdc363b2e8dbf817f9726a4d013cbd1", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/log": "^1|^2|^3", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/http-client-contracts": "^2.4", - "symfony/polyfill-php73": "^1.11", - "symfony/polyfill-php80": "^1.16", - "symfony/service-contracts": "^1.0|^2|^3" - }, - "provide": { - "php-http/async-client-implementation": "*", - "php-http/client-implementation": "*", - "psr/http-client-implementation": "1.0", - "symfony/http-client-implementation": "2.4" + "masterminds/html5": "^2.6", + "php": ">=8.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { - "amphp/amp": "^2.5", - "amphp/http-client": "^4.2.1", - "amphp/http-tunnel": "^1.0", - "amphp/socket": "^1.1", - "guzzlehttp/promises": "^1.4", - "nyholm/psr7": "^1.0", - "php-http/httplug": "^1.0|^2.0", - "php-http/message-factory": "^1.0", - "psr/http-client": "^1.0", - "symfony/dependency-injection": "^4.4|^5.0|^6.0", - "symfony/http-kernel": "^4.4.13|^5.1.5|^6.0", - "symfony/process": "^4.4|^5.0|^6.0", - "symfony/stopwatch": "^4.4|^5.0|^6.0" + "symfony/css-selector": "^5.4|^6.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\HttpClient\\": "" + "Symfony\\Component\\DomCrawler\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -20924,21 +20806,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", + "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", - "keywords": [ - "http" - ], "support": { - "source": "https://github.com/symfony/http-client/tree/v5.4.26" + "source": "https://github.com/symfony/dom-crawler/tree/v6.3.4" }, "funding": [ { @@ -20954,33 +20833,34 @@ "type": "tidelift" } ], - "time": "2023-07-03T12:14:50+00:00" + "time": "2023-08-01T07:43:40+00:00" }, { "name": "symfony/lock", - "version": "v4.4.46", + "version": "v6.3.2", "source": { "type": "git", "url": "https://github.com/symfony/lock.git", - "reference": "8b060dd4e10f05219698ceb3a4ad735b19c1be4f" + "reference": "cde6dbd72d217024b1049d42a4519e713e2f18af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/lock/zipball/8b060dd4e10f05219698ceb3a4ad735b19c1be4f", - "reference": "8b060dd4e10f05219698ceb3a4ad735b19c1be4f", + "url": "https://api.github.com/repos/symfony/lock/zipball/cde6dbd72d217024b1049d42a4519e713e2f18af", + "reference": "cde6dbd72d217024b1049d42a4519e713e2f18af", "shasum": "" }, "require": { - "php": ">=7.1.3", + "php": ">=8.1", "psr/log": "^1|^2|^3", - "symfony/polyfill-php80": "^1.16" + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { - "doctrine/dbal": "<2.7" + "doctrine/dbal": "<2.13", + "symfony/cache": "<6.2" }, "require-dev": { - "doctrine/dbal": "^2.7|^3.0", - "predis/predis": "~1.0" + "doctrine/dbal": "^2.13|^3.0", + "predis/predis": "^1.1|^2.0" }, "type": "library", "autoload": { @@ -21016,7 +20896,7 @@ "semaphore" ], "support": { - "source": "https://github.com/symfony/lock/tree/v4.4.46" + "source": "https://github.com/symfony/lock/tree/v6.3.2" }, "funding": [ { @@ -21032,34 +20912,32 @@ "type": "tidelift" } ], - "time": "2022-09-19T08:41:12+00:00" + "time": "2023-06-28T15:25:15+00:00" }, { "name": "symfony/phpunit-bridge", - "version": "v5.4.26", + "version": "v6.3.2", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "d04639b395e25efa4260fc5b12a9fa1eafb38a64" + "reference": "e020e1efbd1b42cb670fcd7d19a25abbddba035d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/d04639b395e25efa4260fc5b12a9fa1eafb38a64", - "reference": "d04639b395e25efa4260fc5b12a9fa1eafb38a64", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/e020e1efbd1b42cb670fcd7d19a25abbddba035d", + "reference": "e020e1efbd1b42cb670fcd7d19a25abbddba035d", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/deprecation-contracts": "^2.1|^3" + "php": ">=7.1.3" }, "conflict": { "phpunit/phpunit": "<7.5|9.1.2" }, "require-dev": { - "symfony/error-handler": "^4.4|^5.0|^6.0" - }, - "suggest": { - "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/error-handler": "^5.4|^6.0", + "symfony/polyfill-php81": "^1.27" }, "bin": [ "bin/simple-phpunit" @@ -21099,7 +20977,7 @@ "description": "Provides utilities for PHPUnit, especially user deprecation notices management", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.26" + "source": "https://github.com/symfony/phpunit-bridge/tree/v6.3.2" }, "funding": [ { @@ -21115,7 +20993,7 @@ "type": "tidelift" } ], - "time": "2023-07-12T15:44:31+00:00" + "time": "2023-07-12T16:00:22+00:00" }, { "name": "theseer/tokenizer", @@ -21166,27 +21044,94 @@ } ], "time": "2021-07-28T10:34:58+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" } ], "aliases": [], "minimum-stability": "dev", "stability-flags": { "drupal/block_field": 5, + "drupal/ckeditor5_allowed_html": 20, "drupal/clone_nodes": 20, "drupal/config_readonly": 10, + "drupal/config_update": 15, "drupal/date_facet_drilldown": 20, "drupal/file_delete_ui": 10, "drupal/flag": 10, "drupal/inline_entity_form": 5, + "drupal/media_entity_browser": 15, + "drupal/menu_breadcrumb": 15, + "drupal/migrate_absolute_links": 20, + "drupal/scheduler_content_moderation_integration": 10, "drupal/search_api_location": 15, "drupal/shs": 5, - "drupal/telephone_plus": 20, + "drupal/timefield_d10": 20, "drupal/ultimate_cron": 15, - "previousnext/phpunit-finder": 15 + "drupal/webform": 10, + "drupal/easy_install_d10": 20 }, "prefer-stable": true, "prefer-lowest": false, - "platform": [], + "platform": { + "composer-runtime-api": "*" + }, "platform-dev": [], - "plugin-api-version": "2.2.0" + "plugin-api-version": "2.6.0" } diff --git a/cronjob.sh b/cronjob.sh new file mode 100644 index 000000000..a076119e0 --- /dev/null +++ b/cronjob.sh @@ -0,0 +1,22 @@ +#!/usr/bin/env bash +# +# nicsdru-logging/scripts/example.cronjob.sh +# +# Calls shiplog.sh to ship latest log entries from various logs +# to logz.io. + +# /bin/bash /app/nicsdru-logging/scripts/shiplog.sh "[LOG_NAME]" "[LOG_PATH]" "[LOG_DATE_PATTERN]" "[LOG_TYPE]" + +# Ship /var/log/access.log generated by nginx. +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "access" "/var/log/access.log" "$(date +%d/%b/%Y:)" "nginx_access" + +# Uncomment following line to ship drupal.log generated by D9 filelog module. +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-infolibrarynics" "/app/log/infolibrarynics/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-pressclippingsnics" "/app/log/pressclippingsnics/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-parolecomni" "/app/log/parolecomni/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-lgbcni" "/app/log/lgbcni/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-semcommittee" "/app/log/semcommittee/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-boundarycommission" "/app/log/boundarycommission/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-pacni" "/app/log/pacni/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-interchangeni" "/app/log/interchangeni/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-industrialcourt" "/app/log/industrialcourt/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" diff --git a/maestro.yml b/maestro.yml new file mode 100644 index 000000000..52d3d6fd7 --- /dev/null +++ b/maestro.yml @@ -0,0 +1,16 @@ +# Add additional hosting providers to the services below or comment out to prevent a +# defined provider from running. +services: + hosting.platformSH: + class: 'Maestro\Hosting\Provider\PlatformSH' + tags: + - { name: maestro.hosting } + hosting.lando: + class: 'Maestro\Hosting\Provider\Lando' + tags: + - { name: maestro.hosting } + hosting.common: + class: 'Maestro\Hosting\Provider\Common' + tags: + - { name: maestro.hosting } + diff --git a/nicsdru-logging/LICENSE b/nicsdru-logging/LICENSE new file mode 100644 index 000000000..dc63df57d --- /dev/null +++ b/nicsdru-logging/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Digital Shared Services + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/nicsdru-logging/README.md b/nicsdru-logging/README.md new file mode 100644 index 000000000..6f1d38d10 --- /dev/null +++ b/nicsdru-logging/README.md @@ -0,0 +1,263 @@ +# Send Platform.sh logs to Logz.io + +Platform.sh log files are stored on disk (in /var/log) and trimmed +to 100 MB automatically. For busy environments this means that logs +may only contain entries for the last 24 hours or even less +depending on the volume of log entries an environment is generating. +By shipping logs to a centralised logging service like Logz.io, it +makes it possible to retain logs for a longer period as well as +having nice tools to search through the logs. + +Platform.sh grid hosted environments currently do not support +installation of logging services or daemons. For example, syslog nor +rsyslog are available. To get around this, we can use cron to run a +script which periodically uploads batches of log entries using cURL. + +This solution is loosely based on +[this solution for uploading logs to Amazon S3 storage](https://gitlab.com/contextualcode/platformsh-store-logs-at-s3/). + +The solution only ever uploads the newest +log entries rather than uploading an entire log file. This is +necessary because log management solutions set a maximum limit on +the size of files that can be uploaded in a single request. + +## 1. Add nicsdru-logging repo to the project root using `git subtree` + +[git subtree](https://www.atlassian.com/git/tutorials/git-subtree) lets you nest one repository inside another as a +sub-directory. + +In your local copy of a platform hosted Drupal project, +run the following command in the project root (which should contain +the `.platform/` directory and the `.platform.app.yaml` file): + +```shell +git subtree add --prefix nicsdru-logging git@github.com:dof-dss/nicsdru-logging.git main --squash +``` + +This will generate a couple of new commits into your project repo. + +### Updating the repo + +If you want to later update to the latest version of the nicsdru-logging +repo, run the following command in the project root: + +```shell +git subtree pull --prefix nicsdru-logging git@github.com:dof-dss/nicsdru-logging.git main --squash +``` + +## 2. Copy example.cronjob.sh to cronjob.sh + +Copy `nicsdru-logging/scripts/example.cronjob.sh` into the project root renaming to `cronjob.sh`. + +```shell +cp nicsdru-logging/scripts/example.cronjob.sh cronjob.sh +``` + +The directory structure for a typical dof-dss D9 project should +end up looking something like this: + +``` +├── .circleci/ +├── .platform/ +│ ├── solr_config +│ ├── routes.yaml +│ └── services.yaml +├── config/ +├── drush/ +├── nicsdru-logging/ +│ └── scripts/ +│ │ ├── example.cronjob.sh +│ │ └── shiplog.sh +│ └── README.md +├── private/ +├── vendor/ +├── web/ +├── .platform.app.yaml +├── composer.json +├── composer.lock +├── cronjob.sh +├── LICENSE +├── phpcs.sh +└── README.md +``` + + +## 3. Make the new `cronjob.sh` file executable + +```shell +chmod +x cronjob.sh +``` + +## 4. Edit `cronjob.sh` to configure log files to be shipped + +`cronjob.sh` contains calls to `shiplog.sh` to ship specifc logs in the following format: + +```shell +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "LOG_NAME" "LOG_PATH" "LOG_DATE_PATTERN" "LOG_TYPE" +``` + +Where: + +- `LOG_NAME` is unique name of a log (e.g "access"). NO SPACES! +- `LOG_PATH` is the full path to source log file to be shipped (e.g. "/var/log/access.log") +- `LOG_DATE_PATTERN` is a date formatted to match datetime stamps in individual log entries +(e.g. "$(date +%d/%b/%Y:)") +- `LOG_TYPE` identifies [the type of log file to Logz.io](https://docs.logz.io/user-guide/log-shipping/built-in-log-types.html) (e.g. "nginx_access"). NO SPACES! + +For example, the following line ships the /var/log/access.log generated by nginx. + +```shell +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "access" "/var/log/access.log" "$(date +%d/%b/%Y:)" "nginx_access" +``` + +*For D9 sites*, with the [filelog contrib module](https://www.drupal.org/project/filelog) +installed, ensure the module is configured to write to logs to `/app/log` and then +uncomment or add the following line to `cronjob.sh`: + +```shell +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal" "/app/log/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +``` + +(Note the LOG_TYPE specified is "drupal" which is a custom log type we have asked +Logz.io to configure for us.) + +*For D9 multisite projects* using the [filelog contrib module](https://www.drupal.org/project/filelog), +ensure the module is configured on each site to write to logs to a sub-directory of +`/app/log` - for example `/app/log/sitename` and then add a line like the +following to ship the drupal.log for that specific site: + +```shell +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-sitename" "/app/log/sitename/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +``` + +## 5. Create a writable mount in .platform.app.yaml for storing logs + +The normal log directory `/var/log` is not writeable. So we create +a writeable mount in `.platform.app.yaml` for the shiplog script to write logs to: + +```yaml +mounts: + '/log': + source: local + source_path: 'log' +``` + +## 6. Add cron job in .platform.app.yaml + +```yaml +crons: + # Log shipping cron. + logging: + spec: '*/5 * * * *' + commands: + start: '/bin/bash /app/cronjob.sh' + shutdown_timeout: 290 +``` + +## 7. Create LOGZ_TOKEN and LOGZ_URL environment variables + +Obtain an account token from Logz.io. Then create a project +environment variable LOGZ_TOKEN to store the token securely. + +```shell +platform variable:create -l environment -e [ENVIRONMENT_NAME] --prefix env: --name LOGZ_TOKEN --value '[LOGZ_IO_TOKEN]' --visible-runtime true --inheritable false --sensitive true +``` + +**Optionally**, set the "listener URL" for sending logs to +Logz.io. By default the URL is `https://listener-uk.logz.io:8022` +You can override this by setting the project environment variable +LOGZ_URL. The URL should begin with "https://" with no end +forward slash. + +```shell +platform variable:create -l environment -e [ENVIRONMENT_NAME] --prefix env: --name LOGZ_URL --value 'https://listener-uk.logz.io:8022' --visible-runtime true --inheritable true --sensitive false +``` + +## 8. Deploy to Platform.sh and verify logs are being shipped + +Cron will run cronjob.sh to ship latest log entries to Logz.io. +You should start to see log entries arrive in Logz.io's Kibana +interface. If you don't, there are a number of things to check. + +### Check cron is running + +Run this platform CLI command +```shell +$ platform activity:list +``` +And gives output like this ... + +```shell +Activities on the project NIDirect-D8 (wcjm3mu7bacfm), environment logz (type: development): ++---------------+---------------------------+----------------------------------+----------+----------+---------+ +| ID | Created | Description | Progress | State | Result | ++---------------+---------------------------+----------------------------------+----------+----------+---------+ +| cc3s4jkfkb5ke | 2022-05-11T16:01:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| yado3ie3w4rqu | 2022-05-11T15:56:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| tuckl2vxeecss | 2022-05-11T15:51:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| z7jx33erazc3a | 2022-05-11T15:46:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| iq43xajukyn5e | 2022-05-11T15:41:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| q64gu6qqiw6s4 | 2022-05-11T15:36:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| dc2hifwrzgm6y | 2022-05-11T15:31:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| 3l737f5rmp6m4 | 2022-05-11T15:26:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| kuydxo23aeczy | 2022-05-11T15:21:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| 6jnwgge2ufivk | 2022-05-11T15:16:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | ++---------------+---------------------------+----------------------------------+----------+----------+---------+ +``` + +### SSH onto the environment and check logs are being generated in the `/app/log` mount + +The logging scripts create and rotate their own log files in the `/app/log` +mounted directory. + +If the project is a D9 project with the filelog module enabled and you +have configured `cronjob.sh` to ship the access and drupal logs (as described above), +then you should see something like the following in `/app/log`: + +```shell +web@nidirect.0:~$ cd /app/log +web@nidirect.0:~/log$ ls -al +total 88 +drwxr-xr-x 2 web web 4096 May 11 16:26 . +drwxr-xr-x 18 web web 514 May 11 12:21 .. +-r--r--r-- 1 web web 686 Apr 13 16:41 .htaccess +-rw-r--r-- 1 web web 15743 May 11 12:31 2022-05-11-access.log +-rw-r--r-- 1 web web 8038 May 11 12:31 2022-05-11-drupal.log +-rw-rw-r-- 1 web web 51256 May 11 12:29 drupal.log +web@nidirect.0:~/log$ +``` + +The logs prefixed with a YYYY-MM-DD format date are created by `shiplog.sh` +and rotated daily. The drupal.log is created by the filelog module which +can also be rotated daily (depending on module settings). + +### If all else fails, run `cronjob.sh` from the command-line and check the output + +```shell +/bin/bash /app/cronjob.sh +``` + +Healthy output looks like this ... + +```shell +web@nidirect.0:~$ /bin/bash /app/cronjob.sh +Shipping log ... +Shipping today's newest log entries from /var/log/access.log ... +Creating 2022-05-11-access.log ... +2022-05-11-access.log already exists +Deleting 2022-05-10-access.log ... +2022-05-10-access.log does not exist +Retrieving latest log entries from /var/log/access.log and writing to 2022-05-11-access.log +Shipping latest log entries from 2022-05-11-access.log to Logz.io using cURL +Log shipping succeeded with: 200 +Shipping log ... +Shipping today's newest log entries from /app/log/drupal.log ... +Creating 2022-05-11-drupal.log ... +2022-05-11-drupal.log already exists +Deleting 2022-05-10-drupal.log ... +2022-05-10-drupal.log does not exist +Retrieving latest log entries from /app/log/drupal.log and writing to 2022-05-11-drupal.log +Shipping latest log entries from 2022-05-11-drupal.log to Logz.io using cURL +Log shipping succeeded with: 200 +``` + diff --git a/nicsdru-logging/scripts/example.cronjob.sh b/nicsdru-logging/scripts/example.cronjob.sh new file mode 100755 index 000000000..6f5e7835c --- /dev/null +++ b/nicsdru-logging/scripts/example.cronjob.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +# +# nicsdru-logging/scripts/example.cronjob.sh +# +# Calls shiplog.sh to ship latest log entries from various logs +# to logz.io. + +# /bin/bash /app/nicsdru-logging/scripts/shiplog.sh "[LOG_NAME]" "[LOG_PATH]" "[LOG_DATE_PATTERN]" "[LOG_TYPE]" + +# Ship /var/log/access.log generated by nginx. +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "access" "/var/log/access.log" "$(date +%d/%b/%Y:)" "nginx_access" + +# Uncomment following line to ship drupal.log generated by D9 filelog module. +# /bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal" "/app/log/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" diff --git a/nicsdru-logging/scripts/shiplog.sh b/nicsdru-logging/scripts/shiplog.sh new file mode 100755 index 000000000..1f0b6f5f9 --- /dev/null +++ b/nicsdru-logging/scripts/shiplog.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env bash +# +# logging/scripts/shiplog.sh +# +# Ship today's log entries from a specified log to logz.io +# Usage: /bin/bash /app/logging/scripts/shiplog.sh [LOG_NAME] [LOG_PATH] [LOG_DATE_PATTERN] [LOG_TYPE] +# eg: /bin/bash /app/logging/scripts/shiplog.sh "access" "/var/log/access.log" "$(date +%d/%b/%Y:)" "nginx_access"' + +echo "Shipping log ..." + +# LOGZ_TOKEN environment variable is required for this script to run. +if [ -z "$LOGZ_TOKEN" ]; then + echo "LOGZ_TOKEN is not set - exiting" + exit 1 +fi + +# Set LOGZ_URL if environment variable is not set. +if [ -z "$LOGZ_URL" ]; then + LOGZ_URL="https://listener-uk.logz.io:8022" +fi + +# Mount for logs must exist or exit script. +cd /app/log || exit + +LOG_NAME=$1 +LOG_PATH=$2 +LOG_DATE_PATTERN=$3 +LOG_TYPE=$4 + +# Script will be creating logs for today and removing yesterday's logs +TODAY_DATE=$(date +%Y-%m-%d) +YESTERDAY_DATE=$(date --date="yesterday" +%Y-%m-%d) + +# Check 4 arguments passed. +if [ $# -ne 4 ]; then + echo "shiplog called with incorrect number of arguments. Expected 4, got $#." + echo 'Usage: ./shiplog.sh [LOG_NAME] [LOG_PATH] [LOG_DATE_PATTERN] [LOG_TYPE]' + echo ' eg: ./shiplog.sh "access" "/var/log/access.log" "$(date +%d/%b/%Y:)" "nginx_access"' + exit 1 +fi + +if [ -f "$LOG_PATH" ]; then + + echo "Shipping today's newest log entries from $LOG_PATH ..." + + # Create today's log file. + todays_log="${TODAY_DATE}-${LOG_NAME}.log" + echo "Creating ${todays_log} ..." + if [ ! -f ./"${todays_log}" ]; then + touch ./"${todays_log}" + echo "${todays_log} created" + else + echo "${todays_log} already exists" + fi + + # Delete yesterdays log files. + yesterdays_log="${YESTERDAY_DATE}-${LOG_NAME}.log" + + echo "Deleting ${yesterdays_log} ..." + + if [ -f ./"${yesterdays_log}" ]; then + rm "${yesterdays_log}" + echo "${yesterdays_log} deleted" + else + echo "${yesterdays_log} does not exist" + fi + + # Get latest log entries and ship to logz.io. + echo "Retrieving latest log entries from ${LOG_PATH} and writing to ${todays_log}" + cat "$LOG_PATH" | grep "$LOG_DATE_PATTERN" > ./"$LOG_NAME"-latest.log + diff --changed-group-format='%>' --unchanged-group-format='' "$todays_log" "$LOG_NAME-latest.log" > "$LOG_NAME-new.log" + cat "$LOG_NAME-new.log" >> "$todays_log" + echo "Shipping latest log entries from ${todays_log} to Logz.io using cURL" + http_response=$(curl -T "$LOG_NAME-new.log" -s -w "%{response_code}" $LOGZ_URL/file_upload/"${LOGZ_TOKEN}"/"${LOG_TYPE}") + exit_code=$? + + # Clean up temporary log files. + rm "$LOG_NAME-latest.log" "$LOG_NAME-new.log" + + if [ "$exit_code" != "0" ]; then + echo "The cURL command failed with: $exit_code" + elif [ "$http_response" != "200" ]; then + echo "Log shipping failed with: $http_response" + fi + + if [ "$exit_code" != "0" ] || [ "$http_response" != "200" ]; then + exit 1 + fi + + echo "Log shipping succeeded with: $http_response" +else + echo "${LOG_PATH} does not exist" + exit 1 +fi + +exit 0 diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..0c6ea9444 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1232 @@ +{ + "requires": true, + "lockfileVersion": 1, + "dependencies": { + "@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==" + }, + "arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" + }, + "archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", + "requires": { + "file-type": "^4.2.0" + }, + "dependencies": { + "file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==" + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "bin-build": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", + "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", + "requires": { + "decompress": "^4.0.0", + "download": "^6.2.2", + "execa": "^0.7.0", + "p-map-series": "^1.0.0", + "tempfile": "^2.0.0" + } + }, + "bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "requires": { + "execa": "^0.7.0", + "executable": "^4.1.0" + } + }, + "bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "requires": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^3.0.0" + } + } + } + }, + "bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "requires": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + } + }, + "bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "requires": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "dependencies": { + "download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "requires": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + } + }, + "file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==" + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + }, + "got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "requires": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + } + }, + "p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==" + }, + "p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "requires": { + "p-timeout": "^2.0.1" + } + }, + "p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "requires": { + "p-finally": "^1.0.0" + } + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==" + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "requires": { + "prepend-http": "^2.0.0" + } + } + } + }, + "bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "requires": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "requires": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" + }, + "buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==" + }, + "cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", + "requires": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + }, + "lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==" + } + } + }, + "caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "requires": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" + }, + "decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "requires": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "requires": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + } + }, + "decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "requires": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "dependencies": { + "file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==" + } + } + }, + "decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "requires": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + } + }, + "decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", + "requires": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "dependencies": { + "file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==" + } + } + }, + "download": { + "version": "6.2.5", + "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", + "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", + "requires": { + "caw": "^2.0.0", + "content-disposition": "^0.5.2", + "decompress": "^4.0.0", + "ext-name": "^5.0.0", + "file-type": "5.2.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^7.0.0", + "make-dir": "^1.0.0", + "p-event": "^1.0.0", + "pify": "^3.0.0" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + } + }, + "duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + } + } + }, + "executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "requires": { + "pify": "^2.2.0" + } + }, + "ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "requires": { + "mime-db": "^1.28.0" + } + }, + "ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "requires": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + } + }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "requires": { + "pend": "~1.2.0" + } + }, + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==" + }, + "filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==" + }, + "filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + } + }, + "find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "requires": { + "semver-regex": "^2.0.0" + } + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "requires": { + "npm-conf": "^1.1.0" + } + }, + "get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "requires": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + } + }, + "got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "requires": { + "decompress-response": "^3.2.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-plain-obj": "^1.1.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "p-cancelable": "^0.3.0", + "p-timeout": "^1.1.1", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "url-parse-lax": "^1.0.0", + "url-to-options": "^1.0.1" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" + } + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==" + }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "requires": { + "has-symbol-support-x": "^1.4.1" + } + }, + "http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==" + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", + "requires": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + } + }, + "is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==" + }, + "is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "requires": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + } + }, + "jpegoptim-bin": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/jpegoptim-bin/-/jpegoptim-bin-7.1.0.tgz", + "integrity": "sha512-D4F/ML4T36A8cit5Wuwy5aaRIxqRCgkvZL1F01lKL30nHW/Rnq3f5fnsSuxSE8BW2Z31ajS2L6Rvt65rTxSCbA==", + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0" + } + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==" + }, + "keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "requires": { + "json-buffer": "3.0.0" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + } + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "requires": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "dependencies": { + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==" + }, + "sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", + "requires": { + "is-plain-obj": "^1.0.0" + } + } + } + }, + "npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "requires": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" + } + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "requires": { + "path-key": "^2.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "requires": { + "arch": "^2.1.0" + } + }, + "p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==" + }, + "p-event": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", + "integrity": "sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==", + "requires": { + "p-timeout": "^1.1.1" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" + }, + "p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==" + }, + "p-map-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", + "integrity": "sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==", + "requires": { + "p-reduce": "^1.0.0" + } + }, + "p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==" + }, + "p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==", + "requires": { + "p-finally": "^1.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" + }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "requires": { + "pinkie": "^2.0.0" + } + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "requires": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "requires": { + "commander": "^2.8.1" + } + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + }, + "semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==" + }, + "semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==", + "requires": { + "semver": "^5.3.0" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "requires": { + "sort-keys": "^1.0.0" + } + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "requires": { + "is-natural-number": "^4.0.1" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" + }, + "strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "requires": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + } + }, + "temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" + }, + "tempfile": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", + "integrity": "sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==", + "requires": { + "temp-dir": "^1.0.0", + "uuid": "^3.0.1" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==" + }, + "to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" + }, + "trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "requires": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==", + "requires": { + "prepend-http": "^1.0.1" + } + }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + } + } +} diff --git a/project/config/boundarycommission/.gitkeep b/project/config/boundarycommission/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/project/config/boundarycommission/config/.htaccess b/project/config/boundarycommission/config/.htaccess new file mode 100644 index 000000000..d43687965 --- /dev/null +++ b/project/config/boundarycommission/config/.htaccess @@ -0,0 +1,27 @@ +# Deny all requests from Apache 2.4+. + + Require all denied + + +# Deny all requests from Apache 2.0-2.2. + + Deny from all + + +# Turn off all options we don't need. +Options -Indexes -ExecCGI -Includes -MultiViews + +# Set the catch-all handler to prevent scripts from being executed. +SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006 + + # Override the handler again if we're run later in the evaluation list. + SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003 + + +# If we know how to do it safely, disable the PHP engine entirely. + + php_flag engine off + + + php_flag engine off + \ No newline at end of file diff --git a/project/config/boundarycommission/config/admin_toolbar.settings.yml b/project/config/boundarycommission/config/admin_toolbar.settings.yml new file mode 100644 index 000000000..5965a3170 --- /dev/null +++ b/project/config/boundarycommission/config/admin_toolbar.settings.yml @@ -0,0 +1 @@ +menu_depth: 4 diff --git a/project/config/boundarycommission/config/admin_toolbar_tools.settings.yml b/project/config/boundarycommission/config/admin_toolbar_tools.settings.yml new file mode 100644 index 000000000..2f4de2018 --- /dev/null +++ b/project/config/boundarycommission/config/admin_toolbar_tools.settings.yml @@ -0,0 +1,2 @@ +max_bundle_number: 20 +hoverintent_functionality: true diff --git a/project/config/boundarycommission/config/adminimal_theme.settings.yml b/project/config/boundarycommission/config/adminimal_theme.settings.yml new file mode 100644 index 000000000..375ca570d --- /dev/null +++ b/project/config/boundarycommission/config/adminimal_theme.settings.yml @@ -0,0 +1,11 @@ +features: + node_user_picture: 1 + comment_user_picture: true + comment_user_verification: true + favicon: 1 +logo: + use_default: 1 +favicon: + use_default: 1 +custom_css: 1 +disable_google_fonts: 0 diff --git a/project/config/boundarycommission/config/automated_cron.settings.yml b/project/config/boundarycommission/config/automated_cron.settings.yml new file mode 100644 index 000000000..3fc5821fe --- /dev/null +++ b/project/config/boundarycommission/config/automated_cron.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs +interval: 10800 diff --git a/project/config/boundarycommission/config/blazy.settings.yml b/project/config/boundarycommission/config/blazy.settings.yml new file mode 100644 index 000000000..0ed8500f6 --- /dev/null +++ b/project/config/boundarycommission/config/blazy.settings.yml @@ -0,0 +1,20 @@ +_core: + default_config_hash: hQu_5Svi0TQ5SE3dzjC55vecrEOKTYurvK-K7IJ8oXk +admin_css: true +fx: '' +noscript: false +responsive_image: false +one_pixel: true +placeholder: '' +extras: { } +blazy: + loadInvisible: false + offset: 100 + saveViewportOffsetDelay: 50 + validateDelay: 25 + container: '' +io: + unblazy: false + rootMargin: 0px + threshold: '0' + disconnect: false diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_breadcrumbs.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_breadcrumbs.yml new file mode 100644 index 000000000..bd358adb3 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_breadcrumbs.yml @@ -0,0 +1,22 @@ +uuid: fa57551b-e824-48f9-bdd0-ce9ab02a7ccc +langcode: en +status: true +dependencies: + module: + - system + theme: + - adminimal_theme +_core: + default_config_hash: 8by5KRsb7ZpmjHj0ms1d7xAG_xH54AWsOX6spDLJ59U +id: adminimal_theme_breadcrumbs +theme: adminimal_theme +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_content.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_content.yml new file mode 100644 index 000000000..386b17680 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_content.yml @@ -0,0 +1,22 @@ +uuid: 3aa53339-89d5-453d-8169-f0250990d76b +langcode: en +status: true +dependencies: + module: + - system + theme: + - adminimal_theme +_core: + default_config_hash: 80N66GdzEvwqi1m-_GZ-ulkk8AJG9beoXcZ4-pMVKjI +id: adminimal_theme_content +theme: adminimal_theme +region: content +weight: 0 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_help.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_help.yml new file mode 100644 index 000000000..fc558151f --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_help.yml @@ -0,0 +1,22 @@ +uuid: c27f0f09-7d43-4832-935a-474c330e4697 +langcode: en +status: true +dependencies: + module: + - help + theme: + - adminimal_theme +_core: + default_config_hash: PfozGAnWQRNy00G6KEnZjIu9b2lGuWg-j-GT_-Ejglc +id: adminimal_theme_help +theme: adminimal_theme +region: help +weight: 0 +provider: null +plugin: help_block +settings: + id: help_block + label: Help + label_display: '0' + provider: help +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_local_actions.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_local_actions.yml new file mode 100644 index 000000000..249017858 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_local_actions.yml @@ -0,0 +1,20 @@ +uuid: 173c908e-68bf-47f8-a80c-f53c69502e70 +langcode: en +status: true +dependencies: + theme: + - adminimal_theme +_core: + default_config_hash: ik4PTMlBD0MWansnSMpSXq5SUlWRJ1IVVt6C7AIbQmc +id: adminimal_theme_local_actions +theme: adminimal_theme +region: content +weight: -10 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + label_display: '0' + provider: core +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_login.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_login.yml new file mode 100644 index 000000000..9a6948d6c --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_login.yml @@ -0,0 +1,22 @@ +uuid: bd629e25-ccab-4a81-81ec-c6fd2a851680 +langcode: en +status: true +dependencies: + module: + - user + theme: + - adminimal_theme +_core: + default_config_hash: 862sIulDdHmF0vBU1s2j2_a_CwkxursrL0pIrMDzzOg +id: adminimal_theme_login +theme: adminimal_theme +region: content +weight: 10 +provider: null +plugin: user_login_block +settings: + id: user_login_block + label: 'User login' + label_display: visible + provider: user +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_messages.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_messages.yml new file mode 100644 index 000000000..221c0b596 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_messages.yml @@ -0,0 +1,22 @@ +uuid: b08cae97-fbfc-4f36-9eaf-2929a867dd50 +langcode: en +status: true +dependencies: + module: + - system + theme: + - adminimal_theme +_core: + default_config_hash: YqKTtloWJ8FjLtfVNfrHaK6kVgxT67lC1cJ3j6i6WLo +id: adminimal_theme_messages +theme: adminimal_theme +region: highlighted +weight: 0 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_page_title.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_page_title.yml new file mode 100644 index 000000000..a080ed0aa --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_page_title.yml @@ -0,0 +1,20 @@ +uuid: 47a5c8ac-32f5-482b-bc5a-e81f8a781164 +langcode: en +status: true +dependencies: + theme: + - adminimal_theme +_core: + default_config_hash: Z3nlZUh2mSJP3apMrJWt-duS-aLyP79rcfu_0wpPmDs +id: adminimal_theme_page_title +theme: adminimal_theme +region: header +weight: -30 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + label_display: '0' + provider: core +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_primary_local_tasks.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_primary_local_tasks.yml new file mode 100644 index 000000000..30426cec2 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_primary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: c216517d-b43a-49b2-901f-d599fc752abd +langcode: en +status: true +dependencies: + theme: + - adminimal_theme +_core: + default_config_hash: CyX_aDKAka2_eihevNLscCHDYrzDgIqwWzFVEFRKIww +id: adminimal_theme_primary_local_tasks +theme: adminimal_theme +region: header +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Primary tabs' + label_display: '0' + provider: core + primary: true + secondary: false +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_secondary_local_tasks.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_secondary_local_tasks.yml new file mode 100644 index 000000000..b6c5f25ae --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_secondary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: c5070e32-91ad-4a5f-9973-dba20e15c4f4 +langcode: en +status: true +dependencies: + theme: + - adminimal_theme +_core: + default_config_hash: DJ7Om1C2xWr2GI8CjZaZtyWpP-0S3hRR3oROZl1oesc +id: adminimal_theme_secondary_local_tasks +theme: adminimal_theme +region: pre_content +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Secondary tabs' + label_display: '0' + provider: core + primary: false + secondary: true +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.breadcrumbs.yml b/project/config/boundarycommission/config/block.block.breadcrumbs.yml new file mode 100644 index 000000000..46091512b --- /dev/null +++ b/project/config/boundarycommission/config/block.block.breadcrumbs.yml @@ -0,0 +1,24 @@ +uuid: a854a1da-d141-468c-ab8e-9dd46fd681af +langcode: en +status: true +dependencies: + module: + - system + theme: + - boundarycommission_theme +id: breadcrumbs +theme: boundarycommission_theme +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + label_display: '0' + provider: system +visibility: + request_path: + id: request_path + negate: true + pages: '' diff --git a/project/config/boundarycommission/config/block.block.claro_breadcrumbs.yml b/project/config/boundarycommission/config/block.block.claro_breadcrumbs.yml new file mode 100644 index 000000000..51b660cee --- /dev/null +++ b/project/config/boundarycommission/config/block.block.claro_breadcrumbs.yml @@ -0,0 +1,22 @@ +uuid: ecaaa760-0bac-4d65-b72f-300d608bc500 +langcode: en +status: true +dependencies: + module: + - system + theme: + - claro +_core: + default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A +id: claro_breadcrumbs +theme: claro +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.claro_content.yml b/project/config/boundarycommission/config/block.block.claro_content.yml new file mode 100644 index 000000000..dcb0694f5 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.claro_content.yml @@ -0,0 +1,22 @@ +uuid: 27f42135-04fb-4efa-95e0-c1afda8bbf71 +langcode: en +status: true +dependencies: + module: + - system + theme: + - claro +_core: + default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0 +id: claro_content +theme: claro +region: content +weight: 0 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.claro_help.yml b/project/config/boundarycommission/config/block.block.claro_help.yml new file mode 100644 index 000000000..0fab11cbf --- /dev/null +++ b/project/config/boundarycommission/config/block.block.claro_help.yml @@ -0,0 +1,22 @@ +uuid: ed93326c-f57a-45ac-b38d-01a682cd5191 +langcode: en +status: true +dependencies: + module: + - help + theme: + - claro +_core: + default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM +id: claro_help +theme: claro +region: help +weight: 0 +provider: null +plugin: help_block +settings: + id: help_block + label: Help + label_display: '0' + provider: help +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.claro_local_actions.yml b/project/config/boundarycommission/config/block.block.claro_local_actions.yml new file mode 100644 index 000000000..a5c3024ef --- /dev/null +++ b/project/config/boundarycommission/config/block.block.claro_local_actions.yml @@ -0,0 +1,20 @@ +uuid: b351e7c4-3092-4061-bd88-d1b4988be71c +langcode: en +status: true +dependencies: + theme: + - claro +_core: + default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0 +id: claro_local_actions +theme: claro +region: content +weight: -10 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + label_display: '0' + provider: core +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.claro_messages.yml b/project/config/boundarycommission/config/block.block.claro_messages.yml new file mode 100644 index 000000000..e158b07d0 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.claro_messages.yml @@ -0,0 +1,22 @@ +uuid: 19a86277-3e20-4f15-bce4-04d5e774cab7 +langcode: en +status: true +dependencies: + module: + - system + theme: + - claro +_core: + default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg' +id: claro_messages +theme: claro +region: highlighted +weight: 0 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.claro_page_title.yml b/project/config/boundarycommission/config/block.block.claro_page_title.yml new file mode 100644 index 000000000..75f80f67c --- /dev/null +++ b/project/config/boundarycommission/config/block.block.claro_page_title.yml @@ -0,0 +1,20 @@ +uuid: 0b3c13a3-530e-430f-9d55-d83f54249d7c +langcode: en +status: true +dependencies: + theme: + - claro +_core: + default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs +id: claro_page_title +theme: claro +region: header +weight: -30 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + label_display: '0' + provider: core +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.claro_primary_local_tasks.yml b/project/config/boundarycommission/config/block.block.claro_primary_local_tasks.yml new file mode 100644 index 000000000..1e8cbc0ed --- /dev/null +++ b/project/config/boundarycommission/config/block.block.claro_primary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: 9f7c3497-4389-4bf1-970f-168085ade4d6 +langcode: en +status: true +dependencies: + theme: + - claro +_core: + default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw +id: claro_primary_local_tasks +theme: claro +region: header +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Primary tabs' + label_display: '0' + provider: core + primary: true + secondary: false +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.claro_secondary_local_tasks.yml b/project/config/boundarycommission/config/block.block.claro_secondary_local_tasks.yml new file mode 100644 index 000000000..ac7d8fc04 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.claro_secondary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: d9b1893e-78d4-4a0d-a724-d17a1bce301f +langcode: en +status: true +dependencies: + theme: + - claro +_core: + default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4 +id: claro_secondary_local_tasks +theme: claro +region: pre_content +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Secondary tabs' + label_display: '0' + provider: core + primary: false + secondary: true +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.contactinformation.yml b/project/config/boundarycommission/config/block.block.contactinformation.yml new file mode 100644 index 000000000..5a3fa71e6 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.contactinformation.yml @@ -0,0 +1,25 @@ +uuid: 8010f069-0b84-4a33-8b38-319b44c4bd0b +langcode: en +status: true +dependencies: + content: + - 'block_content:basic_block:e8393aa3-c868-4d44-8f46-4f60aa59fb48' + module: + - block_content + theme: + - boundarycommission_theme +id: contactinformation +theme: boundarycommission_theme +region: footer_first +weight: 0 +provider: null +plugin: 'block_content:e8393aa3-c868-4d44-8f46-4f60aa59fb48' +settings: + id: 'block_content:e8393aa3-c868-4d44-8f46-4f60aa59fb48' + label: 'Contact Information' + label_display: '0' + provider: block_content + status: true + info: '' + view_mode: full +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.datepublished.yml b/project/config/boundarycommission/config/block.block.datepublished.yml new file mode 100644 index 000000000..cee74f352 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.datepublished.yml @@ -0,0 +1,29 @@ +uuid: ab89ccd3-e373-4e95-8af6-12cf8d2560f0 +langcode: en +status: true +dependencies: + config: + - facets.facet.date_published + module: + - facets + - system + theme: + - boundarycommission_theme +id: datepublished +theme: boundarycommission_theme +region: search_facets +weight: -7 +provider: null +plugin: 'facet_block:date_published' +settings: + id: 'facet_block:date_published' + label: Date + label_display: visible + provider: facets + context_mapping: { } + block_id: datepublished +visibility: + request_path: + id: request_path + negate: false + pages: "/publications\r\n/publications/date/*\r\n/publications/type/*" diff --git a/project/config/boundarycommission/config/block.block.exposedformconsultations_searchconsultations_search_page.yml b/project/config/boundarycommission/config/block.block.exposedformconsultations_searchconsultations_search_page.yml new file mode 100644 index 000000000..5b78e72d4 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.exposedformconsultations_searchconsultations_search_page.yml @@ -0,0 +1,28 @@ +uuid: f4f53fdd-0c0d-414f-b003-fe156d9c3cfb +langcode: en +status: true +dependencies: + config: + - views.view.consultations_search + module: + - system + - views + theme: + - boundarycommission_theme +id: exposedformconsultations_searchconsultations_search_page +theme: boundarycommission_theme +region: search_facets +weight: -5 +provider: null +plugin: 'views_exposed_filter_block:consultations_search-consultations_search_page' +settings: + id: 'views_exposed_filter_block:consultations_search-consultations_search_page' + label: '' + label_display: '0' + provider: views + views_label: '' +visibility: + request_path: + id: request_path + negate: false + pages: "/representations-received\r\n/representations-received/type/*\r\n/representations-received/stage/*" diff --git a/project/config/boundarycommission/config/block.block.exposedformnews_searchnews_search_page.yml b/project/config/boundarycommission/config/block.block.exposedformnews_searchnews_search_page.yml new file mode 100644 index 000000000..1fd76cf89 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.exposedformnews_searchnews_search_page.yml @@ -0,0 +1,28 @@ +uuid: 7c4c62a1-ecfc-4137-b4c5-04b8519bb2da +langcode: en +status: true +dependencies: + config: + - views.view.news_search + module: + - system + - views + theme: + - boundarycommission_theme +id: exposedformnews_searchnews_search_page +theme: boundarycommission_theme +region: search_facets +weight: -10 +provider: null +plugin: 'views_exposed_filter_block:news_search-news_search_page' +settings: + id: 'views_exposed_filter_block:news_search-news_search_page' + label: '' + label_display: '0' + provider: views + views_label: '' +visibility: + request_path: + id: request_path + negate: false + pages: "/news\r\n/news/date/*" diff --git a/project/config/boundarycommission/config/block.block.exposedformpublications_searchpublication_search_page.yml b/project/config/boundarycommission/config/block.block.exposedformpublications_searchpublication_search_page.yml new file mode 100644 index 000000000..875106e0b --- /dev/null +++ b/project/config/boundarycommission/config/block.block.exposedformpublications_searchpublication_search_page.yml @@ -0,0 +1,28 @@ +uuid: 8af8683e-6fd8-4319-99d3-da0432c1fd74 +langcode: en +status: true +dependencies: + config: + - views.view.publications_search + module: + - system + - views + theme: + - boundarycommission_theme +id: exposedformpublications_searchpublication_search_page +theme: boundarycommission_theme +region: search_facets +weight: -9 +provider: null +plugin: 'views_exposed_filter_block:publications_search-publication_search_page' +settings: + id: 'views_exposed_filter_block:publications_search-publication_search_page' + label: '' + label_display: '0' + provider: views + views_label: '' +visibility: + request_path: + id: request_path + negate: false + pages: "/publications\r\n/publications/date/*\r\n/publications/type/*\r\n" diff --git a/project/config/boundarycommission/config/block.block.footerlinks.yml b/project/config/boundarycommission/config/block.block.footerlinks.yml new file mode 100644 index 000000000..ac79995fe --- /dev/null +++ b/project/config/boundarycommission/config/block.block.footerlinks.yml @@ -0,0 +1,25 @@ +uuid: c4fdb151-7684-45d8-b314-46dd998c80e5 +langcode: en +status: true +dependencies: + config: + - system.menu.menu-footer-links + module: + - system + theme: + - boundarycommission_theme +id: footerlinks +theme: boundarycommission_theme +region: footer +weight: 0 +provider: null +plugin: 'system_menu_block:menu-footer-links' +settings: + id: 'system_menu_block:menu-footer-links' + label: 'Footer links' + label_display: '0' + provider: system + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.frontpagebanner.yml b/project/config/boundarycommission/config/block.block.frontpagebanner.yml new file mode 100644 index 000000000..5e9463190 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.frontpagebanner.yml @@ -0,0 +1,30 @@ +uuid: e57efed0-6c53-4e31-b23b-2d6c17916733 +langcode: en +status: true +dependencies: + content: + - 'block_content:basic_block:15b55800-aab3-47f2-b57a-6824374d853a' + module: + - block_content + - system + theme: + - boundarycommission_theme +id: frontpagebanner +theme: boundarycommission_theme +region: slideshow +weight: 0 +provider: null +plugin: 'block_content:15b55800-aab3-47f2-b57a-6824374d853a' +settings: + id: 'block_content:15b55800-aab3-47f2-b57a-6824374d853a' + label: 'Frontpage banner' + label_display: '0' + provider: block_content + status: true + info: '' + view_mode: full +visibility: + request_path: + id: request_path + negate: false + pages: '' diff --git a/project/config/boundarycommission/config/block.block.homepageinformation.yml b/project/config/boundarycommission/config/block.block.homepageinformation.yml new file mode 100644 index 000000000..bb7330fe5 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.homepageinformation.yml @@ -0,0 +1,30 @@ +uuid: 4f0cef44-5fb8-4348-8d08-4d143a3bb38f +langcode: en +status: true +dependencies: + content: + - 'block_content:basic_block:884a631b-c029-4ac8-b27f-c654882aae71' + module: + - block_content + - system + theme: + - boundarycommission_theme +id: homepageinformation +theme: boundarycommission_theme +region: front_welcome +weight: -10 +provider: null +plugin: 'block_content:884a631b-c029-4ac8-b27f-c654882aae71' +settings: + id: 'block_content:884a631b-c029-4ac8-b27f-c654882aae71' + label: 'Homepage information' + label_display: '0' + provider: block_content + status: true + info: '' + view_mode: full +visibility: + request_path: + id: request_path + negate: false + pages: '' diff --git a/project/config/boundarycommission/config/block.block.mainmenu.yml b/project/config/boundarycommission/config/block.block.mainmenu.yml new file mode 100644 index 000000000..3b03a3742 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.mainmenu.yml @@ -0,0 +1,25 @@ +uuid: 800e9d83-4771-4f1d-863f-c74987961133 +langcode: en +status: true +dependencies: + config: + - system.menu.main + module: + - system + theme: + - boundarycommission_theme +id: mainmenu +theme: boundarycommission_theme +region: primary_menu +weight: 0 +provider: null +plugin: 'system_menu_block:main' +settings: + id: 'system_menu_block:main' + label: 'Main menu' + label_display: '0' + provider: system + level: 1 + depth: 2 + expand_all_items: true +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.mainpagecontent.yml b/project/config/boundarycommission/config/block.block.mainpagecontent.yml new file mode 100644 index 000000000..d6f9dd619 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.mainpagecontent.yml @@ -0,0 +1,20 @@ +uuid: 58c4feeb-3d84-49a1-9529-35a77b7aa497 +langcode: en +status: true +dependencies: + module: + - system + theme: + - boundarycommission_theme +id: mainpagecontent +theme: boundarycommission_theme +region: content +weight: -9 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.map.yml b/project/config/boundarycommission/config/block.block.map.yml new file mode 100644 index 000000000..ea1cdd3bb --- /dev/null +++ b/project/config/boundarycommission/config/block.block.map.yml @@ -0,0 +1,30 @@ +uuid: 63bc7fad-1d86-42ed-9834-207a071b05da +langcode: en +status: true +dependencies: + content: + - 'block_content:map:3030f42e-8410-4e83-9dfd-368e573a1def' + module: + - block_content + - system + theme: + - boundarycommission_theme +id: map +theme: boundarycommission_theme +region: content +weight: -8 +provider: null +plugin: 'block_content:3030f42e-8410-4e83-9dfd-368e573a1def' +settings: + id: 'block_content:3030f42e-8410-4e83-9dfd-368e573a1def' + label: Map + label_display: '0' + provider: block_content + status: true + info: '' + view_mode: full +visibility: + request_path: + id: request_path + negate: false + pages: /contact-us diff --git a/project/config/boundarycommission/config/block.block.pagetitle.yml b/project/config/boundarycommission/config/block.block.pagetitle.yml new file mode 100644 index 000000000..7bade1e8d --- /dev/null +++ b/project/config/boundarycommission/config/block.block.pagetitle.yml @@ -0,0 +1,24 @@ +uuid: db5729d6-f980-4f79-89be-a68b42cbf2b6 +langcode: en +status: true +dependencies: + module: + - system + theme: + - boundarycommission_theme +id: pagetitle +theme: boundarycommission_theme +region: content +weight: -10 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + label_display: '0' + provider: core +visibility: + request_path: + id: request_path + negate: true + pages: "\r\n/search\r\n/news\r\n/news/date/*\r\n/node/*/revisions/view/*\r\n/publications\r\n/publications/date/*\r\n/publications/type/*\r\n/representations-received\r\n/representations-received/type/*\r\n/representations-received/stage/*" diff --git a/project/config/boundarycommission/config/block.block.publicationtype.yml b/project/config/boundarycommission/config/block.block.publicationtype.yml new file mode 100644 index 000000000..3db2c99ef --- /dev/null +++ b/project/config/boundarycommission/config/block.block.publicationtype.yml @@ -0,0 +1,28 @@ +uuid: 89207389-a430-4125-9d77-5c1677cede28 +langcode: en +status: true +dependencies: + config: + - facets.facet.publication_type + module: + - facets + - system + theme: + - boundarycommission_theme +id: publicationtype +theme: boundarycommission_theme +region: search_facets +weight: -6 +provider: null +plugin: 'facet_block:publication_type' +settings: + id: 'facet_block:publication_type' + label: Type + label_display: visible + provider: facets + block_id: publicationtype +visibility: + request_path: + id: request_path + negate: false + pages: "/publications\r\n/publications/date/*\r\n/publications/type/*" diff --git a/project/config/boundarycommission/config/block.block.publisheddate.yml b/project/config/boundarycommission/config/block.block.publisheddate.yml new file mode 100644 index 000000000..7ffd56104 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.publisheddate.yml @@ -0,0 +1,28 @@ +uuid: 7d969be6-0dfd-4762-8683-bf5397b71932 +langcode: en +status: true +dependencies: + config: + - facets.facet.published_date + module: + - facets + - system + theme: + - boundarycommission_theme +id: publisheddate +theme: boundarycommission_theme +region: search_facets +weight: -8 +provider: null +plugin: 'facet_block:published_date' +settings: + id: 'facet_block:published_date' + label: 'Published Date' + label_display: visible + provider: facets + block_id: publisheddate +visibility: + request_path: + id: request_path + negate: false + pages: "/news\r\n/news/date/*" diff --git a/project/config/boundarycommission/config/block.block.responsetype.yml b/project/config/boundarycommission/config/block.block.responsetype.yml new file mode 100644 index 000000000..517a0531b --- /dev/null +++ b/project/config/boundarycommission/config/block.block.responsetype.yml @@ -0,0 +1,28 @@ +uuid: ef3c8b1e-3875-4118-b77d-eb008a94aeb6 +langcode: en +status: true +dependencies: + config: + - facets.facet.response_type + module: + - facets + - system + theme: + - boundarycommission_theme +id: responsetype +theme: boundarycommission_theme +region: search_facets +weight: -3 +provider: null +plugin: 'facet_block:response_type' +settings: + id: 'facet_block:response_type' + label: 'Response Type' + label_display: visible + provider: facets + block_id: responsetype +visibility: + request_path: + id: request_path + negate: false + pages: "/representations-received\r\n/representations-received/type/*\r\n/representations-received/stage/*" diff --git a/project/config/boundarycommission/config/block.block.sidemenu.yml b/project/config/boundarycommission/config/block.block.sidemenu.yml new file mode 100644 index 000000000..2b2cbebae --- /dev/null +++ b/project/config/boundarycommission/config/block.block.sidemenu.yml @@ -0,0 +1,37 @@ +uuid: c5dbaa8e-670b-447e-b082-c26ac5ab544c +langcode: en +status: true +dependencies: + config: + - system.menu.main + module: + - node + - system + theme: + - boundarycommission_theme +id: sidemenu +theme: boundarycommission_theme +region: sidebar_second +weight: 0 +provider: null +plugin: 'system_menu_block:main' +settings: + id: 'system_menu_block:main' + label: 'In this section' + label_display: visible + provider: system + level: 1 + depth: 0 + expand_all_items: false +visibility: + 'entity_bundle:node': + id: 'entity_bundle:node' + negate: false + context_mapping: + node: '@node.node_route_context:node' + bundles: + basic_page: basic_page + request_path: + id: request_path + negate: true + pages: '' diff --git a/project/config/boundarycommission/config/block.block.sitebranding.yml b/project/config/boundarycommission/config/block.block.sitebranding.yml new file mode 100644 index 000000000..bc1e3574f --- /dev/null +++ b/project/config/boundarycommission/config/block.block.sitebranding.yml @@ -0,0 +1,23 @@ +uuid: cd3f231d-d768-4ee8-bf34-020d1e9a244b +langcode: en +status: true +dependencies: + module: + - system + theme: + - boundarycommission_theme +id: sitebranding +theme: boundarycommission_theme +region: header +weight: 0 +provider: null +plugin: system_branding_block +settings: + id: system_branding_block + label: 'Site branding' + label_display: '0' + provider: system + use_site_logo: true + use_site_name: true + use_site_slogan: true +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.sitesearchblock.yml b/project/config/boundarycommission/config/block.block.sitesearchblock.yml new file mode 100644 index 000000000..a90ba77f9 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.sitesearchblock.yml @@ -0,0 +1,25 @@ +uuid: 9da0f185-5759-41b9-97b5-40766f4ac4ce +langcode: en +status: true +dependencies: + module: + - system + - unity_search_pages + theme: + - boundarycommission_theme +id: sitesearchblock +theme: boundarycommission_theme +region: search +weight: 0 +provider: null +plugin: site_search_block +settings: + id: site_search_block + label: 'Site search block' + label_display: '0' + provider: unity_search_pages +visibility: + request_path: + id: request_path + negate: true + pages: '/search*' diff --git a/project/config/boundarycommission/config/block.block.sociallinks.yml b/project/config/boundarycommission/config/block.block.sociallinks.yml new file mode 100644 index 000000000..44296d315 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.sociallinks.yml @@ -0,0 +1,25 @@ +uuid: 191aa288-44f9-4645-9731-afc7b403ee2b +langcode: en +status: true +dependencies: + content: + - 'block_content:basic_block:b6a703fd-211c-4fc0-bff6-828afc8c567a' + module: + - block_content + theme: + - boundarycommission_theme +id: sociallinks +theme: boundarycommission_theme +region: footer_second +weight: 0 +provider: null +plugin: 'block_content:b6a703fd-211c-4fc0-bff6-828afc8c567a' +settings: + id: 'block_content:b6a703fd-211c-4fc0-bff6-828afc8c567a' + label: 'Social links' + label_display: '0' + provider: block_content + status: true + info: '' + view_mode: full +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.stage.yml b/project/config/boundarycommission/config/block.block.stage.yml new file mode 100644 index 000000000..98b8b1bbe --- /dev/null +++ b/project/config/boundarycommission/config/block.block.stage.yml @@ -0,0 +1,28 @@ +uuid: 82f0dc8b-eedc-4339-931b-07add23c363d +langcode: en +status: true +dependencies: + config: + - facets.facet.stage + module: + - facets + - system + theme: + - boundarycommission_theme +id: stage +theme: boundarycommission_theme +region: search_facets +weight: -4 +provider: null +plugin: 'facet_block:stage' +settings: + id: 'facet_block:stage' + label: Stage + label_display: visible + provider: facets + block_id: stage +visibility: + request_path: + id: request_path + negate: false + pages: "/representations-received\r\n/representations-received/type/*\r\n/representations-received/stage/*" diff --git a/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_first.yml b/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_first.yml new file mode 100644 index 000000000..057876f92 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_first.yml @@ -0,0 +1,24 @@ +uuid: baa5d503-e691-48d6-9dcd-0ef0ceb3a0fc +langcode: en +status: true +dependencies: + config: + - views.view.featured_content + module: + - views + theme: + - boundarycommission_theme +id: views_block__featured_content_featured_content_first +theme: boundarycommission_theme +region: top_first +weight: 0 +provider: null +plugin: 'views_block:featured_content-featured_content_first' +settings: + id: 'views_block:featured_content-featured_content_first' + label: '' + label_display: '0' + provider: views + views_label: '' + items_per_page: none +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_last.yml b/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_last.yml new file mode 100644 index 000000000..63061cb5a --- /dev/null +++ b/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_last.yml @@ -0,0 +1,24 @@ +uuid: 5f3d5a26-bd8d-4afd-84b1-4f54fe6988f5 +langcode: en +status: true +dependencies: + config: + - views.view.featured_content + module: + - views + theme: + - boundarycommission_theme +id: views_block__featured_content_featured_content_last +theme: boundarycommission_theme +region: top_third +weight: 0 +provider: null +plugin: 'views_block:featured_content-featured_content_last' +settings: + id: 'views_block:featured_content-featured_content_last' + label: '' + label_display: '0' + provider: views + views_label: '' + items_per_page: none +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news.yml b/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news.yml new file mode 100644 index 000000000..1ed4bb89e --- /dev/null +++ b/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news.yml @@ -0,0 +1,32 @@ +uuid: 41c6a808-048d-4fc0-8e22-ce72b4d3a7f6 +langcode: en +status: true +dependencies: + config: + - views.view.latest_news + module: + - node + - views + theme: + - boundarycommission_theme +id: views_block__latest_news_latest_news +theme: boundarycommission_theme +region: sidebar_second +weight: 0 +provider: null +plugin: 'views_block:latest_news-latest_news' +settings: + id: 'views_block:latest_news-latest_news' + label: 'Latest news' + label_display: visible + provider: views + views_label: 'Latest news' + items_per_page: none +visibility: + 'entity_bundle:node': + id: 'entity_bundle:node' + negate: false + context_mapping: + node: '@node.node_route_context:node' + bundles: + news: news diff --git a/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news_home.yml b/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news_home.yml new file mode 100644 index 000000000..422ed54e3 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news_home.yml @@ -0,0 +1,24 @@ +uuid: d19f3d32-5962-41be-8ccd-7bab727cd258 +langcode: en +status: true +dependencies: + config: + - views.view.latest_news + module: + - views + theme: + - boundarycommission_theme +id: views_block__latest_news_latest_news_home +theme: boundarycommission_theme +region: top_second +weight: 0 +provider: null +plugin: 'views_block:latest_news-latest_news_home' +settings: + id: 'views_block:latest_news-latest_news_home' + label: '' + label_display: '0' + provider: views + views_label: '' + items_per_page: none +visibility: { } diff --git a/project/config/boundarycommission/config/block_content.type.basic_block.yml b/project/config/boundarycommission/config/block_content.type.basic_block.yml new file mode 100644 index 000000000..2d01f0d82 --- /dev/null +++ b/project/config/boundarycommission/config/block_content.type.basic_block.yml @@ -0,0 +1,10 @@ +uuid: 78f278c4-0bbf-4548-9a8d-26c56af91da2 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: oUH6Xz_hNkIKG9YbG6r_gUVjT5dVA6_x4PI8V_cqCHY +id: basic_block +label: 'Basic block' +revision: 1 +description: 'A basic block contains a title and a body.' diff --git a/project/config/boundarycommission/config/block_content.type.map.yml b/project/config/boundarycommission/config/block_content.type.map.yml new file mode 100644 index 000000000..886fc61bb --- /dev/null +++ b/project/config/boundarycommission/config/block_content.type.map.yml @@ -0,0 +1,10 @@ +uuid: 4b209e3a-d971-4f37-b3e9-a3436820523f +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Gwz8hrs1QN0Okrhsi6BAtHsoP9abgs2XRHZJ5j-cvJA +id: map +label: Map +revision: 0 +description: 'Custom block type designed to contain a map to be embedded anywhere on the site.' diff --git a/project/config/boundarycommission/config/boundarycommission_theme.settings.yml b/project/config/boundarycommission/config/boundarycommission_theme.settings.yml new file mode 100644 index 000000000..34373e9e3 --- /dev/null +++ b/project/config/boundarycommission/config/boundarycommission_theme.settings.yml @@ -0,0 +1,17 @@ +features: + node_user_picture: 1 + comment_user_picture: true + comment_user_verification: true + favicon: 1 +logo: + use_default: 0 + path: sites/boundarycommission/themes/boundarycommission_theme/logo.png +favicon: + use_default: 1 +basic_page_structure: 0 +twitter_profile_url: 'https://twitter.com/BCommNI' +facebook_profile_url: '' +linkedin_profile_url: '' +pinterest_profile_url: '' +youtube_profile_url: '' +instagram_profile_url: '' diff --git a/project/config/boundarycommission/config/clientside_validation_jquery.settings.yml b/project/config/boundarycommission/config/clientside_validation_jquery.settings.yml new file mode 100644 index 000000000..1c68f90ce --- /dev/null +++ b/project/config/boundarycommission/config/clientside_validation_jquery.settings.yml @@ -0,0 +1,6 @@ +_core: + default_config_hash: 3YUV4RQQ4k8drO7uzYJ7lNc5Az0iDAH5YW8KbZVxjeY +use_cdn: false +cdn_base_url: 'https://cdn.jsdelivr.net/npm/jquery-validation@1.17.0/dist/' +validate_all_ajax_forms: 2 +force_validate_on_blur: 0 diff --git a/project/config/boundarycommission/config/config_ignore.settings.yml b/project/config/boundarycommission/config/config_ignore.settings.yml new file mode 100644 index 000000000..fd5281745 --- /dev/null +++ b/project/config/boundarycommission/config/config_ignore.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: UVH1aJ4b44UM-VdPVN7hNNuuVqfReJxwfVeDQH1Hvsk +ignored_config_entities: { } diff --git a/project/config/boundarycommission/config/config_split.config_split.hosted.yml b/project/config/boundarycommission/config/config_split.config_split.hosted.yml new file mode 100644 index 000000000..b3d0a0746 --- /dev/null +++ b/project/config/boundarycommission/config/config_split.config_split.hosted.yml @@ -0,0 +1,15 @@ +uuid: 6298720f-a280-4061-83e5-073d6c09276c +langcode: en +status: true +dependencies: { } +id: hosted +label: hosted +description: '' +weight: 0 +folder: ../project/config/boundarycommission/hosted +module: { } +theme: { } +blacklist: { } +graylist: { } +graylist_dependents: true +graylist_skip_equal: true diff --git a/project/config/boundarycommission/config/config_split.config_split.local.yml b/project/config/boundarycommission/config/config_split.config_split.local.yml new file mode 100644 index 000000000..5beb51186 --- /dev/null +++ b/project/config/boundarycommission/config/config_split.config_split.local.yml @@ -0,0 +1,29 @@ +uuid: db88c4ca-04f1-40b3-a1aa-ff4deb778bd6 +langcode: en +status: true +dependencies: { } +id: local +label: local +description: '' +weight: 0 +folder: ../project/config/boundarycommission/local +module: + boundarycommission_migrations: 0 + clone_nodes: 0 + dblog: 0 + devel: 0 + easy_install: 0 + migrate: 0 + migrate_absolute_links: 0 + migrate_drupal: 0 + migrate_drupal_ui: 0 + migrate_plus: 0 + migrate_tools: 0 + migrate_upgrade: 0 + unity_file_migrations: 0 + views_ui: 0 +theme: { } +blacklist: { } +graylist: { } +graylist_dependents: true +graylist_skip_equal: true diff --git a/project/config/boundarycommission/config/config_split.config_split.production.yml b/project/config/boundarycommission/config/config_split.config_split.production.yml new file mode 100644 index 000000000..0e2f04679 --- /dev/null +++ b/project/config/boundarycommission/config/config_split.config_split.production.yml @@ -0,0 +1,17 @@ +uuid: fd21b68e-2eec-4f36-8c0c-497ee2092f4d +langcode: en +status: true +dependencies: { } +id: production +label: production +description: '' +weight: 0 +folder: ../project/config/boundarycommission/production +module: + fastly: 0 +theme: { } +blacklist: + - fastly.settings +graylist: { } +graylist_dependents: true +graylist_skip_equal: true diff --git a/project/config/boundarycommission/config/content_lock.settings.yml b/project/config/boundarycommission/config/content_lock.settings.yml new file mode 100644 index 000000000..7afcb8d2a --- /dev/null +++ b/project/config/boundarycommission/config/content_lock.settings.yml @@ -0,0 +1,72 @@ +_core: + default_config_hash: 5ZR2rETEQeI922jZ_ObHCnuueEJHgU7_vyBgdP0q7Ls +verbose: 1 +types: + block_content: { } + contact_message: { } + content_moderation_state: { } + entity_embed_fake_entity: { } + file: { } + media: { } + node: + '*': '*' + path_alias: { } + redirect: { } + search_api_task: { } + taxonomy_term: { } + user: { } + webform_submission: { } + menu_link_content: { } + paragraph: { } +types_translation_lock: { } +types_js_lock: { } +form_op_lock: + block_content: + mode: 0 + values: { } + contact_message: + mode: 0 + values: { } + content_moderation_state: + mode: 0 + values: { } + entity_embed_fake_entity: + mode: 0 + values: { } + file: + mode: 0 + values: { } + media: + mode: 0 + values: { } + node: + mode: 0 + values: + default: default + delete: delete + edit: edit + delete-multiple-confirm: delete-multiple-confirm + path_alias: + mode: 0 + values: { } + redirect: + mode: 0 + values: { } + search_api_task: + mode: 0 + values: { } + taxonomy_term: + mode: 0 + values: { } + user: + mode: 0 + values: { } + webform_submission: + mode: 0 + values: { } + menu_link_content: + mode: 0 + values: { } + paragraph: + mode: 0 + values: { } diff --git a/project/config/boundarycommission/config/content_lock_timeout.settings.yml b/project/config/boundarycommission/config/content_lock_timeout.settings.yml new file mode 100644 index 000000000..bfa0a1a5c --- /dev/null +++ b/project/config/boundarycommission/config/content_lock_timeout.settings.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: 1mYaOX9NF2F6npKhATt6_IBIXSKJxuVAcDnR6LZ9hGw +content_lock_timeout_minutes: '30' +content_lock_timeout_on_edit: 0 diff --git a/project/config/boundarycommission/config/cookie_content_blocker.settings.yml b/project/config/boundarycommission/config/cookie_content_blocker.settings.yml new file mode 100644 index 000000000..6b8077ca4 --- /dev/null +++ b/project/config/boundarycommission/config/cookie_content_blocker.settings.yml @@ -0,0 +1,27 @@ +_core: + default_config_hash: plsmi8E9YAENMTe8EnsLZDQu6oyG1_FCcR4xyn8GAnQ +blocked_message: 'You have not yet given permission to place the required cookies. Accept the required cookies to view this content.' +show_button: true +button_text: 'Show content' +enable_click_consent_change: true +consent_awareness: + accepted: + event: + name: click + selector: .agree-button + cookie: + operator: '===' + name: cookie-agreed + value: '2' + declined: + event: + name: click + selector: .decline-button + cookie: + operator: '===' + name: cookie-agreed + value: '0' + change: + event: + name: click + selector: .agree-button diff --git a/project/config/boundarycommission/config/core.base_field_override.node.basic_page.promote.yml b/project/config/boundarycommission/config/core.base_field_override.node.basic_page.promote.yml new file mode 100644 index 000000000..df2995e5b --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.basic_page.promote.yml @@ -0,0 +1,24 @@ +uuid: beced680-d0e8-436c-90f4-f4f61a73c953 +langcode: en +status: true +dependencies: + config: + - node.type.basic_page +_core: + default_config_hash: OPP8wTm5eAK142vOGHGG2hOtPMwKQo9FAFYzQd82bdY +id: node.basic_page.promote +field_name: promote +entity_type: node +bundle: basic_page +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.basic_page.status.yml b/project/config/boundarycommission/config/core.base_field_override.node.basic_page.status.yml new file mode 100644 index 000000000..fe68241d1 --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.basic_page.status.yml @@ -0,0 +1,24 @@ +uuid: 48a5720b-69da-4d0a-8487-851043ab553f +langcode: en +status: true +dependencies: + config: + - node.type.basic_page +_core: + default_config_hash: ST8TFV1_eDhaoSpXCUhCIq8uih1sGLcDRrY0-8rO6TU +id: node.basic_page.status +field_name: status +entity_type: node +bundle: basic_page +label: Published +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.news.promote.yml b/project/config/boundarycommission/config/core.base_field_override.node.news.promote.yml new file mode 100644 index 000000000..e85c9b00b --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.news.promote.yml @@ -0,0 +1,24 @@ +uuid: 39033f44-6535-40f1-98cd-190b33512d72 +langcode: en +status: true +dependencies: + config: + - node.type.news +_core: + default_config_hash: YFOOXDA1pcVKf_Ne7yI6zdqX4q_ZToJYroeAgmQRtEk +id: node.news.promote +field_name: promote +entity_type: node +bundle: news +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.news.status.yml b/project/config/boundarycommission/config/core.base_field_override.node.news.status.yml new file mode 100644 index 000000000..731cafcfa --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.news.status.yml @@ -0,0 +1,24 @@ +uuid: 2c788a3a-194b-4597-8032-bc191f3f16e2 +langcode: en +status: true +dependencies: + config: + - node.type.news +_core: + default_config_hash: 6TLpJasXIYoKxuaDwrqfE0zc4dgMLh0X27CVf0ItDb8 +id: node.news.status +field_name: status +entity_type: node +bundle: news +label: Published +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.news.title.yml b/project/config/boundarycommission/config/core.base_field_override.node.news.title.yml new file mode 100644 index 000000000..c7779670a --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.news.title.yml @@ -0,0 +1,20 @@ +uuid: 3186301f-5942-4a1b-89e8-598c0c7c0b69 +langcode: en +status: true +dependencies: + config: + - node.type.news +_core: + default_config_hash: MU9Gxb3GoC55bh-2Fwx5VG4fOn4X7N77V2kul4V__gU +id: node.news.title +field_name: title +entity_type: node +bundle: news +label: 'News title' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/core.base_field_override.node.publication.promote.yml b/project/config/boundarycommission/config/core.base_field_override.node.publication.promote.yml new file mode 100644 index 000000000..b4712bce2 --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.publication.promote.yml @@ -0,0 +1,24 @@ +uuid: 916d6a9d-3c0f-45ff-9463-79e44afcd5a6 +langcode: en +status: true +dependencies: + config: + - node.type.publication +_core: + default_config_hash: RZReXxGt6xMN6rIDO654C-FmUbPmLjNOLeddn_iFPTc +id: node.publication.promote +field_name: promote +entity_type: node +bundle: publication +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.publication.status.yml b/project/config/boundarycommission/config/core.base_field_override.node.publication.status.yml new file mode 100644 index 000000000..c1756f80b --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.publication.status.yml @@ -0,0 +1,24 @@ +uuid: cba32026-c9c4-40f4-89db-f24bde401c5b +langcode: en +status: true +dependencies: + config: + - node.type.publication +_core: + default_config_hash: 1HLk4vmREHFzbl4xVRha0kyCmXxeDsq80xH4fvdF1vI +id: node.publication.status +field_name: status +entity_type: node +bundle: publication +label: Published +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.publication.title.yml b/project/config/boundarycommission/config/core.base_field_override.node.publication.title.yml new file mode 100644 index 000000000..3de662e59 --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.publication.title.yml @@ -0,0 +1,20 @@ +uuid: 6f3e4dc5-8d0d-4d91-b2a1-a2f565a4e6b1 +langcode: en +status: true +dependencies: + config: + - node.type.publication +_core: + default_config_hash: USjGaGaX9G_QemgClQu6ZkK6BZs2zqoZp9A7uzNQRKo +id: node.publication.title +field_name: title +entity_type: node +bundle: publication +label: 'Publication title' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/core.base_field_override.node.webform.promote.yml b/project/config/boundarycommission/config/core.base_field_override.node.webform.promote.yml new file mode 100644 index 000000000..8d06e36de --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.webform.promote.yml @@ -0,0 +1,24 @@ +uuid: ffab36d7-ec89-47fb-88f5-9a2ba61b0233 +langcode: en +status: true +dependencies: + config: + - node.type.webform +_core: + default_config_hash: FvXJkxryo6J_0TQRlb5Z77Ge-sim5GHzCI1Ft3kZu-4 +id: node.webform.promote +field_name: promote +entity_type: node +bundle: webform +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.date_format.fallback.yml b/project/config/boundarycommission/config/core.date_format.fallback.yml new file mode 100644 index 000000000..bd596f966 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.fallback.yml @@ -0,0 +1,10 @@ +uuid: 80eabe66-510a-4ee7-9227-b93bf3ca20c0 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE +id: fallback +label: 'Fallback date format' +locked: true +pattern: 'D, m/d/Y - H:i' diff --git a/project/config/boundarycommission/config/core.date_format.html_date.yml b/project/config/boundarycommission/config/core.date_format.html_date.yml new file mode 100644 index 000000000..689e516f7 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_date.yml @@ -0,0 +1,10 @@ +uuid: 76bef3cf-dbe8-45c4-b732-2e526f435fd6 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk +id: html_date +label: 'HTML Date' +locked: true +pattern: Y-m-d diff --git a/project/config/boundarycommission/config/core.date_format.html_datetime.yml b/project/config/boundarycommission/config/core.date_format.html_datetime.yml new file mode 100644 index 000000000..95b8c2b11 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_datetime.yml @@ -0,0 +1,10 @@ +uuid: ce094140-be26-45f5-868d-0911c4020ccb +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE +id: html_datetime +label: 'HTML Datetime' +locked: true +pattern: 'Y-m-d\TH:i:sO' diff --git a/project/config/boundarycommission/config/core.date_format.html_month.yml b/project/config/boundarycommission/config/core.date_format.html_month.yml new file mode 100644 index 000000000..238ae510e --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_month.yml @@ -0,0 +1,10 @@ +uuid: b96d0622-bde7-4f38-a405-3568cd36dcb7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM +id: html_month +label: 'HTML Month' +locked: true +pattern: Y-m diff --git a/project/config/boundarycommission/config/core.date_format.html_time.yml b/project/config/boundarycommission/config/core.date_format.html_time.yml new file mode 100644 index 000000000..2f1a7dd80 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_time.yml @@ -0,0 +1,10 @@ +uuid: a620e8d7-e87d-4596-b110-6bbe07914018 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE +id: html_time +label: 'HTML Time' +locked: true +pattern: 'H:i:s' diff --git a/project/config/boundarycommission/config/core.date_format.html_week.yml b/project/config/boundarycommission/config/core.date_format.html_week.yml new file mode 100644 index 000000000..b9602e882 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_week.yml @@ -0,0 +1,10 @@ +uuid: c5e1e889-bc53-4fdc-82a2-0cda71eea718 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY +id: html_week +label: 'HTML Week' +locked: true +pattern: Y-\WW diff --git a/project/config/boundarycommission/config/core.date_format.html_year.yml b/project/config/boundarycommission/config/core.date_format.html_year.yml new file mode 100644 index 000000000..c5e16c383 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_year.yml @@ -0,0 +1,10 @@ +uuid: a86ed5fa-9aef-47f7-bf35-037f33f1c896 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk +id: html_year +label: 'HTML Year' +locked: true +pattern: 'Y' diff --git a/project/config/boundarycommission/config/core.date_format.html_yearless_date.yml b/project/config/boundarycommission/config/core.date_format.html_yearless_date.yml new file mode 100644 index 000000000..d4552796f --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_yearless_date.yml @@ -0,0 +1,10 @@ +uuid: f4c344d3-5351-4e04-a12c-61125f70ae78 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc +id: html_yearless_date +label: 'HTML Yearless date' +locked: true +pattern: m-d diff --git a/project/config/boundarycommission/config/core.date_format.long.yml b/project/config/boundarycommission/config/core.date_format.long.yml new file mode 100644 index 000000000..c443fa5a5 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.long.yml @@ -0,0 +1,10 @@ +uuid: bcad5b73-de67-41d8-b5d5-9b27aabf737e +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: IVWwO2Y8HMqFIXk8p3qL4G64We5zyrzquZlYsNJh-qw +id: long +label: 'Default long date' +locked: false +pattern: 'j F, Y - H:i' diff --git a/project/config/boundarycommission/config/core.date_format.medium.yml b/project/config/boundarycommission/config/core.date_format.medium.yml new file mode 100644 index 000000000..ec33660f8 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.medium.yml @@ -0,0 +1,10 @@ +uuid: 883869f7-5ea9-44d4-9e16-ee585e2179cf +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 2WSttLLDgv2MtXe1t7b4M2iUf9IaRD88VyVz5P5OinE +id: medium +label: 'Default medium date' +locked: false +pattern: 'D, d/m/Y - H:i' diff --git a/project/config/boundarycommission/config/core.date_format.short.yml b/project/config/boundarycommission/config/core.date_format.short.yml new file mode 100644 index 000000000..21c7ec9ed --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.short.yml @@ -0,0 +1,10 @@ +uuid: 5b6f7c0d-f63d-4395-bd2d-a0c1dfeb98d9 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: C1UvSU4BIh9EE2KOGMDRrIlIq28SBBsHRB6aX5ypi7g +id: short +label: 'Default short date' +locked: false +pattern: 'd/m/Y - H:i' diff --git a/project/config/boundarycommission/config/core.date_format.unity_date.yml b/project/config/boundarycommission/config/core.date_format.unity_date.yml new file mode 100644 index 000000000..7feefd285 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.unity_date.yml @@ -0,0 +1,10 @@ +uuid: ddc31e53-f6ed-4f2b-b98f-6de2e711f2fe +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: n5SoPUrV3_e4spmi22hPxqNj7GV0WZ1Of-t01shiwUU +id: unity_date +label: 'Unity date' +locked: false +pattern: 'd F Y' diff --git a/project/config/boundarycommission/config/core.entity_form_display.block_content.basic_block.default.yml b/project/config/boundarycommission/config/core.entity_form_display.block_content.basic_block.default.yml new file mode 100644 index 000000000..77c87b124 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.block_content.basic_block.default.yml @@ -0,0 +1,42 @@ +uuid: b741a95f-10b9-4f71-a22d-48b09fe906c1 +langcode: en +status: true +dependencies: + config: + - block_content.type.basic_block + - field.field.block_content.basic_block.body + module: + - text +_core: + default_config_hash: GD880flQeJoPpR_zxH3Frk7HebQehHfCzZGG_Tc0A2Y +id: block_content.basic_block.default +targetEntityType: block_content +bundle: basic_block +mode: default +content: + body: + type: text_textarea_with_summary + weight: 1 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + region: content + info: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.block_content.map.default.yml b/project/config/boundarycommission/config/core.entity_form_display.block_content.map.default.yml new file mode 100644 index 000000000..a100482b2 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.block_content.map.default.yml @@ -0,0 +1,67 @@ +uuid: 7388c76d-5876-462d-aeb5-d5d7d0f188f6 +langcode: en +status: true +dependencies: + config: + - block_content.type.map + - field.field.block_content.map.field_map + module: + - geolocation_google_maps +_core: + default_config_hash: j6e2YAuifJODJHOh4oaxJd74SONb2u10TeMkZxePkMM +id: block_content.map.default +targetEntityType: block_content +bundle: map +mode: default +content: + field_map: + type: geolocation_googlegeocoder + weight: 27 + region: content + settings: + auto_client_location: '' + auto_client_location_marker: '' + allow_override_map_settings: 0 + hide_textfield_form: false + centre: + fit_bounds: + enable: true + google_map_settings: + map_features: + marker_infowindow: + enabled: true + control_locate: + enabled: true + control_zoom: + enabled: true + control_maptype: + enabled: true + control_geocoder: + weight: -100 + enabled: true + control_recenter: + enabled: true + type: ROADMAP + zoom: 10 + minZoom: 0 + maxZoom: 20 + height: 400px + width: 100% + gestureHandling: auto + third_party_settings: { } + info: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.audio.default.yml b/project/config/boundarycommission/config/core.entity_form_display.media.audio.default.yml new file mode 100644 index 000000000..f39c09ba1 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.audio.default.yml @@ -0,0 +1,69 @@ +uuid: ecec4e43-1efc-4559-92d7-abd98aacdbdc +langcode: en +status: true +dependencies: + config: + - field.field.media.audio.field_media_audio_file + - media.type.audio + module: + - file + - path +_core: + default_config_hash: NHLFZuY0ePU1dzAsaSKAKDn8vHxVDuefg29vrHYojoE +id: media.audio.default +targetEntityType: media +bundle: audio +mode: default +content: + created: + type: datetime_timestamp + weight: 4 + region: content + settings: { } + third_party_settings: { } + field_media_audio_file: + weight: 1 + settings: + progress_indicator: throbber + third_party_settings: { } + type: file_generic + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 5 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 6 + region: content + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 3 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.audio.media_library.yml b/project/config/boundarycommission/config/core.entity_form_display.media.audio.media_library.yml new file mode 100644 index 000000000..2eed69811 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.audio.media_library.yml @@ -0,0 +1,30 @@ +uuid: 1dce5d72-875b-4e4c-a5ea-a338a009238e +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.audio.field_media_audio_file + - media.type.audio +_core: + default_config_hash: wptdBDEYP0HJlQK2264EhoYVWmjIVc1sHzKnC4p9Zz8 +id: media.audio.media_library +targetEntityType: media +bundle: audio +mode: media_library +content: + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + created: true + field_media_audio_file: true + langcode: true + path: true + status: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.document.default.yml b/project/config/boundarycommission/config/core.entity_form_display.media.document.default.yml new file mode 100644 index 000000000..8d1d4a665 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.document.default.yml @@ -0,0 +1,69 @@ +uuid: fceb2807-ff3b-4c6e-ba30-d3e422d6d254 +langcode: en +status: true +dependencies: + config: + - field.field.media.document.field_media_file + - media.type.document + module: + - file + - path +_core: + default_config_hash: 334GzowYbhWsuFG0vdQTiN5cn8NomyeUpoTLrAfAZ7A +id: media.document.default +targetEntityType: media +bundle: document +mode: default +content: + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_media_file: + weight: 0 + settings: + progress_indicator: throbber + third_party_settings: { } + type: file_generic + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + name: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 100 + region: content + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.document.media_library.yml b/project/config/boundarycommission/config/core.entity_form_display.media.document.media_library.yml new file mode 100644 index 000000000..c24630b1f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.document.media_library.yml @@ -0,0 +1,30 @@ +uuid: a9120b9d-0840-4062-8c78-b9d7c26d5303 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.document.field_media_file + - media.type.document +_core: + default_config_hash: Eot-dNu4hcpMFlIxw3sQ7tErOMKA0PrkXBeZb5249MA +id: media.document.media_library +targetEntityType: media +bundle: document +mode: media_library +content: + name: + type: string_textfield + settings: + size: 60 + placeholder: '' + weight: 0 + third_party_settings: { } + region: content +hidden: + created: true + field_media_file: true + langcode: true + path: true + status: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.file.default.yml b/project/config/boundarycommission/config/core.entity_form_display.media.file.default.yml new file mode 100644 index 000000000..c4489628c --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.file.default.yml @@ -0,0 +1,69 @@ +uuid: 09868caa-cd51-454b-8aee-a781528f7a9f +langcode: en +status: true +dependencies: + config: + - field.field.media.file.field_media_file + - media.type.file + module: + - file + - path +_core: + default_config_hash: dKVeNywwHJA3SH1n20LPdCo9v9tsQCMoEcFK-FkaPPo +id: media.file.default +targetEntityType: media +bundle: file +mode: default +content: + created: + type: datetime_timestamp + weight: 4 + region: content + settings: { } + third_party_settings: { } + field_media_file: + settings: + progress_indicator: throbber + third_party_settings: { } + type: file_generic + weight: 1 + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 5 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 6 + region: content + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 3 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.file.media_library.yml b/project/config/boundarycommission/config/core.entity_form_display.media.file.media_library.yml new file mode 100644 index 000000000..102007869 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.file.media_library.yml @@ -0,0 +1,30 @@ +uuid: 58a80f16-ba4d-42cf-88a1-1bd8ecc1c8ed +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.file.field_media_file + - media.type.file +_core: + default_config_hash: JTto574eIgaEDZ_s7GVh0ipF-RLDcBmqHhop7e-VzEo +id: media.file.media_library +targetEntityType: media +bundle: file +mode: media_library +content: + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + created: true + field_media_file: true + langcode: true + path: true + status: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.image.default.yml b/project/config/boundarycommission/config/core.entity_form_display.media.image.default.yml new file mode 100644 index 000000000..d917e0902 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.image.default.yml @@ -0,0 +1,80 @@ +uuid: 8655ab93-26b7-4bcc-a4c7-85960193c640 +langcode: en +status: true +dependencies: + config: + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - image.style.thumbnail + - media.type.image + module: + - image + - path +_core: + default_config_hash: q1ZX2xUGLtTUisL_xNznpLOf2c1YgUx6d2F7HfaqU4w +id: media.image.default +targetEntityType: media +bundle: image +mode: default +content: + created: + type: datetime_timestamp + weight: 4 + region: content + settings: { } + third_party_settings: { } + field_caption: + weight: 7 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + field_media_image: + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + type: image_image + weight: 1 + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 5 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 6 + region: content + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 3 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.image.media_library.yml b/project/config/boundarycommission/config/core.entity_form_display.media.image.media_library.yml new file mode 100644 index 000000000..59c05579a --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.image.media_library.yml @@ -0,0 +1,49 @@ +uuid: 0445a36c-7aed-45ad-83dc-66621485a30e +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - image.style.thumbnail + - media.type.image + module: + - image +_core: + default_config_hash: fs-w7OTNtuTEifBVAKHPCIuqrmxIQOoMZJ80nJ49mBk +id: media.image.media_library +targetEntityType: media +bundle: image +mode: media_library +content: + field_caption: + type: string_textfield + weight: 1 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_media_image: + weight: 0 + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + type: image_image + region: content + name: + type: string_textfield + weight: 2 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + created: true + langcode: true + path: true + status: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.default.yml b/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.default.yml new file mode 100644 index 000000000..7fffdeeed --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.default.yml @@ -0,0 +1,70 @@ +uuid: 187d14a5-87ce-471b-a7d4-f21c8783d7e5 +langcode: en +status: true +dependencies: + config: + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video + module: + - media + - path +_core: + default_config_hash: S_X8B5zavbi_F_PrDaNt-pllmj1XIk33JtGZKamibUY +id: media.remote_video.default +targetEntityType: media +bundle: remote_video +mode: default +content: + created: + type: datetime_timestamp + weight: 4 + region: content + settings: { } + third_party_settings: { } + field_media_oembed_video: + type: oembed_textfield + weight: 1 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 5 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 6 + region: content + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 3 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.media_library.yml b/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.media_library.yml new file mode 100644 index 000000000..247a051ea --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.media_library.yml @@ -0,0 +1,30 @@ +uuid: 6e59120f-6821-436d-9c98-85b746b97f70 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video +_core: + default_config_hash: Ytx6WfIDxRd2ZrtX2sN2ZyJhBxsJPuN85Zk5fCqXReo +id: media.remote_video.media_library +targetEntityType: media +bundle: remote_video +mode: media_library +content: + name: + type: string_textfield + settings: + size: 60 + placeholder: '' + weight: 0 + third_party_settings: { } + region: content +hidden: + created: true + field_media_oembed_video: true + langcode: true + path: true + status: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.basic_page.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.basic_page.default.yml new file mode 100644 index 000000000..5d35c2064 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.basic_page.default.yml @@ -0,0 +1,119 @@ +uuid: 6f54e5bc-192e-4ee6-a69b-56de9b0d91ae +langcode: en +status: true +dependencies: + config: + - field.field.node.basic_page.body + - field.field.node.basic_page.field_meta_tags + - field.field.node.basic_page.field_next_audit_due + - node.type.basic_page + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - datetime + - metatag + - path + - text +_core: + default_config_hash: 3nKdxGbLaRFcUfWENur-SrGcJcQmpaJxvq-SgSvv1_w +id: node.basic_page.default +targetEntityType: node +bundle: basic_page +mode: default +content: + body: + type: text_textarea_with_summary + weight: 121 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + third_party_settings: { } + region: content + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_meta_tags: + weight: 122 + settings: + sidebar: true + third_party_settings: { } + type: metatag_firehose + region: content + field_next_audit_due: + weight: 123 + settings: { } + third_party_settings: { } + type: datetime_default + region: content + flag: + weight: 10 + settings: { } + third_party_settings: { } + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 100 + settings: { } + region: content + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + settings: + display_label: true + weight: 15 + region: content + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 120 + region: content + third_party_settings: { } + sticky: + type: boolean_checkbox + settings: + display_label: true + weight: 16 + region: content + third_party_settings: { } + title: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + region: content + third_party_settings: { } + url_redirects: + weight: 50 + settings: { } + third_party_settings: { } + region: content +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.consultation_response.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.consultation_response.default.yml new file mode 100644 index 000000000..7c3b61c10 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.consultation_response.default.yml @@ -0,0 +1,117 @@ +uuid: 1f40b4b8-dbbe-4d02-a348-0133f6106ec9 +langcode: en +status: true +dependencies: + config: + - field.field.node.consultation_response.field_attachment + - field.field.node.consultation_response.field_consultation_stage + - field.field.node.consultation_response.field_meta_tags + - field.field.node.consultation_response.field_response_type + - node.type.consultation_response + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - media_library + - metatag + - path +id: node.consultation_response.default +targetEntityType: node +bundle: consultation_response +mode: default +content: + created: + type: datetime_timestamp + weight: 6 + region: content + settings: { } + third_party_settings: { } + field_attachment: + type: media_library_widget + weight: 3 + region: content + settings: + media_types: { } + third_party_settings: { } + field_consultation_stage: + type: options_select + weight: 1 + region: content + settings: { } + third_party_settings: { } + field_meta_tags: + type: metatag_firehose + weight: 26 + region: content + settings: + sidebar: true + third_party_settings: { } + field_response_type: + type: options_select + weight: 2 + region: content + settings: { } + third_party_settings: { } + langcode: + type: language_select + weight: 4 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 11 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 9 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 7 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 12 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 8 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 10 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.featured_content.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.featured_content.default.yml new file mode 100644 index 000000000..024f99129 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.featured_content.default.yml @@ -0,0 +1,123 @@ +uuid: 97456bc4-cb26-471f-9475-f114a6f49be6 +langcode: en +status: true +dependencies: + config: + - field.field.node.featured_content.field_link + - field.field.node.featured_content.field_meta_tags + - field.field.node.featured_content.field_photo + - field.field.node.featured_content.field_tagline + - node.type.featured_content + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - link + - media_library + - metatag + - path + - text +id: node.featured_content.default +targetEntityType: node +bundle: featured_content +mode: default +content: + created: + type: datetime_timestamp + weight: 6 + region: content + settings: { } + third_party_settings: { } + field_link: + type: link_default + weight: 3 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + field_meta_tags: + type: metatag_firehose + weight: 26 + region: content + settings: + sidebar: true + third_party_settings: { } + field_photo: + type: media_library_widget + weight: 1 + region: content + settings: + media_types: { } + third_party_settings: { } + field_tagline: + type: text_textfield + weight: 2 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + langcode: + type: language_select + weight: 4 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 11 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 9 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 7 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 12 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 8 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 10 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.news.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.news.default.yml new file mode 100644 index 000000000..20741a041 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.news.default.yml @@ -0,0 +1,150 @@ +uuid: dbb240e7-4680-4e25-b226-ca2b1734a1ee +langcode: en +status: true +dependencies: + config: + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - datetime + - media_library + - media_library_edit + - metatag + - path + - text +_core: + default_config_hash: OlTwzkcvXeWJ4WGCY1bzVd_jsBob_uikUQvODADN1mw +id: node.news.default +targetEntityType: node +bundle: news +mode: default +content: + body: + type: text_textarea_with_summary + weight: 5 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + created: + type: datetime_timestamp + weight: 6 + region: content + settings: { } + third_party_settings: { } + field_archive: + type: boolean_checkbox + weight: 1 + region: content + settings: + display_label: true + third_party_settings: { } + field_meta_tags: + type: metatag_firehose + weight: 15 + region: content + settings: + sidebar: true + third_party_settings: { } + field_photo: + type: media_library_widget + weight: 4 + region: content + settings: + media_types: { } + third_party_settings: + media_library_edit: + show_edit: '1' + field_published_date: + type: datetime_default + weight: 2 + region: content + settings: { } + third_party_settings: { } + field_teaser: + type: string_textfield + weight: 3 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + flag: + weight: 10 + region: content + settings: { } + third_party_settings: { } + langcode: + type: language_select + weight: 7 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 13 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 11 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 9 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 14 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 10 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 8 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 12 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.publication.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.publication.default.yml new file mode 100644 index 000000000..97ec3d4d8 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.publication.default.yml @@ -0,0 +1,148 @@ +uuid: 02d08785-5c6d-4b49-83dd-46842a881530 +langcode: en +status: true +dependencies: + config: + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - datetime + - media_library + - media_library_edit + - metatag + - path + - text +_core: + default_config_hash: 8EG7CL4bkYhCFJykpOT74o26u9Kqd5i5boJpPLhtZWc +id: node.publication.default +targetEntityType: node +bundle: publication +mode: default +content: + body: + type: text_textarea_with_summary + weight: 4 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + created: + type: datetime_timestamp + weight: 8 + region: content + settings: { } + third_party_settings: { } + field_archive: + type: boolean_checkbox + weight: 1 + region: content + settings: + display_label: true + third_party_settings: { } + field_attachment: + type: media_library_widget + weight: 5 + region: content + settings: + media_types: { } + third_party_settings: + media_library_edit: + show_edit: '1' + field_meta_tags: + type: metatag_firehose + weight: 15 + region: content + settings: + sidebar: true + third_party_settings: { } + field_publication_type: + type: options_select + weight: 3 + region: content + settings: { } + third_party_settings: { } + field_published_date: + type: datetime_default + weight: 2 + region: content + settings: { } + third_party_settings: { } + flag: + weight: 10 + region: content + settings: { } + third_party_settings: { } + langcode: + type: language_select + weight: 6 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 13 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 11 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 9 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 14 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 10 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 7 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 12 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.respresentations.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.respresentations.default.yml new file mode 100644 index 000000000..6c9ff4dee --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.respresentations.default.yml @@ -0,0 +1,122 @@ +uuid: a719c141-3515-4cb1-9ee9-8a3d7d550963 +langcode: en +status: true +dependencies: + config: + - field.field.node.respresentations.field_attachment + - field.field.node.respresentations.field_meta_tags + - field.field.node.respresentations.field_representation_stage + - field.field.node.respresentations.field_response_type + - node.type.respresentations + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - media_library + - media_library_edit + - metatag + - path +id: node.respresentations.default +targetEntityType: node +bundle: respresentations +mode: default +content: + created: + type: datetime_timestamp + weight: 3 + region: content + settings: { } + third_party_settings: { } + field_attachment: + type: media_library_widget + weight: 12 + region: content + settings: + media_types: + - document + - file + third_party_settings: + media_library_edit: + show_edit: '1' + field_meta_tags: + type: metatag_firehose + weight: 13 + region: content + settings: + sidebar: true + third_party_settings: { } + field_representation_stage: + type: options_select + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_response_type: + type: options_select + weight: 11 + region: content + settings: { } + third_party_settings: { } + langcode: + type: language_select + weight: 1 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 8 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 6 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 4 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 9 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 5 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 2 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 7 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.webform.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.webform.default.yml new file mode 100644 index 000000000..9aa60867b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.webform.default.yml @@ -0,0 +1,102 @@ +uuid: 37c8b990-8e33-4ee5-967b-de2d0ab3bce3 +langcode: en +status: true +dependencies: + config: + - field.field.node.webform.body + - field.field.node.webform.webform + - node.type.webform + module: + - path + - text + - webform +_core: + default_config_hash: A3evv2pt6d-bKCPcgjXA5VGTemXWOxG3lSXvWiRWcck +id: node.webform.default +targetEntityType: node +bundle: webform +mode: default +content: + body: + type: text_textarea_with_summary + weight: 0 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + third_party_settings: { } + region: content + created: + type: datetime_timestamp + weight: 10 + settings: { } + third_party_settings: { } + region: content + flag: + weight: 10 + settings: { } + third_party_settings: { } + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + path: + type: path + weight: 30 + settings: { } + third_party_settings: { } + region: content + promote: + type: boolean_checkbox + settings: + display_label: true + weight: 15 + third_party_settings: { } + region: content + status: + type: boolean_checkbox + settings: + display_label: true + weight: 120 + region: content + third_party_settings: { } + sticky: + type: boolean_checkbox + settings: + display_label: true + weight: 16 + third_party_settings: { } + region: content + title: + type: string_textfield + weight: -5 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + uid: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + third_party_settings: { } + region: content + url_redirects: + weight: 50 + settings: { } + third_party_settings: { } + region: content + webform: + weight: 0 + settings: { } + third_party_settings: { } + type: webform_entity_reference_select + region: content +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.paragraph.faq_accordion.default.yml b/project/config/boundarycommission/config/core.entity_form_display.paragraph.faq_accordion.default.yml new file mode 100644 index 000000000..2668892c7 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.paragraph.faq_accordion.default.yml @@ -0,0 +1,36 @@ +uuid: ee93e173-f154-475c-9251-6e968493d75c +langcode: en +status: true +dependencies: + config: + - field.field.paragraph.faq_accordion.field_answer + - field.field.paragraph.faq_accordion.field_question + - paragraphs.paragraphs_type.faq_accordion + module: + - text +_core: + default_config_hash: 1SEm1W1dc0VrhYJ8MPthdyrWiP-n44xFZCD2TWvOEug +id: paragraph.faq_accordion.default +targetEntityType: paragraph +bundle: faq_accordion +mode: default +content: + field_answer: + weight: 1 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + type: text_textarea + region: content + field_question: + weight: 0 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content +hidden: + created: true + status: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.user.user.default.yml b/project/config/boundarycommission/config/core.entity_form_display.user.user.default.yml new file mode 100644 index 000000000..74243c104 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.user.user.default.yml @@ -0,0 +1,46 @@ +uuid: 8edc5a47-cb9b-4717-a7bd-72755c40d195 +langcode: en +status: true +dependencies: + config: + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - path + - user +_core: + default_config_hash: K-1rBM8mTIkFp9RqOC2tMRUukOQ1xbRCfSKK8dEddnA +id: user.user.default +targetEntityType: user +bundle: user +mode: default +content: + account: + weight: -10 + region: content + contact: + weight: 5 + region: content + language: + weight: 0 + region: content + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + timezone: + weight: 6 + region: content + user_picture: + type: image_image + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + weight: -1 + region: content +hidden: + langcode: true diff --git a/project/config/boundarycommission/config/core.entity_form_mode.media.media_library.yml b/project/config/boundarycommission/config/core.entity_form_mode.media.media_library.yml new file mode 100644 index 000000000..64b74c795 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_mode.media.media_library.yml @@ -0,0 +1,15 @@ +uuid: 34c8a95e-1cb2-4bcd-b184-bc4084677b9b +langcode: en +status: true +dependencies: + module: + - media + enforced: + module: + - media_library +_core: + default_config_hash: Tdhz-aDHfDoV1Ul9umtItxGTrjkFzoNAkDw8FWXjYA0 +id: media.media_library +label: 'Media library' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_form_mode.user.register.yml b/project/config/boundarycommission/config/core.entity_form_mode.user.register.yml new file mode 100644 index 000000000..8b2cc5e13 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_mode.user.register.yml @@ -0,0 +1,12 @@ +uuid: a9be4fb0-b0a4-46e0-b472-d502d155ff24 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI +id: user.register +label: Register +targetEntityType: user +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.block_content.basic_block.default.yml b/project/config/boundarycommission/config/core.entity_view_display.block_content.basic_block.default.yml new file mode 100644 index 000000000..1ab490d1a --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.block_content.basic_block.default.yml @@ -0,0 +1,26 @@ +uuid: 15c3c5cc-6b60-4aaf-813f-0b1ec3cf521a +langcode: en +status: true +dependencies: + config: + - block_content.type.basic_block + - field.field.block_content.basic_block.body + module: + - text +_core: + default_config_hash: BVHx79y9g4xC--XwjHLrLmI0zUxDquJFMsqvPWtPeds +id: block_content.basic_block.default +targetEntityType: block_content +bundle: basic_block +mode: default +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + langcode: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.block_content.map.default.yml b/project/config/boundarycommission/config/core.entity_view_display.block_content.map.default.yml new file mode 100644 index 000000000..c8e056c05 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.block_content.map.default.yml @@ -0,0 +1,53 @@ +uuid: b7988a63-32bf-4ab7-bc7c-dd92da73c4bd +langcode: en +status: true +dependencies: + config: + - block_content.type.map + - field.field.block_content.map.field_map + - filter.format.plain_text + module: + - geolocation +_core: + default_config_hash: yi9DQ4oT_bjHZ8kSymfpZBui6TYNAnN3P11ZE7S7j7E +id: block_content.map.default +targetEntityType: block_content +bundle: map +mode: default +content: + field_map: + type: geolocation_map + label: hidden + settings: + set_marker: true + show_label: false + common_map: true + show_delta_label: false + use_overridden_map_settings: false + title: '' + info_text: + value: '' + format: plain_text + centre: + fit_bounds: + enable: true + weight: -101 + settings: + reset_zoom: true + map_center_id: fit_bounds + map_provider_id: google_maps + map_provider_settings: + type: ROADMAP + zoom: 15 + minZoom: 0 + maxZoom: 20 + height: 400px + width: 100% + gestureHandling: auto + data_provider_settings: { } + third_party_settings: { } + weight: 1 + region: content +hidden: + langcode: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.audio.default.yml b/project/config/boundarycommission/config/core.entity_view_display.media.audio.default.yml new file mode 100644 index 000000000..52904493b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.audio.default.yml @@ -0,0 +1,33 @@ +uuid: c028c527-096d-4579-8084-cab9613cac75 +langcode: en +status: true +dependencies: + config: + - field.field.media.audio.field_media_audio_file + - media.type.audio + module: + - file +_core: + default_config_hash: SWf3MLdbEKvlx4Vs6iPwDHu5pr1aKT0SJmgp8no73-k +id: media.audio.default +targetEntityType: media +bundle: audio +mode: default +content: + field_media_audio_file: + type: file_audio + weight: 0 + label: visually_hidden + settings: + controls: true + autoplay: false + loop: false + multiple_file_display_type: tags + third_party_settings: { } + region: content +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.audio.embed.yml b/project/config/boundarycommission/config/core.entity_view_display.media.audio.embed.yml new file mode 100644 index 000000000..6f05c2c23 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.audio.embed.yml @@ -0,0 +1,39 @@ +uuid: f971f72e-3b3a-412c-a32c-0ac6ef079694 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.embed + - field.field.media.audio.field_media_audio_file + - media.type.audio + module: + - file + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: _3MAZyasP5vGbSpKJlG1RxKNuMrYwbEK3_20iKfv-bo +id: media.audio.embed +targetEntityType: media +bundle: audio +mode: embed +content: + field_media_audio_file: + type: file_audio + weight: 0 + label: visually_hidden + settings: + controls: true + autoplay: false + loop: false + multiple_file_display_type: tags + third_party_settings: { } + region: content +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.audio.media_library.yml b/project/config/boundarycommission/config/core.entity_view_display.media.audio.media_library.yml new file mode 100644 index 000000000..cae770314 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.audio.media_library.yml @@ -0,0 +1,40 @@ +uuid: 97127229-9fe4-4baa-a3d4-d2b31b1d1382 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.audio.field_media_audio_file + - image.style.medium + - media.type.audio + module: + - image + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: oaY72NXOtY0BXcl72JTo0MFP1tTxAL4WOq1Dn5oCbEI +id: media.audio.media_library +targetEntityType: media +bundle: audio +mode: media_library +content: + thumbnail: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: medium + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } +hidden: + created: true + field_media_audio_file: true + langcode: true + name: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.document.default.yml b/project/config/boundarycommission/config/core.entity_view_display.media.document.default.yml new file mode 100644 index 000000000..9473c2b44 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.document.default.yml @@ -0,0 +1,30 @@ +uuid: c679f098-ddd4-4021-949b-99f82dcf257d +langcode: en +status: true +dependencies: + config: + - field.field.media.document.field_media_file + - media.type.document + module: + - file +_core: + default_config_hash: lNGxt0E-7ML2forDcjStFn-nY_-Ry6Gcz9FiezjbTN0 +id: media.document.default +targetEntityType: media +bundle: document +mode: default +content: + field_media_file: + type: file_default + weight: 0 + region: content + label: visually_hidden + settings: + use_description_as_link_text: true + third_party_settings: { } +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.document.embed.yml b/project/config/boundarycommission/config/core.entity_view_display.media.document.embed.yml new file mode 100644 index 000000000..bb24075a4 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.document.embed.yml @@ -0,0 +1,36 @@ +uuid: aee13298-9ef7-48a9-acfe-41b2e1b12ed4 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.embed + - field.field.media.document.field_media_file + - media.type.document + module: + - file + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: peU9aUTP0pJ1UCdZWQMv685MidbkZH1ilC0oiiLHKwc +id: media.document.embed +targetEntityType: media +bundle: document +mode: embed +content: + field_media_file: + type: file_default + weight: 0 + region: content + label: visually_hidden + settings: + use_description_as_link_text: true + third_party_settings: { } +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.document.media_library.yml b/project/config/boundarycommission/config/core.entity_view_display.media.document.media_library.yml new file mode 100644 index 000000000..dfafb4953 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.document.media_library.yml @@ -0,0 +1,40 @@ +uuid: 09b3b89a-219f-4fb9-b52f-88e00a14516f +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.document.field_media_file + - image.style.medium + - media.type.document + module: + - image + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: KC7hdDZklJSTH9Lqoud8KjHqBGpQjzt-yNPQ_EaEdzE +id: media.document.media_library +targetEntityType: media +bundle: document +mode: media_library +content: + thumbnail: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: medium + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } +hidden: + created: true + field_media_file: true + langcode: true + name: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.file.default.yml b/project/config/boundarycommission/config/core.entity_view_display.media.file.default.yml new file mode 100644 index 000000000..21a35ad0f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.file.default.yml @@ -0,0 +1,29 @@ +uuid: 30f5fffd-a86a-4587-b3ef-70a5ca37a03d +langcode: en +status: true +dependencies: + config: + - field.field.media.file.field_media_file + - media.type.file + module: + - file +_core: + default_config_hash: 9s0lWIanCnW5Xrrkmedxohs9F0yk4LO8ZcmVQ9xyuu4 +id: media.file.default +targetEntityType: media +bundle: file +mode: default +content: + field_media_file: + label: visually_hidden + settings: { } + third_party_settings: { } + type: file_default + weight: 1 + region: content +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.file.embed.yml b/project/config/boundarycommission/config/core.entity_view_display.media.file.embed.yml new file mode 100644 index 000000000..2e66b80e8 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.file.embed.yml @@ -0,0 +1,35 @@ +uuid: 1e498b6b-e9ec-405e-9abd-25dcdaae88bc +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.embed + - field.field.media.file.field_media_file + - media.type.file + module: + - file + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: mQ8XylHW2Fnp3dHD_5zW9h1L-e0oWLyLiCUo43jSjr0 +id: media.file.embed +targetEntityType: media +bundle: file +mode: embed +content: + field_media_file: + label: visually_hidden + settings: { } + third_party_settings: { } + type: file_default + weight: 1 + region: content +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.file.media_library.yml b/project/config/boundarycommission/config/core.entity_view_display.media.file.media_library.yml new file mode 100644 index 000000000..aff3c2035 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.file.media_library.yml @@ -0,0 +1,40 @@ +uuid: 4fbb0b4d-5660-4f43-bd4e-b8df0cf5afdf +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.file.field_media_file + - image.style.medium + - media.type.file + module: + - image + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: dsIt0z7SQucfb3AnMmOXkbmVVQJQEbdCEANaX1eIj-8 +id: media.file.media_library +targetEntityType: media +bundle: file +mode: media_library +content: + thumbnail: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: medium + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } +hidden: + created: true + field_media_file: true + langcode: true + name: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float.yml new file mode 100644 index 000000000..4983426e5 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float.yml @@ -0,0 +1,43 @@ +uuid: f05e4416-b739-4fb2-93c1-53cb11aa1c5b +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.article_float + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: Qc84qZsZg9j4C_HhqcJba30UIYiFPs-k8mwZBUHnkhg +id: media.image.article_float +targetEntityType: media +bundle: image +mode: article_float +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float_expandable.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float_expandable.yml new file mode 100644 index 000000000..da5876d15 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float_expandable.yml @@ -0,0 +1,43 @@ +uuid: 6029b5b3-d248-47bd-bb5f-33cd2bffd840 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.article_float_expandable + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_expandable + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: lXvf_LsfdSQCILbHoFEq6v62HST4Tp3exxSnqTLWzz0 +id: media.image.article_float_expandable +targetEntityType: media +bundle: image +mode: article_float_expandable +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_expandable + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full.yml new file mode 100644 index 000000000..32b10ef3c --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full.yml @@ -0,0 +1,43 @@ +uuid: dfa54c5b-eb7f-4b41-b493-e80a70a209a3 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.article_full + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_xl + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: WiJyWt8e9wuJCQyCd8hMoC84PwDZvegFc3eUum8e_dU +id: media.image.article_full +targetEntityType: media +bundle: image +mode: article_full +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_xl + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full_expandable.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full_expandable.yml new file mode 100644 index 000000000..57799b798 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full_expandable.yml @@ -0,0 +1,43 @@ +uuid: 92d3745b-8ab6-41d9-8c1d-86b94e686d0a +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.article_full_expandable + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_xl_expandable + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: BHHXqTGWRoOm9ejVm7lM8VT4iSke3Fo7GQtM2S1z2_Q +id: media.image.article_full_expandable +targetEntityType: media +bundle: image +mode: article_full_expandable +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_xl_expandable + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_deep.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_deep.yml new file mode 100644 index 000000000..1e40455fe --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_deep.yml @@ -0,0 +1,43 @@ +uuid: 5c27e75d-301c-4317-af0c-375053c8b77c +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.banner_deep + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.deep_banner + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: 41mw0TPymocs4okh-ufJ7qGHVk0OT2LoUi15XPbO5lA +id: media.image.banner_deep +targetEntityType: media +bundle: image +mode: banner_deep +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: deep_banner + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_thin.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_thin.yml new file mode 100644 index 000000000..27ad2be1c --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_thin.yml @@ -0,0 +1,43 @@ +uuid: 881be809-97d9-41e7-bd72-e50f739da44e +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.banner_thin + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.thin_banner + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: gr2f1jIzgMhAdnL4kmdCjzvKc8xNGTNzwxNXwc03uHw +id: media.image.banner_thin +targetEntityType: media +bundle: image +mode: banner_thin +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: thin_banner + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.card_large.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.card_large.yml new file mode 100644 index 000000000..5c24145b1 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.card_large.yml @@ -0,0 +1,43 @@ +uuid: 03d17715-6a0c-4961-a640-9619cb4fe9e0 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.card_large + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.card_large + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: p2gxsFGwzTyWtMNul8UmbFzaZSoR3o_KKB_0LlORMNw +id: media.image.card_large +targetEntityType: media +bundle: image +mode: card_large +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: card_large + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.card_small.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.card_small.yml new file mode 100644 index 000000000..41bcaae95 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.card_small.yml @@ -0,0 +1,43 @@ +uuid: 93687edb-42e0-46f8-90aa-1ed857942cc5 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.card_small + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.card_small + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: kLQkf7o6L2YDhUnGENm-mYXyJi7JU97qPAUXEcGfCDw +id: media.image.card_small +targetEntityType: media +bundle: image +mode: card_small +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: card_small + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.default.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.default.yml new file mode 100644 index 000000000..bc2dbdd26 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.default.yml @@ -0,0 +1,37 @@ +uuid: feb2e461-c243-49b8-98d9-6fcc98bdf0b4 +langcode: en +status: true +dependencies: + config: + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - image.style.large + - media.type.image + module: + - image +_core: + default_config_hash: KjXMi3mwdORBHjhOy4Gr7GjvcDx9ipgdXz-c1w8B3HA +id: media.image.default +targetEntityType: media +bundle: image +mode: default +content: + field_media_image: + label: visually_hidden + settings: + image_style: large + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } + type: image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.embed.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.embed.yml new file mode 100644 index 000000000..5975ca416 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.embed.yml @@ -0,0 +1,43 @@ +uuid: 8ebc912c-e181-4ca7-8c8f-6d203c2828f9 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.embed + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: WpUYUOcNZP_vxIPLpZW1INpkWfMC86pYbfS9DU-dKzE +id: media.image.embed +targetEntityType: media +bundle: image +mode: embed +content: + field_media_image: + type: responsive_image + weight: 0 + region: content + label: hidden + settings: + responsive_image_style: inline + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.feature_card.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.feature_card.yml new file mode 100644 index 000000000..b16aaf245 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.feature_card.yml @@ -0,0 +1,43 @@ +uuid: 396edee5-8c39-46d8-ac71-81f51c305ec6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.feature_card + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.feature_card + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: gP6vNslMIhRpr1qxKQ6flSM0QHD6SuiPKWSrSrQEK2w +id: media.image.feature_card +targetEntityType: media +bundle: image +mode: feature_card +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: feature_card + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.landing_full.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.landing_full.yml new file mode 100644 index 000000000..3a21f1f43 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.landing_full.yml @@ -0,0 +1,43 @@ +uuid: caac53eb-6d8a-49a4-9223-4b5a584016d4 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.landing_full + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.landing_full + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: kRrQsKPDGqQdo9Pv7B1YREHsAPuvGUeFJuOgki7PoL4 +id: media.image.landing_full +targetEntityType: media +bundle: image +mode: landing_full +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: landing_full + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float.yml new file mode 100644 index 000000000..df97e907a --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float.yml @@ -0,0 +1,43 @@ +uuid: 99c523d7-283c-42c4-942d-100f00f0dad6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.landscape_float + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: pWaJlpPLCDQKiaVZcKSXjEaeOrHnqHv5q0SGYo-SZ8s +id: media.image.landscape_float +targetEntityType: media +bundle: image +mode: landscape_float +content: + field_media_image: + type: responsive_image + weight: 0 + region: content + label: hidden + settings: + responsive_image_style: inline + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float_xp.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float_xp.yml new file mode 100644 index 000000000..4992b2289 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float_xp.yml @@ -0,0 +1,43 @@ +uuid: 8b4719aa-7efe-46dc-a709-aa8a23a5b3c5 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.landscape_float_xp + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_expandable + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: cTmD6ssXtuitm5nMp8IQpiPT8fS8DYDJzUSpIZJsIXo +id: media.image.landscape_float_xp +targetEntityType: media +bundle: image +mode: landscape_float_xp +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_expandable + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full.yml new file mode 100644 index 000000000..f1bb97a24 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full.yml @@ -0,0 +1,43 @@ +uuid: 1760409b-3157-4175-8535-e0ee367d90d2 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.landscape_full + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_xl + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: 96tn1v3y9l5NtT-HW-P4H2q9W6Il4KE3J6byKFyHU_s +id: media.image.landscape_full +targetEntityType: media +bundle: image +mode: landscape_full +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_xl + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full_xp.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full_xp.yml new file mode 100644 index 000000000..59f7ed177 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full_xp.yml @@ -0,0 +1,43 @@ +uuid: e4df9795-59b0-4542-b50a-e17fe97d0c58 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.landscape_full_xp + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_xl_expandable + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: NHh4MGEbf8wZjJ5_1Tqz_IJqrgAkMaho88bxrPNjHjk +id: media.image.landscape_full_xp +targetEntityType: media +bundle: image +mode: landscape_full_xp +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_xl_expandable + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.media_library.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.media_library.yml new file mode 100644 index 000000000..66bc5a455 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.media_library.yml @@ -0,0 +1,42 @@ +uuid: 6d2dcde3-62db-4e0e-8473-b28923295393 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - image.style.medium + - media.type.image + module: + - image + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: JA8E-4N1UoiyXjLk2lPVpK0EE7cgehKVC6oHCmOrFuk +id: media.image.media_library +targetEntityType: media +bundle: image +mode: media_library +content: + field_media_image: + label: hidden + settings: + image_style: medium + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } + type: image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.news_thumbnail.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.news_thumbnail.yml new file mode 100644 index 000000000..4ea43282a --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.news_thumbnail.yml @@ -0,0 +1,43 @@ +uuid: 5659ee16-c211-4652-b611-5bcebaa61b4a +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.news_thumbnail + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.news_thumbnail + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: HkefXybTV05o4ma5sBCLcB2qo4o-QkwBdtdINcIga-Q +id: media.image.news_thumbnail +targetEntityType: media +bundle: image +mode: news_thumbnail +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: news_thumbnail + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float.yml new file mode 100644 index 000000000..9c795d229 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float.yml @@ -0,0 +1,43 @@ +uuid: 6fc2e212-cf16-4fcc-92d2-2d7f7d2be754 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.portrait_float + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.portrait_float + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: wq-slZgfc1cZGKHX3R1Dj3fvY3Mcy8qDNGViyJlED-4 +id: media.image.portrait_float +targetEntityType: media +bundle: image +mode: portrait_float +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: portrait_float + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float_xp.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float_xp.yml new file mode 100644 index 000000000..41373f144 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float_xp.yml @@ -0,0 +1,43 @@ +uuid: aa631d61-c0b0-4e7a-b496-045bb045d284 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.portrait_float_xp + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.portrait_float_expandable + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: aIZChlQ4tUNkwbt8vT9FkaIyNiLT2AIJFp3GUBOLCxo +id: media.image.portrait_float_xp +targetEntityType: media +bundle: image +mode: portrait_float_xp +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: portrait_float_expandable + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_full.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_full.yml new file mode 100644 index 000000000..09e216d49 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_full.yml @@ -0,0 +1,43 @@ +uuid: 3cf80f3f-55ff-49a6-b0a7-23f4c0c215ad +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.portrait_full + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.portrait_full_width + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: K3k7D7D_X7FaBE7eO43FG9ECqUBSprFLTsyjgk3ap0A +id: media.image.portrait_full +targetEntityType: media +bundle: image +mode: portrait_full +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: portrait_full_width + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.slide.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.slide.yml new file mode 100644 index 000000000..57003ac0f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.slide.yml @@ -0,0 +1,43 @@ +uuid: 5c03a0da-592e-47d1-97cb-a8c3fc6310aa +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.slide + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.slideshow + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: jNaDxp9BRo-GpXBS_FcuXsdr0tjMTbh7D7TLRz7-744 +id: media.image.slide +targetEntityType: media +bundle: image +mode: slide +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: slideshow + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.unity_3_col_images.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.unity_3_col_images.yml new file mode 100644 index 000000000..6a04487b9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.unity_3_col_images.yml @@ -0,0 +1,43 @@ +uuid: 69af3cb7-471d-4c0c-8425-2b59868e45df +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.unity_3_col_images + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.unity_3_col_images + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: 4Ai1EoX1HS4Xlv_-3NJ3lANlA2-FqK-Kzy20ZBYE1no +id: media.image.unity_3_col_images +targetEntityType: media +bundle: image +mode: unity_3_col_images +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: unity_3_col_images + image_link: '' + image_loading: + attribute: eager + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.default.yml b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.default.yml new file mode 100644 index 000000000..5b166dc73 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.default.yml @@ -0,0 +1,34 @@ +uuid: e9f54d1b-d149-42d4-9540-f1922f086d34 +langcode: en +status: true +dependencies: + config: + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video + module: + - media +_core: + default_config_hash: gUaDZKMQD3lmLKWPn727X3JHVdKJ525g4EJCCcDVAqk +id: media.remote_video.default +targetEntityType: media +bundle: remote_video +mode: default +content: + field_media_oembed_video: + type: oembed + weight: 0 + label: hidden + settings: + max_width: 0 + max_height: 0 + loading: + attribute: eager + third_party_settings: { } + region: content +hidden: + created: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.embed.yml b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.embed.yml new file mode 100644 index 000000000..33b6d2546 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.embed.yml @@ -0,0 +1,40 @@ +uuid: ebf1ad56-6f35-475a-a163-e8bcd7957ef3 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.embed + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video + module: + - layout_builder + - media +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: Of8WLiNbeyFRyfnhvONBRETmFUwO9MMsg2zkVInvu_Y +id: media.remote_video.embed +targetEntityType: media +bundle: remote_video +mode: embed +content: + field_media_oembed_video: + type: oembed + weight: 0 + label: hidden + settings: + max_width: 0 + max_height: 0 + loading: + attribute: eager + third_party_settings: { } + region: content +hidden: + created: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.media_library.yml b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.media_library.yml new file mode 100644 index 000000000..33a71001d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.media_library.yml @@ -0,0 +1,41 @@ +uuid: e25fe54b-c9fd-48d5-8fd4-e41a652e9bfd +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.remote_video.field_media_oembed_video + - image.style.medium + - media.type.remote_video + module: + - image + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: s_qSuJ0lKjfrGfrxBFt6CCEL-gANHU5t6QmwwtZqCfc +id: media.remote_video.media_library +targetEntityType: media +bundle: remote_video +mode: media_library +content: + thumbnail: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: medium + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } +hidden: + created: true + field_media_oembed_video: true + langcode: true + name: true + search_api_excerpt: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.default.yml new file mode 100644 index 000000000..aef031477 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.default.yml @@ -0,0 +1,33 @@ +uuid: 38b5f85f-f3d5-4a70-ac93-f99f2e1cf850 +langcode: en +status: true +dependencies: + config: + - field.field.node.basic_page.body + - field.field.node.basic_page.field_meta_tags + - field.field.node.basic_page.field_next_audit_due + - node.type.basic_page + module: + - text + - user +_core: + default_config_hash: la60ebQM7BAy0G_pimE_s5LAn8J7P64Aznad7Dhvrh0 +id: node.basic_page.default +targetEntityType: node +bundle: basic_page +mode: default +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + content_moderation_control: true + field_meta_tags: true + field_next_audit_due: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.diff.yml new file mode 100644 index 000000000..7dffa18e9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.diff.yml @@ -0,0 +1,76 @@ +uuid: c11e7332-3e70-46af-8ab6-7d7dea428ceb +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.basic_page.body + - field.field.node.basic_page.field_meta_tags + - field.field.node.basic_page.field_next_audit_due + - node.type.basic_page + module: + - datetime + - field_group + - layout_builder + - metatag + - text + - user +third_party_settings: + layout_builder: + allow_custom: false + enabled: false + field_group: + group_additional_content_details: + children: + - field_next_audit_due + - field_meta_tags + parent_name: '' + weight: 1 + format_type: html_element + region: content + format_settings: + id: '' + classes: field-collection + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast + label: 'Additional content details' +_core: + default_config_hash: n9P2zod3oHe_I7EbTNUo0aJ9t6Ew9N9BOdYiJGK2-kI +id: node.basic_page.diff +targetEntityType: node +bundle: basic_page +mode: diff +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content + field_meta_tags: + type: metatag_empty_formatter + weight: 1 + region: content + label: inline + settings: { } + third_party_settings: { } + field_next_audit_due: + type: datetime_default + weight: 0 + region: content + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.teaser.yml b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.teaser.yml new file mode 100644 index 000000000..bd5f35377 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.teaser.yml @@ -0,0 +1,43 @@ +uuid: 77da0f4d-943b-4108-a87f-da45fe0c6502 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.basic_page.body + - field.field.node.basic_page.field_meta_tags + - field.field.node.basic_page.field_next_audit_due + - node.type.basic_page + module: + - text + - user +_core: + default_config_hash: J6J57T3VRup2KPkKLsZdXP7DhNjKKTG1vlHkszNcmtE +id: node.basic_page.teaser +targetEntityType: node +bundle: basic_page +mode: teaser +content: + body: + label: hidden + type: text_summary_or_trimmed + weight: 101 + settings: + trim_length: 600 + third_party_settings: { } + region: content + content_moderation_control: + weight: -20 + settings: { } + third_party_settings: { } + region: content + links: + weight: 100 + settings: { } + third_party_settings: { } + region: content +hidden: + field_meta_tags: true + field_next_audit_due: true + langcode: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.default.yml new file mode 100644 index 000000000..eb7fdeea9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.default.yml @@ -0,0 +1,48 @@ +uuid: 4086b1ca-b7c6-467e-86e1-6d29c0833c6a +langcode: en +status: true +dependencies: + config: + - field.field.node.consultation_response.field_attachment + - field.field.node.consultation_response.field_consultation_stage + - field.field.node.consultation_response.field_meta_tags + - field.field.node.consultation_response.field_response_type + - node.type.consultation_response + module: + - user +id: node.consultation_response.default +targetEntityType: node +bundle: consultation_response +mode: default +content: + field_attachment: + type: entity_reference_entity_view + label: above + settings: + view_mode: embed + link: false + third_party_settings: { } + weight: 2 + region: content + field_consultation_stage: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 0 + region: content + field_response_type: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.diff.yml new file mode 100644 index 000000000..f956a6bc6 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.diff.yml @@ -0,0 +1,82 @@ +uuid: 45040251-1f57-4264-932b-72f48c82118e +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.consultation_response.field_attachment + - field.field.node.consultation_response.field_consultation_stage + - field.field.node.consultation_response.field_meta_tags + - field.field.node.consultation_response.field_response_type + - node.type.consultation_response + module: + - field_group + - layout_builder + - metatag + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + field_group: + group_additional_content_details: + children: + - field_meta_tags + label: 'Additional content details' + parent_name: '' + region: content + weight: 3 + format_type: html_element + format_settings: + classes: field-collection + show_empty_fields: false + id: '' + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast +id: node.consultation_response.diff +targetEntityType: node +bundle: consultation_response +mode: diff +content: + field_attachment: + type: entity_reference_entity_view + label: above + settings: + view_mode: embed + link: false + third_party_settings: { } + weight: 2 + region: content + field_consultation_stage: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 0 + region: content + field_meta_tags: + type: metatag_empty_formatter + label: inline + settings: { } + third_party_settings: { } + weight: 6 + region: content + field_response_type: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.search_result.yml b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.search_result.yml new file mode 100644 index 000000000..e9ea24757 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.search_result.yml @@ -0,0 +1,46 @@ +uuid: d236957a-7889-4430-abef-1665eccfb7d1 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.search_result + - field.field.node.consultation_response.field_attachment + - field.field.node.consultation_response.field_consultation_stage + - field.field.node.consultation_response.field_meta_tags + - field.field.node.consultation_response.field_response_type + - node.type.consultation_response + module: + - layout_builder + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +id: node.consultation_response.search_result +targetEntityType: node +bundle: consultation_response +mode: search_result +content: + field_consultation_stage: + type: entity_reference_label + label: inline + settings: + link: false + third_party_settings: { } + weight: 1 + region: content + field_response_type: + type: entity_reference_label + label: inline + settings: + link: false + third_party_settings: { } + weight: 0 + region: content +hidden: + content_moderation_control: true + field_attachment: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.default.yml new file mode 100644 index 000000000..98cf4baeb --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.default.yml @@ -0,0 +1,53 @@ +uuid: 63ff0fcf-fe6d-45ab-87f1-9b4d406c73dd +langcode: en +status: true +dependencies: + config: + - field.field.node.featured_content.field_link + - field.field.node.featured_content.field_meta_tags + - field.field.node.featured_content.field_photo + - field.field.node.featured_content.field_tagline + - node.type.featured_content + module: + - link + - text + - user +id: node.featured_content.default +targetEntityType: node +bundle: featured_content +mode: default +content: + field_link: + type: link + label: hidden + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '' + target: '' + third_party_settings: { } + weight: 2 + region: content + field_photo: + type: entity_reference_entity_view + label: hidden + settings: + view_mode: card_small + link: false + third_party_settings: { } + weight: 0 + region: content + field_tagline: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.diff.yml new file mode 100644 index 000000000..ec23e164f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.diff.yml @@ -0,0 +1,87 @@ +uuid: ce170f47-c712-451e-9d6e-acede93c67a4 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.featured_content.field_link + - field.field.node.featured_content.field_meta_tags + - field.field.node.featured_content.field_photo + - field.field.node.featured_content.field_tagline + - node.type.featured_content + module: + - field_group + - layout_builder + - link + - metatag + - text + - user +third_party_settings: + field_group: + group_additional_content_details: + children: + - field_meta_tags + label: 'Additional content details' + parent_name: '' + region: content + weight: 3 + format_type: html_element + format_settings: + classes: field-collection + show_empty_fields: false + id: '' + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast + layout_builder: + enabled: false + allow_custom: false +id: node.featured_content.diff +targetEntityType: node +bundle: featured_content +mode: diff +content: + field_link: + type: link + label: hidden + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '' + target: '' + third_party_settings: { } + weight: 2 + region: content + field_meta_tags: + type: metatag_empty_formatter + label: inline + settings: { } + third_party_settings: { } + weight: 6 + region: content + field_photo: + type: entity_reference_entity_view + label: hidden + settings: + view_mode: card_small + link: false + third_party_settings: { } + weight: 0 + region: content + field_tagline: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.news.archive.yml b/project/config/boundarycommission/config/core.entity_view_display.node.news.archive.yml new file mode 100644 index 000000000..aa33f6ef9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.news.archive.yml @@ -0,0 +1,54 @@ +uuid: 1b86bc65-c522-42ad-ae66-6e4a553d0410 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.archive + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + module: + - datetime + - layout_builder + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: N-zm1nCnhgYwXANGav75TCg-_kvNUUbT--KKS8PLKgM +id: node.news.archive +targetEntityType: node +bundle: news +mode: archive +content: + field_published_date: + type: datetime_default + label: hidden + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content + field_teaser: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_meta_tags: true + field_photo: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.news.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.news.default.yml new file mode 100644 index 000000000..79e6adaa0 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.news.default.yml @@ -0,0 +1,56 @@ +uuid: cf9b0e74-96bc-48fc-8048-5f89abded7a6 +langcode: en +status: true +dependencies: + config: + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + module: + - datetime + - text + - user +_core: + default_config_hash: N-zm1nCnhgYwXANGav75TCg-_kvNUUbT--KKS8PLKgM +id: node.news.default +targetEntityType: node +bundle: news +mode: default +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 2 + region: content + field_photo: + type: entity_reference_entity_view + label: hidden + settings: + view_mode: landscape_float + link: false + third_party_settings: { } + weight: 1 + region: content + field_published_date: + type: datetime_default + label: above + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content +hidden: + content_moderation_control: true + field_archive: true + field_meta_tags: true + field_teaser: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.news.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.news.diff.yml new file mode 100644 index 000000000..b8d424618 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.news.diff.yml @@ -0,0 +1,107 @@ +uuid: 928aba9b-52b4-4d4a-883b-0e684b0d299b +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + module: + - datetime + - field_group + - layout_builder + - metatag + - text + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + field_group: + group_additional_content_details: + children: + - field_archive + - field_teaser + - field_meta_tags + label: 'Additional content details' + parent_name: '' + region: content + weight: 5 + format_type: html_element + format_settings: + classes: field-collection + id: '' + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast +_core: + default_config_hash: ElksGJzjUxwYGlvHiX7g8ocPamDh8hURTB7lEmD_WIM +id: node.news.diff +targetEntityType: node +bundle: news +mode: diff +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 4 + region: content + field_archive: + type: boolean + label: above + settings: + format: default + format_custom_false: '' + format_custom_true: '' + third_party_settings: { } + weight: 0 + region: content + field_meta_tags: + type: metatag_empty_formatter + label: inline + settings: { } + third_party_settings: { } + weight: 2 + region: content + field_photo: + type: entity_reference_entity_view + label: hidden + settings: + view_mode: landscape_float + link: false + third_party_settings: { } + weight: 3 + region: content + field_published_date: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 1 + region: content + field_teaser: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.news.search_result.yml b/project/config/boundarycommission/config/core.entity_view_display.node.news.search_result.yml new file mode 100644 index 000000000..23751e015 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.news.search_result.yml @@ -0,0 +1,54 @@ +uuid: b2a35b75-2da4-4f49-ba07-fe05f7db54eb +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.search_result + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + module: + - datetime + - layout_builder + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: N-zm1nCnhgYwXANGav75TCg-_kvNUUbT--KKS8PLKgM +id: node.news.search_result +targetEntityType: node +bundle: news +mode: search_result +content: + field_published_date: + type: datetime_default + label: hidden + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content + field_teaser: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_meta_tags: true + field_photo: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.news.teaser.yml b/project/config/boundarycommission/config/core.entity_view_display.node.news.teaser.yml new file mode 100644 index 000000000..07624467e --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.news.teaser.yml @@ -0,0 +1,57 @@ +uuid: 40995719-29d2-4c90-b306-2f9cdb44c349 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + module: + - datetime + - user +_core: + default_config_hash: AF_DHgr-5ZIsJvnD5UmT0RDbIkmWZ0HeItZgySVGGIA +id: node.news.teaser +targetEntityType: node +bundle: news +mode: teaser +content: + field_photo: + type: entity_reference_entity_view + label: hidden + settings: + view_mode: unity_3_col_images + link: false + third_party_settings: { } + weight: 0 + region: content + field_published_date: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 1 + region: content + field_teaser: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 2 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.publication.archive.yml b/project/config/boundarycommission/config/core.entity_view_display.node.publication.archive.yml new file mode 100644 index 000000000..dcab44a26 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.publication.archive.yml @@ -0,0 +1,47 @@ +uuid: c65bc982-f0c2-4526-a593-a86866368229 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.archive + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + module: + - datetime + - layout_builder + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: dGe_U65t-a-PtVI1RO755kulh2XfPgvblOXVKquzmyU +id: node.publication.archive +targetEntityType: node +bundle: publication +mode: archive +content: + field_published_date: + type: datetime_default + label: hidden + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_attachment: true + field_meta_tags: true + field_publication_type: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.publication.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.publication.default.yml new file mode 100644 index 000000000..6c7d8415e --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.publication.default.yml @@ -0,0 +1,63 @@ +uuid: c3b7edd6-fe2f-4b3c-ac64-ca9a5f752b21 +langcode: en +status: true +dependencies: + config: + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + module: + - datetime + - text + - user +_core: + default_config_hash: dGe_U65t-a-PtVI1RO755kulh2XfPgvblOXVKquzmyU +id: node.publication.default +targetEntityType: node +bundle: publication +mode: default +content: + body: + type: text_default + label: above + settings: { } + third_party_settings: { } + weight: 2 + region: content + field_attachment: + type: entity_reference_entity_view + label: above + settings: + view_mode: embed + link: false + third_party_settings: { } + weight: 3 + region: content + field_publication_type: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 1 + region: content + field_published_date: + type: datetime_default + label: hidden + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content +hidden: + content_moderation_control: true + field_archive: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.publication.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.publication.diff.yml new file mode 100644 index 000000000..4cb599e81 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.publication.diff.yml @@ -0,0 +1,106 @@ +uuid: 172a7d77-876c-4b9c-bb7e-c19368a98a2f +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + module: + - datetime + - field_group + - layout_builder + - metatag + - text + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + field_group: + group_additional_content_details: + children: + - field_archive + - field_meta_tags + label: 'Additional content details' + parent_name: '' + region: content + weight: 4 + format_type: html_element + format_settings: + classes: field-collection + id: '' + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast +_core: + default_config_hash: ALg0vkl0GxZI7rSi5bu_S1YfTFR4tz_BZoE3rau5z88 +id: node.publication.diff +targetEntityType: node +bundle: publication +mode: diff +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 0 + region: content + field_archive: + type: boolean + label: above + settings: + format: default + format_custom_false: '' + format_custom_true: '' + third_party_settings: { } + weight: 0 + region: content + field_attachment: + type: entity_reference_entity_view + label: inline + settings: + view_mode: embed + link: false + third_party_settings: { } + weight: 3 + region: content + field_meta_tags: + type: metatag_empty_formatter + label: inline + settings: { } + third_party_settings: { } + weight: 1 + region: content + field_publication_type: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 2 + region: content + field_published_date: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.publication.search_result.yml b/project/config/boundarycommission/config/core.entity_view_display.node.publication.search_result.yml new file mode 100644 index 000000000..35fd9d7fe --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.publication.search_result.yml @@ -0,0 +1,54 @@ +uuid: 600ef7a6-1482-47d3-830d-ec898c9426cc +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.search_result + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + module: + - datetime + - layout_builder + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: dGe_U65t-a-PtVI1RO755kulh2XfPgvblOXVKquzmyU +id: node.publication.search_result +targetEntityType: node +bundle: publication +mode: search_result +content: + field_publication_type: + type: entity_reference_label + label: hidden + settings: + link: false + third_party_settings: { } + weight: 1 + region: content + field_published_date: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_attachment: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.publication.teaser.yml b/project/config/boundarycommission/config/core.entity_view_display.node.publication.teaser.yml new file mode 100644 index 000000000..d02231fb0 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.publication.teaser.yml @@ -0,0 +1,42 @@ +uuid: c0356e9a-5508-4a7f-8ace-cfaed9158064 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + module: + - datetime + - user +_core: + default_config_hash: pADwKkEDzI5AJltJfqCe5pvrW5GX7inMqfLS27hYgxM +id: node.publication.teaser +targetEntityType: node +bundle: publication +mode: teaser +content: + field_published_date: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_attachment: true + field_meta_tags: true + field_publication_type: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.default.yml new file mode 100644 index 000000000..7ec909b2b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.default.yml @@ -0,0 +1,48 @@ +uuid: 1ed22e1a-2022-46d8-96c7-f394a6fee730 +langcode: en +status: true +dependencies: + config: + - field.field.node.respresentations.field_attachment + - field.field.node.respresentations.field_meta_tags + - field.field.node.respresentations.field_representation_stage + - field.field.node.respresentations.field_response_type + - node.type.respresentations + module: + - user +id: node.respresentations.default +targetEntityType: node +bundle: respresentations +mode: default +content: + field_attachment: + type: entity_reference_entity_view + label: above + settings: + view_mode: embed + link: false + third_party_settings: { } + weight: 2 + region: content + field_representation_stage: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 0 + region: content + field_response_type: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.diff.yml new file mode 100644 index 000000000..a8a408f0f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.diff.yml @@ -0,0 +1,81 @@ +uuid: 171c0644-4c8c-4c7b-b4df-5796ab5fd9ae +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.respresentations.field_attachment + - field.field.node.respresentations.field_meta_tags + - field.field.node.respresentations.field_representation_stage + - field.field.node.respresentations.field_response_type + - node.type.respresentations + module: + - field_group + - layout_builder + - metatag + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + field_group: + group_additional_content_details: + children: + - field_meta_tags + label: 'Additional content details' + parent_name: '' + region: content + weight: 3 + format_type: html_element + format_settings: + classes: field-collection + show_empty_fields: false + id: '' + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast +id: node.respresentations.diff +targetEntityType: node +bundle: respresentations +mode: diff +content: + field_attachment: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 2 + region: content + field_meta_tags: + type: metatag_empty_formatter + label: inline + settings: { } + third_party_settings: { } + weight: 1 + region: content + field_representation_stage: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 0 + region: content + field_response_type: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.webform.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.webform.default.yml new file mode 100644 index 000000000..a9a1b25f8 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.webform.default.yml @@ -0,0 +1,46 @@ +uuid: ec5a946a-47c9-445d-a244-c65fa17fdb6f +langcode: en +status: true +dependencies: + config: + - field.field.node.webform.body + - field.field.node.webform.webform + - node.type.webform + module: + - text + - user + - webform +_core: + default_config_hash: 3r1i0UMUbeNHhvmiqHDYznoS4G9XR1jq6lQ49r80lDE +id: node.webform.default +targetEntityType: node +bundle: webform +mode: default +content: + body: + label: hidden + type: text_default + weight: 101 + settings: { } + third_party_settings: { } + region: content + content_moderation_control: + weight: -20 + settings: { } + third_party_settings: { } + region: content + links: + weight: 100 + settings: { } + third_party_settings: { } + region: content + webform: + weight: 102 + label: hidden + settings: { } + third_party_settings: { } + type: webform_entity_reference_entity_view + region: content +hidden: + langcode: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.webform.teaser.yml b/project/config/boundarycommission/config/core.entity_view_display.node.webform.teaser.yml new file mode 100644 index 000000000..1658a6a47 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.webform.teaser.yml @@ -0,0 +1,41 @@ +uuid: 5bea0fc7-664c-4457-a769-f2e1f1b5600b +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.webform.body + - field.field.node.webform.webform + - node.type.webform + module: + - text + - user +_core: + default_config_hash: Ls5l3Xs7-YstJnurxFLKj38Exqr2JMZs1j9YeX1Kh2o +id: node.webform.teaser +targetEntityType: node +bundle: webform +mode: teaser +content: + body: + label: hidden + type: text_summary_or_trimmed + weight: 101 + settings: + trim_length: 600 + third_party_settings: { } + region: content + content_moderation_control: + weight: -20 + settings: { } + third_party_settings: { } + region: content + links: + weight: 100 + settings: { } + third_party_settings: { } + region: content +hidden: + langcode: true + search_api_excerpt: true + webform: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.paragraph.faq_accordion.default.yml b/project/config/boundarycommission/config/core.entity_view_display.paragraph.faq_accordion.default.yml new file mode 100644 index 000000000..4a779797a --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.paragraph.faq_accordion.default.yml @@ -0,0 +1,33 @@ +uuid: 509d4407-4964-4577-90c5-4f127eef5ede +langcode: en +status: true +dependencies: + config: + - field.field.paragraph.faq_accordion.field_answer + - field.field.paragraph.faq_accordion.field_question + - paragraphs.paragraphs_type.faq_accordion + module: + - text +_core: + default_config_hash: jV91KjQhsEuLBQeBUY_-SkuQT9kvrNs-VCjY0XjhTfI +id: paragraph.faq_accordion.default +targetEntityType: paragraph +bundle: faq_accordion +mode: default +content: + field_answer: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 1 + region: content + field_question: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 0 + region: content +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_view_display.user.user.compact.yml b/project/config/boundarycommission/config/core.entity_view_display.user.user.compact.yml new file mode 100644 index 000000000..9361f815f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.user.user.compact.yml @@ -0,0 +1,32 @@ +uuid: d7deaf47-c3ad-4c7e-9680-f038dfb69289 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.user.compact + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - user +_core: + default_config_hash: '-cLsS3M3JycipXQt9rEb81_HxKneReoGuRh8ijcOPXs' +id: user.user.compact +targetEntityType: user +bundle: user +mode: compact +content: + user_picture: + type: image + weight: 0 + region: content + settings: + image_style: thumbnail + image_link: content + image_loading: + attribute: lazy + third_party_settings: { } + label: hidden +hidden: + langcode: true + member_for: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.user.user.default.yml b/project/config/boundarycommission/config/core.entity_view_display.user.user.default.yml new file mode 100644 index 000000000..e258e77b5 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.user.user.default.yml @@ -0,0 +1,33 @@ +uuid: b8c9bd54-2019-4424-ab4c-e1b9ac4c0f33 +langcode: en +status: true +dependencies: + config: + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - user +_core: + default_config_hash: V51QPCKkgNREKtSmB9Iu2wmAMEpktVpnzklWaZV8UYo +id: user.user.default +targetEntityType: user +bundle: user +mode: default +content: + member_for: + weight: 5 + region: content + user_picture: + type: image + weight: 0 + region: content + settings: + image_style: thumbnail + image_link: content + image_loading: + attribute: lazy + third_party_settings: { } + label: hidden +hidden: + langcode: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.block.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.block.token.yml new file mode 100644 index 000000000..02f8fb58d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.block.token.yml @@ -0,0 +1,12 @@ +uuid: 119bb2cf-ffcb-4986-a5d3-6ff75933ebfb +langcode: en +status: true +dependencies: + module: + - block +_core: + default_config_hash: AJ4KPUipTz1VsDPfMT_D9pamgbfXUJBgvYVel4P1DHE +id: block.token +label: Token +targetEntityType: block +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.block_content.full.yml b/project/config/boundarycommission/config/core.entity_view_mode.block_content.full.yml new file mode 100644 index 000000000..4c858e1d0 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.block_content.full.yml @@ -0,0 +1,12 @@ +uuid: bffcdb33-7575-491d-ba0b-b731a4f4c515 +langcode: en +status: false +dependencies: + module: + - block_content +_core: + default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg +id: block_content.full +label: Full +targetEntityType: block_content +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.block_content.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.block_content.token.yml new file mode 100644 index 000000000..a90f21d91 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.block_content.token.yml @@ -0,0 +1,12 @@ +uuid: 682dff01-b4c7-40a1-a63e-105e05c5811b +langcode: en +status: true +dependencies: + module: + - block_content +_core: + default_config_hash: JqAPZHEa9m6Cqy0vdpV5Jjdk07YLKkE_EE9ivvB2xhQ +id: block_content.token +label: Token +targetEntityType: block_content +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.content_moderation_state.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.content_moderation_state.token.yml new file mode 100644 index 000000000..85c1eed63 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.content_moderation_state.token.yml @@ -0,0 +1,10 @@ +uuid: 737eacef-25e3-4afa-b938-811dc1efbb8e +langcode: en +status: true +dependencies: + module: + - content_moderation +id: content_moderation_state.token +label: Token +targetEntityType: content_moderation_state +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.file.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.file.token.yml new file mode 100644 index 000000000..bd2ce0157 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.file.token.yml @@ -0,0 +1,12 @@ +uuid: add81e94-2d5d-40db-bd46-65688d9b413c +langcode: en +status: true +dependencies: + module: + - file +_core: + default_config_hash: T6IiNXJhdrBudWJ_guxnUz3p71T0lFcidLSTM9VlFl8 +id: file.token +label: Token +targetEntityType: file +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.article_float.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.article_float.yml new file mode 100644 index 000000000..7d4e80041 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.article_float.yml @@ -0,0 +1,12 @@ +uuid: faedf619-aaa8-4138-acb0-8cd6e438881a +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: ZlkfQbuDCyUnju3Tx9rh_7x12YT-Ca3-r3UOxZDgg24 +id: media.article_float +label: 'Article float' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.article_float_expandable.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.article_float_expandable.yml new file mode 100644 index 000000000..e8f3088da --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.article_float_expandable.yml @@ -0,0 +1,12 @@ +uuid: 66be2909-76c5-4af9-b105-3db76eb5d5b7 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: PmW5AU2JMjCg1OGrVFf8uob72UaRX9EIvpgot1VsVhE +id: media.article_float_expandable +label: 'Article float expandable' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.article_full.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.article_full.yml new file mode 100644 index 000000000..463979719 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.article_full.yml @@ -0,0 +1,12 @@ +uuid: a951f7d9-2d7b-4166-85df-39c9592f0810 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 95EdkutKV-wywHMx7h_A8tIbRDCItQMvrwOijDMm4ps +id: media.article_full +label: 'Article full' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.article_full_expandable.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.article_full_expandable.yml new file mode 100644 index 000000000..307d8127e --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.article_full_expandable.yml @@ -0,0 +1,12 @@ +uuid: 44426814-4b4a-4b90-a76b-5ef1bf7212e3 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: gUAT_btUjQJnzWkUbTohNOF8oVo3TUP-P9iLP6xWob8 +id: media.article_full_expandable +label: 'Article full expandable' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.banner_deep.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.banner_deep.yml new file mode 100644 index 000000000..9fb80bec5 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.banner_deep.yml @@ -0,0 +1,12 @@ +uuid: df555187-c942-492e-879b-3d9b5a6f2fe1 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: TzN92qzn92mnZ7TRoXzOQ-ftgya-5X1W6nysET1jabw +id: media.banner_deep +label: 'Banner deep' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.banner_thin.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.banner_thin.yml new file mode 100644 index 000000000..de7ed5ec9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.banner_thin.yml @@ -0,0 +1,12 @@ +uuid: 919d7c25-0e28-4dfd-be9a-df7da853a7c9 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: DWbuvXsSQKd7FKYsX6COWIZWaC8vgaUmp8C4n2UQZ4Q +id: media.banner_thin +label: 'Banner thin' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.card_large.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.card_large.yml new file mode 100644 index 000000000..b3c99f939 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.card_large.yml @@ -0,0 +1,12 @@ +uuid: fdadbede-c297-4231-abb1-2e8479f7b6e9 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: ibgAUwtfWp27wUMO9Witbj-NVffRyJMXHbSskI3DGWs +id: media.card_large +label: 'Card large' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.card_small.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.card_small.yml new file mode 100644 index 000000000..028fd314b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.card_small.yml @@ -0,0 +1,12 @@ +uuid: fa9216bb-2adb-423e-9341-014b5ee2892b +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 19qMNh1skJRUBIfjgvS3btWng7iBRpV7icOdUgG5huQ +id: media.card_small +label: 'Card small' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.embed.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.embed.yml new file mode 100644 index 000000000..cdbef12b8 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.embed.yml @@ -0,0 +1,12 @@ +uuid: b1b328c4-6509-4a32-8008-df78a760855f +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: sLYzJkSFNu-BSmCzg8KgzL96uq3oi0mM45gdrExVOTU +id: media.embed +label: Embed +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.feature_card.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.feature_card.yml new file mode 100644 index 000000000..02f0a05d1 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.feature_card.yml @@ -0,0 +1,12 @@ +uuid: cf8a11d9-a966-408f-960b-93e95db508f1 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 47jG0sEt_pH2gOfIDt2IcoyeWIpO62TqybyoDWH8VZI +id: media.feature_card +label: 'Feature card' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.full.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.full.yml new file mode 100644 index 000000000..8f4e261ef --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.full.yml @@ -0,0 +1,12 @@ +uuid: 3d3455a3-04aa-4895-abec-23435e48d254 +langcode: en +status: false +dependencies: + module: + - media +_core: + default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0 +id: media.full +label: 'Full content' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.landing_full.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.landing_full.yml new file mode 100644 index 000000000..a464b3f1d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.landing_full.yml @@ -0,0 +1,12 @@ +uuid: 16add8f7-3694-4134-a1df-09131ebf3e52 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: y7_NBFP_3eud7oOGM1XQuGIrokEQ_1CyU3iuD6Qln5A +id: media.landing_full +label: 'Landing full' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float.yml new file mode 100644 index 000000000..6dfb1325b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float.yml @@ -0,0 +1,12 @@ +uuid: 6fd6a5b5-7be8-420c-a502-af24b6b1f549 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 6WRwWG7tqHaz5AOyNbueQABixUrDYXRf9k2KJBRV5ZI +id: media.landscape_float +label: 'Landscape float' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float_xp.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float_xp.yml new file mode 100644 index 000000000..094cbdfbf --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float_xp.yml @@ -0,0 +1,12 @@ +uuid: 34e74a0b-0223-445b-bc24-fc8e15369374 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: k_n39qDDMAHhd_n12Sl1UpEkznOQJ9yAqH4dI0u42zU +id: media.landscape_float_xp +label: 'Landscape float XP' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full.yml new file mode 100644 index 000000000..ace6203e9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full.yml @@ -0,0 +1,12 @@ +uuid: e76234d7-33b3-44e0-920d-a81967019467 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: '-v9hNy-UWfCgOmqvA1U7IkAc_57QyFOkEjRroM1LwvI' +id: media.landscape_full +label: 'Landscape full' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full_xp.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full_xp.yml new file mode 100644 index 000000000..3c53f90f4 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full_xp.yml @@ -0,0 +1,12 @@ +uuid: 025dae35-94c5-4408-8fd6-963aa6d9f7ae +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: LkLiUexgUuQmCFLrxb-zCgDDsh7886PIA3FaohIHOLc +id: media.landscape_full_xp +label: 'Landscape full XP' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.media_library.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.media_library.yml new file mode 100644 index 000000000..f8204937c --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.media_library.yml @@ -0,0 +1,15 @@ +uuid: 3e996809-5922-416c-bc50-817ccf8b3d2f +langcode: en +status: true +dependencies: + module: + - media + enforced: + module: + - media_library +_core: + default_config_hash: Tdhz-aDHfDoV1Ul9umtItxGTrjkFzoNAkDw8FWXjYA0 +id: media.media_library +label: 'Media library' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.news_thumbnail.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.news_thumbnail.yml new file mode 100644 index 000000000..321187029 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.news_thumbnail.yml @@ -0,0 +1,12 @@ +uuid: 522ba3b3-cf2e-4de2-9ead-3c7ed52a57fd +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: eSfnWXj1W9gy57hiPnIFxtohlr36qJlKgPpcA1lrSjY +id: media.news_thumbnail +label: 'News thumbnail' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float.yml new file mode 100644 index 000000000..81daf5ded --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float.yml @@ -0,0 +1,12 @@ +uuid: 1eb869b2-3991-4bd4-afd1-77db2e33caeb +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: SaPSB_yqm7tmeSPHY51-g6vMkDHcc72DQE1QvvWINK0 +id: media.portrait_float +label: 'Portrait float' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float_xp.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float_xp.yml new file mode 100644 index 000000000..4590ce467 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float_xp.yml @@ -0,0 +1,12 @@ +uuid: 101f6f9f-ec6a-438d-9ffc-6961b17bec7d +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: hm4ZIMk2klpQE59_KbbSubhWKWNzhbsh6scuNFs1BUI +id: media.portrait_float_xp +label: 'Portrait float XP' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_full.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_full.yml new file mode 100644 index 000000000..a1eac2ba5 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_full.yml @@ -0,0 +1,12 @@ +uuid: 45eddf19-2990-48bc-a865-dac1c6238e3f +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 0OPwF1OAUUKWrI9K8a1LWWKit2kgR8e0mzisgI3_9IU +id: media.portrait_full +label: 'Portrait full' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.slide.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.slide.yml new file mode 100644 index 000000000..d22e1dabd --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.slide.yml @@ -0,0 +1,12 @@ +uuid: e3c9e01f-8c95-473b-bbe0-8af0e432ec03 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: XED0_QBcajoiwqjrbC9gpwP4BzffllaJ2Gg_u59Ewd4 +id: media.slide +label: Slideshow +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.token.yml new file mode 100644 index 000000000..8e449e081 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.token.yml @@ -0,0 +1,10 @@ +uuid: 17d9262d-fc94-4d31-83a4-0a04d7e56830 +langcode: en +status: true +dependencies: + module: + - media +id: media.token +label: Token +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.unity_3_col_images.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.unity_3_col_images.yml new file mode 100644 index 000000000..f5b025d81 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.unity_3_col_images.yml @@ -0,0 +1,12 @@ +uuid: a82022d3-a00f-40ec-a33d-6673e16a4917 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: hiN1aSgulAlDjkXN_9TLKAFNjY_98GI7Ww46ljmM7bo +id: media.unity_3_col_images +label: 'Unity 3 col images' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.menu_link_content.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.menu_link_content.token.yml new file mode 100644 index 000000000..2b1319e0d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.menu_link_content.token.yml @@ -0,0 +1,12 @@ +uuid: e9360167-9554-4404-aadb-01312d9fd649 +langcode: en +status: true +dependencies: + module: + - menu_link_content +_core: + default_config_hash: TTHbJnnmzx02KP2FNkAlzqP_BFdKZwAVb8hfUbRbxuk +id: menu_link_content.token +label: Token +targetEntityType: menu_link_content +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.archive.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.archive.yml new file mode 100644 index 000000000..af5f2f422 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.archive.yml @@ -0,0 +1,10 @@ +uuid: 16650976-0788-4d99-975a-39c8de2b07d3 +langcode: en +status: true +dependencies: + module: + - node +id: node.archive +label: Archive +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.diff.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.diff.yml new file mode 100644 index 000000000..ec14d8bbc --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.diff.yml @@ -0,0 +1,16 @@ +uuid: 785bc23c-0696-4f1b-a59e-f2a4add00c3b +langcode: en +status: false +dependencies: + module: + - node + enforced: + module: + - node + - diff +_core: + default_config_hash: rwHa5SzsLYKZu_czJuibd03MSNwIOLCnX1NTiuehytI +id: node.diff +label: 'Revision comparison' +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.full.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.full.yml new file mode 100644 index 000000000..c57f17603 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.full.yml @@ -0,0 +1,12 @@ +uuid: cc5d72fb-9f59-4f37-b676-ab37bf369886 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk +id: node.full +label: 'Full content' +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.rss.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.rss.yml new file mode 100644 index 000000000..562cdf6bc --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.rss.yml @@ -0,0 +1,12 @@ +uuid: 04b6b409-1dad-4515-8446-6f58329b24c2 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU +id: node.rss +label: RSS +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.search_index.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.search_index.yml new file mode 100644 index 000000000..db9efdc29 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.search_index.yml @@ -0,0 +1,12 @@ +uuid: d82b92cd-991d-4825-b8e1-9689651a8e07 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY +id: node.search_index +label: 'Search index' +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.search_result.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.search_result.yml new file mode 100644 index 000000000..bff7d7f0e --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.search_result.yml @@ -0,0 +1,12 @@ +uuid: 78369c30-0acf-4bcd-962a-0f666f675cfb +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM +id: node.search_result +label: 'Search result highlighting input' +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.teaser.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.teaser.yml new file mode 100644 index 000000000..d97cee4c2 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.teaser.yml @@ -0,0 +1,12 @@ +uuid: d3184b7d-c124-47f6-b263-4051c7dd7bc8 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4 +id: node.teaser +label: Teaser +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.token.yml new file mode 100644 index 000000000..c3d6a081d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.token.yml @@ -0,0 +1,12 @@ +uuid: 60b80f17-e1dc-44f2-a3bd-f373afded581 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: vIX64lRX14_lPePewHfWVFSyTfJt0Yh-Lja05UgP8N0 +id: node.token +label: Token +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.paragraph.preview.yml b/project/config/boundarycommission/config/core.entity_view_mode.paragraph.preview.yml new file mode 100644 index 000000000..afad245b2 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.paragraph.preview.yml @@ -0,0 +1,12 @@ +uuid: e2a491ea-073d-4cb0-842a-7c9e0de60afb +langcode: en +status: true +dependencies: + module: + - paragraphs +_core: + default_config_hash: h3BeHVei4Lnyqbkao3YiF4KqoY-DhRvUNfEgKG8Rgjg +id: paragraph.preview +label: Preview +targetEntityType: paragraph +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.path_alias.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.path_alias.token.yml new file mode 100644 index 000000000..a2cc1bbbd --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.path_alias.token.yml @@ -0,0 +1,12 @@ +uuid: 13bf6133-5d14-4ab5-a1b7-418ed708d736 +langcode: en +status: true +dependencies: + module: + - path_alias +_core: + default_config_hash: GiQY8TcbkMat1Lpyz5z9WMUYl6KWQ46XSdW-b5GOKrQ +id: path_alias.token +label: Token +targetEntityType: path_alias +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.full.yml b/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.full.yml new file mode 100644 index 000000000..75dcc3817 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.full.yml @@ -0,0 +1,12 @@ +uuid: a0638a93-7cbd-41d3-a883-e5e97a47ea87 +langcode: en +status: true +dependencies: + module: + - taxonomy +_core: + default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE' +id: taxonomy_term.full +label: 'Taxonomy term page' +targetEntityType: taxonomy_term +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.token.yml new file mode 100644 index 000000000..7b5acde6b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.token.yml @@ -0,0 +1,12 @@ +uuid: 2170f899-dff6-44c0-ac22-3b914b54c4e6 +langcode: en +status: true +dependencies: + module: + - taxonomy +_core: + default_config_hash: AQZt3mTM-HGFLxai2IPOFFyGtOVC-P26IQaOLYmI1b8 +id: taxonomy_term.token +label: Token +targetEntityType: taxonomy_term +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.user.compact.yml b/project/config/boundarycommission/config/core.entity_view_mode.user.compact.yml new file mode 100644 index 000000000..d72c5f475 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.user.compact.yml @@ -0,0 +1,12 @@ +uuid: 7f8ada7c-54c3-41ba-949b-8b5c74f13838 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g +id: user.compact +label: Compact +targetEntityType: user +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.user.full.yml b/project/config/boundarycommission/config/core.entity_view_mode.user.full.yml new file mode 100644 index 000000000..1d372e2e3 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.user.full.yml @@ -0,0 +1,12 @@ +uuid: c0796fed-7968-4708-addf-c4ee664d23a0 +langcode: en +status: false +dependencies: + module: + - user +_core: + default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM +id: user.full +label: 'User account' +targetEntityType: user +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.user.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.user.token.yml new file mode 100644 index 000000000..1258e6bb9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.user.token.yml @@ -0,0 +1,12 @@ +uuid: 51fd7a03-0629-422f-80e7-3d08841c5895 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: Ta5_n_jXyfP3WcRw_Rmp1QPg-aSHbXzg3_Qr5UE1ieY +id: user.token +label: Token +targetEntityType: user +cache: true diff --git a/project/config/boundarycommission/config/core.extension.yml b/project/config/boundarycommission/config/core.extension.yml new file mode 100644 index 000000000..c2ab4545d --- /dev/null +++ b/project/config/boundarycommission/config/core.extension.yml @@ -0,0 +1,159 @@ +_core: + default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc +module: + address: 0 + admin_toolbar: 0 + admin_toolbar_links_access_filter: 0 + admin_toolbar_tools: 0 + allowed_formats: 0 + auto_entityqueue: 0 + automated_cron: 0 + blazy: 0 + block: 0 + block_content: 0 + boundarycommission_breadcrumbs: 0 + breakpoint: 0 + ckeditor5: 0 + ckeditor5_allowed_html: 0 + ckeditor5_premium_features: 0 + ckeditor5_premium_features_fullscreen: 0 + ckeditor5_premium_features_import_word: 0 + clientside_validation: 0 + clientside_validation_jquery: 0 + config: 0 + config_filter: 0 + config_ignore: 0 + config_split: 0 + content_lock: 0 + content_lock_timeout: 0 + content_moderation: 0 + contextual: 0 + cookie_content_blocker: 0 + csp: 0 + ctools: 0 + date_facet_drilldown: 0 + datetime: 0 + datetime_range: 0 + diff: 0 + dynamic_entity_reference: 0 + dynamic_page_cache: 0 + editor: 0 + embed: 0 + entity_browser: 0 + entity_browser_entity_form: 0 + entity_embed: 0 + entity_reference_revisions: 0 + entityqueue: 0 + facets: 0 + facets_pretty_paths: 0 + facets_summary: 0 + field: 0 + field_group: 0 + field_ui: 0 + file: 0 + file_delete_ui: 0 + filelog: 0 + filter: 0 + flag: 0 + geolocation: 0 + geolocation_google_maps: 0 + google_tag: 0 + handy_cache_tags: 0 + help: 0 + history: 0 + honeypot: 0 + http_cache_control: 0 + image: 0 + inline_entity_form: 0 + inline_form_errors: 0 + jquery_ui: 0 + jquery_ui_autocomplete: 0 + jquery_ui_menu: 0 + language: 0 + layout_builder: 0 + layout_discovery: 0 + link: 0 + link_fix_absolute_urls: 0 + linkit: 0 + media: 0 + media_file_delete: 0 + media_library: 0 + media_library_edit: 0 + menu_breadcrumb: 0 + menu_link_content: 0 + menu_ui: 0 + metatag: 0 + metatag_open_graph: 0 + metatag_twitter_cards: 0 + metatag_verification: 0 + metatag_views: 0 + moderation_sidebar: 0 + mysql: 0 + node: 0 + node_edit_protection: 0 + noreferrer: 0 + options: 0 + origins_common: 0 + origins_media: 0 + origins_metatag: 0 + origins_qa: 0 + origins_toc: 0 + origins_unique_title: 0 + page_cache: 0 + path: 0 + path_alias: 0 + phpass: 0 + rdf: 0 + redirect: 0 + redis: 0 + responsive_image: 0 + scheduled_transitions: 0 + search_api: 0 + search_api_autocomplete: 0 + search_api_location: 0 + search_api_location_views: 0 + search_api_solr: 0 + search_api_spellcheck: 0 + simplei: 0 + structure_sync: 0 + system: 0 + taxonomy: 0 + text: 0 + token: 0 + token_filter: 0 + toolbar: 0 + twig_tweak: 0 + ultimate_cron: 0 + unity_breadcrumbs: 0 + unity_common: 0 + unity_eu_cookie_compliance: 0 + unity_frontpage: 0 + unity_image_styles: 0 + unity_internal_link_checker: 0 + unity_map_block: 0 + unity_search_pages: 0 + user: 0 + views_custom_cache_tag: 0 + webform: 0 + webform_access: 0 + webform_node: 0 + webform_ui: 0 + whatlinkshere: 0 + workflows: 0 + menu_admin_per_menu: 1 + pathauto: 1 + origins_workflow: 2 + views: 10 + paragraphs: 11 + nicsdru_unity_profile: 1000 + readonlymode: 9999 + eu_cookie_compliance: 10000 +theme: + stark: 0 + seven: 0 + stable: 0 + adminimal_theme: 0 + nicsdru_unity_theme: 0 + boundarycommission_theme: 0 + claro: 0 +profile: nicsdru_unity_profile diff --git a/project/config/boundarycommission/config/core.menu.static_menu_link_overrides.yml b/project/config/boundarycommission/config/core.menu.static_menu_link_overrides.yml new file mode 100644 index 000000000..0a540bedb --- /dev/null +++ b/project/config/boundarycommission/config/core.menu.static_menu_link_overrides.yml @@ -0,0 +1,9 @@ +_core: + default_config_hash: o4bYR9ZupWb3AsOIizTUG4g-nu1mdJqA59UB7QT-ifQ +definitions: + contact__site_page: + enabled: true + menu_name: footer + parent: '' + weight: 0 + expanded: false diff --git a/project/config/boundarycommission/config/csp.settings.yml b/project/config/boundarycommission/config/csp.settings.yml new file mode 100644 index 000000000..4dabf94e3 --- /dev/null +++ b/project/config/boundarycommission/config/csp.settings.yml @@ -0,0 +1,118 @@ +_core: + default_config_hash: 4JpC3F2x_VsACQQuTI4JOMCLDQcjUp0gTMJspJQ2M7s +report-only: + enable: true + directives: + default-src: + base: self + connect-src: + base: self + sources: + - 'https://www.google-analytics.com' + - 'https://region1.google-analytics.com' + - 'https://*.twitter.com' + font-src: + base: self + sources: + - 'https://themes.googleusercontent.com' + - 'https://fonts.gstatic.com' + - 'https://use.fontawesome.com' + - 'https://cdn.jsdelivr.net' + - 'data:' + - '*.typekit.com' + frame-src: + base: self + sources: + - 'https://www.youtube.com' + - 'https://*.twitter.com' + img-src: + base: self + sources: + - 'https://translate.google.com' + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + - 'https://cdn.jsdelivr.net' + - 'https://i.ytimg.com' + - 'https://www.gstatic.com' + - 'https://maps.gstatic.com' + - 'https://maps.googleapis.com' + - 'data:' + - 'https://*.twitter.com' + manifest-src: + base: self + script-src: + base: self + sources: + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + - 'https://*.twitter.com' + script-src-attr: + base: self + script-src-elem: + base: self + sources: + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + - 'https://*.twitter.com' + style-src: + base: self + sources: + - '*.typekit.com' + style-src-attr: + base: self + flags: + - unsafe-inline + style-src-elem: + base: self + block-all-mixed-content: true + reporting: + plugin: none +enforce: + enable: false + directives: + default-src: + base: self + font-src: + base: self + sources: + - 'https://themes.googleusercontent.com' + - 'https://fonts.gstatic.com' + - 'https://use.fontawesome.com' + - 'https://cdn.jsdelivr.net' + - 'data:' + frame-src: + base: self + sources: + - 'https://www.youtube.com' + img-src: + base: self + sources: + - 'https://cdn.jsdelivr.net' + - 'https://i.ytimg.com' + - 'https://maps.gstatic.com' + - 'https://maps.googleapis.com' + - 'data:' + script-src: + base: self + sources: + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + script-src-elem: + base: self + sources: + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + style-src: + base: self + style-src-attr: + base: self + flags: + - unsafe-inline + style-src-elem: + base: self + sources: + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + block-all-mixed-content: true + reporting: + plugin: sitelog diff --git a/project/config/boundarycommission/config/diff.settings.yml b/project/config/boundarycommission/config/diff.settings.yml new file mode 100644 index 000000000..2ce216983 --- /dev/null +++ b/project/config/boundarycommission/config/diff.settings.yml @@ -0,0 +1,18 @@ +_core: + default_config_hash: iVYbo_suWuXk0ofrQB4X2pJ0L8JIvRLvrhnv--YyMD4 +general_settings: + radio_behavior: simple + context_lines_leading: 1 + context_lines_trailing: 1 + revision_pager_limit: 50 + layout_plugins: + visual_inline: + enabled: true + weight: 0 + split_fields: + enabled: true + weight: 1 + unified_fields: + enabled: true + weight: 2 + visual_inline_theme: default diff --git a/project/config/boundarycommission/config/editor.editor.basic_html.yml b/project/config/boundarycommission/config/editor.editor.basic_html.yml new file mode 100644 index 000000000..29332673b --- /dev/null +++ b/project/config/boundarycommission/config/editor.editor.basic_html.yml @@ -0,0 +1,58 @@ +uuid: d51ba7aa-831e-44e3-b2d6-52ca4b5f495c +langcode: en +status: true +dependencies: + config: + - filter.format.basic_html + module: + - ckeditor5 +format: basic_html +editor: ckeditor5 +settings: + toolbar: + items: + - bold + - italic + - blockQuote + - superscript + - removeFormat + - '|' + - heading + - style + - insertTable + - '|' + - link + - '|' + - bulletedList + - numberedList + - '|' + - drupalMedia + - '|' + - undo + - redo + - '|' + - importWord + - specialCharacters + - fullScreen + plugins: + ckeditor5_heading: + enabled_headings: + - heading2 + - heading3 + - heading4 + - heading5 + - heading6 + ckeditor5_list: + reversed: true + startIndex: true + ckeditor5_style: + styles: + - + label: 'Information notice\r\na.btn' + element: '

' + linkit_extension: + linkit_enabled: true + linkit_profile: default + media_media: + allow_view_mode_override: true +image_upload: { } diff --git a/project/config/boundarycommission/config/editor.editor.full_html.yml b/project/config/boundarycommission/config/editor.editor.full_html.yml new file mode 100644 index 000000000..6012870f6 --- /dev/null +++ b/project/config/boundarycommission/config/editor.editor.full_html.yml @@ -0,0 +1,61 @@ +uuid: 39cfa793-f453-486c-8637-216c8c40f061 +langcode: en +status: true +dependencies: + config: + - filter.format.full_html + module: + - ckeditor5 +format: full_html +editor: ckeditor5 +settings: + toolbar: + items: + - bold + - italic + - blockQuote + - superscript + - removeFormat + - '|' + - heading + - style + - insertTable + - '|' + - link + - '|' + - bulletedList + - numberedList + - '|' + - drupalMedia + - '|' + - undo + - redo + - '|' + - importWord + - specialCharacters + - fullScreen + - sourceEditing + plugins: + ckeditor5_heading: + enabled_headings: + - heading2 + - heading3 + - heading4 + - heading5 + - heading6 + ckeditor5_list: + reversed: true + startIndex: true + ckeditor5_sourceEditing: + allowed_tags: { } + ckeditor5_style: + styles: + - + label: 'Information notice\r\na.btn' + element: '

' + linkit_extension: + linkit_enabled: true + linkit_profile: default + media_media: + allow_view_mode_override: false +image_upload: { } diff --git a/project/config/boundarycommission/config/editor.editor.webform_default.yml b/project/config/boundarycommission/config/editor.editor.webform_default.yml new file mode 100644 index 000000000..7638e97d9 --- /dev/null +++ b/project/config/boundarycommission/config/editor.editor.webform_default.yml @@ -0,0 +1,47 @@ +uuid: 6431aec3-7c1d-459e-8883-9a84f61ad461 +langcode: en +status: true +dependencies: + config: + - filter.format.webform_default + module: + - ckeditor5 +format: webform_default +editor: ckeditor5 +settings: + toolbar: + items: + - heading + - '|' + - bold + - italic + - subscript + - superscript + - '|' + - specialCharacters + - '|' + - numberedList + - bulletedList + - '|' + - link + - '|' + - indent + - outdent + - '|' + - blockQuote + - '|' + - sourceEditing + plugins: + ckeditor5_heading: + enabled_headings: + - heading2 + - heading3 + - heading4 + - heading5 + - heading6 + ckeditor5_list: + reversed: true + startIndex: true + ckeditor5_sourceEditing: + allowed_tags: { } +image_upload: { } diff --git a/project/config/boundarycommission/config/embed.button.node.yml b/project/config/boundarycommission/config/embed.button.node.yml new file mode 100644 index 000000000..21fa38303 --- /dev/null +++ b/project/config/boundarycommission/config/embed.button.node.yml @@ -0,0 +1,18 @@ +uuid: b8419fdb-a810-45bd-97fa-722bd6ea20f6 +langcode: en +status: true +dependencies: + module: + - entity_embed + - node +_core: + default_config_hash: xgvZUh-eaMilacE1XYCQ9nLH-2-meOjCyofXSO82gqg +label: Node +id: node +type_id: entity +type_settings: + entity_type: node + bundles: { } + display_plugins: { } +icon: { } +icon_uuid: null diff --git a/project/config/boundarycommission/config/embed.settings.yml b/project/config/boundarycommission/config/embed.settings.yml new file mode 100644 index 000000000..787a30352 --- /dev/null +++ b/project/config/boundarycommission/config/embed.settings.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: Ed6LXVlKotwVS4tx7_rnsL-6NlBoD-PLu3KFPAvpNMc +file_scheme: public +upload_directory: embed_buttons diff --git a/project/config/boundarycommission/config/entity_embed.settings.yml b/project/config/boundarycommission/config/entity_embed.settings.yml new file mode 100644 index 000000000..c72c2cf14 --- /dev/null +++ b/project/config/boundarycommission/config/entity_embed.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: 2qpyZdlgcQidJq1yw1VHXLCl5jDi4dKBWFWLQR4VDfw +rendered_entity_mode: false diff --git a/project/config/boundarycommission/config/entityqueue.entity_queue.featured_content.yml b/project/config/boundarycommission/config/entityqueue.entity_queue.featured_content.yml new file mode 100644 index 000000000..317f323ca --- /dev/null +++ b/project/config/boundarycommission/config/entityqueue.entity_queue.featured_content.yml @@ -0,0 +1,29 @@ +uuid: a8e5a05a-2f54-430e-ba7e-792b2b4dcb43 +langcode: en +status: true +dependencies: + module: + - node +id: featured_content +label: 'Featured Content' +handler: simple +handler_configuration: { } +entity_settings: + target_type: node + handler: 'default:node' + handler_settings: + target_bundles: + featured_content: featured_content + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: '' + auto_entityqueue: + auto_add: 0 + insert_front: 0 +queue_settings: + min_size: 0 + max_size: 2 + act_as_queue: false + reverse: false diff --git a/project/config/boundarycommission/config/eu_cookie_compliance.settings.yml b/project/config/boundarycommission/config/eu_cookie_compliance.settings.yml new file mode 100644 index 000000000..fa91e30ec --- /dev/null +++ b/project/config/boundarycommission/config/eu_cookie_compliance.settings.yml @@ -0,0 +1,85 @@ +_core: + default_config_hash: Wph0IY6FThC4QuHAGcSQDx6S8gysoclVsF2tkm4Lu8o +langcode: en +uuid: f972d6ca-2d66-4639-a48d-594ce8cfd64f +popup_enabled: true +popup_clicking_confirmation: false +popup_scrolling_confirmation: false +eu_only: false +eu_only_js: false +popup_position: false +fixed_top_position: false +popup_info: + value: "

Cookies on the [site:name] website

\r\n\r\n

We use some essential cookies to make this service work. We'd like to set additional cookies so we can remember your settings, understand how people use the service and make improvements. Some of our pages allow selected third parties to set cookies - for example, pages that contain YouTube videos or Google Maps.

\r\n\r\n

Find out more about how we use cookies

\r\n" + format: basic_html +mobile_popup_info: + value: '' + format: basic_html +popup_info_template: new +popup_agree_button_message: 'Accept cookies' +popup_more_info_button_message: 'Find out more about how we use cookies' +mobile_breakpoint: 768 +popup_agreed_enabled: false +popup_hide_agreed: false +disagree_button_label: 'Reject cookies' +popup_agreed: + value: "

Thank you for accepting cookies

\r\n\r\n

You can now hide this message or find out more about cookies.

\r\n" + format: basic_html +popup_find_more_button_message: 'More info' +popup_hide_button_message: Hide +popup_link: '' +popup_link_new_window: true +popup_height: null +popup_width: '' +popup_delay: 300 +show_more_info: false +popup_bg_hex: '' +popup_text_hex: '' +domain: '' +domains_option: 1 +domains_list: .translate.goog +exclude_paths: "/admin\r\n/admin/*\r\n/batch\r\n/node/add*\r\n/node/*/*\r\n/user/*/*" +exclude_admin_theme: true +cookie_session: 0 +set_cookie_session_zero_on_disagree: 0 +cookie_lifetime: 365 +use_mobile_message: false +use_bare_css: true +use_olivero_css: false +disagree_do_not_show_popup: false +reload_page: false +reload_options: 0 +reload_routes_list: '' +cookie_name: '' +exclude_uid_1: true +better_support_for_screen_readers: true +method: opt_in +disabled_javascripts: 'public://google_tag/boundarycommission/google_tag.script.js' +automatic_cookies_removal: true +allowed_cookies: '' +consent_storage_method: do_not_store +withdraw_message: + value: "

Cookies on the [site:name] website

\r\n\r\n

You have given your consent for us to set additional cookies so we can remember your settings, understand how people use the service and make improvements.  If you have changed your mind, you can withdraw consent.

\r\n\r\n

Find out more about how we use cookies

\r\n" + format: basic_html +withdraw_tab_button_label: 'Cookie settings' +withdraw_action_button_label: 'Withdraw consent' +withdraw_enabled: true +withdraw_button_on_info_popup: false +save_preferences_button_label: 'Save preferences' +accept_all_categories_button_label: 'Accept all cookies' +enable_save_preferences_button: true +domain_all_sites: false +settings_tab_enabled: true +containing_element: body +cookie_policy_version: 1.0.0 +cookie_value_disagreed: '0' +cookie_value_agreed_show_thank_you: '1' +cookie_value_agreed: '2' +accessibility_focus: false +close_button_action: close_banner +reject_button_label: '' +reject_button_enabled: false +close_button_enabled: false +dependencies: + config: + - filter.format.basic_html diff --git a/project/config/boundarycommission/config/facets.facet.date_published.yml b/project/config/boundarycommission/config/facets.facet.date_published.yml new file mode 100644 index 000000000..734c94391 --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet.date_published.yml @@ -0,0 +1,86 @@ +uuid: b50227fb-d422-4820-b99f-c121f31a8fa8 +langcode: en +status: true +dependencies: + config: + - search_api.index.publications + - views.view.publications_search + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: default_coder +id: date_published +name: 'Date published' +weight: 0 +min_count: 1 +missing: false +missing_label: others +url_alias: date +facet_source_id: 'search_api:views_page__publications_search__publication_search_page' +field_identifier: field_published_date +query_operator: and +hard_limit: 0 +exclude: false +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +widget: + type: links + config: + show_numbers: true + soft_limit: 20 + show_reset_link: false + reset_text: 'Show all' + hide_reset_when_no_selection: false + soft_limit_settings: + show_less_label: 'Show fewer' + show_more_label: 'Show more' +empty_behavior: + behavior: none +only_visible_when_facet_source_is_visible: true +show_only_one_result: false +show_title: false +processor_configs: + active_widget_order: + processor_id: active_widget_order + weights: + sort: 20 + settings: + sort: ASC + date_facet_drilldown: + processor_id: date_facet_drilldown + weights: + build: 1 + settings: { } + date_item: + processor_id: date_item + weights: + build: 35 + settings: + date_display: actual_date + granularity: 6 + date_format: '' + hierarchy: false + hierarchy_processor: + processor_id: hierarchy_processor + weights: + build: 100 + settings: { } + raw_value_widget_order: + processor_id: raw_value_widget_order + weights: + sort: 50 + settings: + sort: DESC + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } diff --git a/project/config/boundarycommission/config/facets.facet.publication_type.yml b/project/config/boundarycommission/config/facets.facet.publication_type.yml new file mode 100644 index 000000000..f5b140a2f --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet.publication_type.yml @@ -0,0 +1,77 @@ +uuid: a13309ac-4fbc-4912-81aa-5e16e4365fd5 +langcode: en +status: true +dependencies: + config: + - search_api.index.publications + - views.view.publications_search + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: default_coder +id: publication_type +name: 'Publication Type' +weight: 0 +min_count: 1 +missing: false +missing_label: others +url_alias: type +facet_source_id: 'search_api:views_page__publications_search__publication_search_page' +field_identifier: field_publication_type +query_operator: and +hard_limit: 0 +exclude: false +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +widget: + type: links + config: + show_numbers: true + soft_limit: 20 + show_reset_link: false + reset_text: 'Show all' + hide_reset_when_no_selection: false + soft_limit_settings: + show_less_label: 'Show fewer' + show_more_label: 'Show more' +empty_behavior: + behavior: none +only_visible_when_facet_source_is_visible: true +show_only_one_result: false +show_title: false +processor_configs: + active_widget_order: + processor_id: active_widget_order + weights: + sort: 20 + settings: + sort: ASC + display_value_widget_order: + processor_id: display_value_widget_order + weights: + sort: 40 + settings: + sort: ASC + hierarchy_processor: + processor_id: hierarchy_processor + weights: + build: 100 + settings: { } + translate_entity: + processor_id: translate_entity + weights: + build: 5 + settings: { } + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } diff --git a/project/config/boundarycommission/config/facets.facet.published_date.yml b/project/config/boundarycommission/config/facets.facet.published_date.yml new file mode 100644 index 000000000..436d18b04 --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet.published_date.yml @@ -0,0 +1,80 @@ +uuid: 122a68ba-2955-488e-b345-89071ce294ab +langcode: en +status: true +dependencies: + config: + - search_api.index.news + - views.view.news_search + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: default_coder +id: published_date +name: 'Published Date' +weight: 0 +min_count: 1 +missing: false +missing_label: others +url_alias: date +facet_source_id: 'search_api:views_page__news_search__news_search_page' +field_identifier: field_published_date +query_operator: and +hard_limit: 0 +exclude: false +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +widget: + type: links + config: + show_numbers: true + soft_limit: 20 + show_reset_link: false + reset_text: 'Show all' + hide_reset_when_no_selection: false + soft_limit_settings: + show_less_label: 'Show fewer' + show_more_label: 'Show more' +empty_behavior: + behavior: none +only_visible_when_facet_source_is_visible: true +show_only_one_result: false +show_title: false +processor_configs: + active_widget_order: + processor_id: active_widget_order + weights: + sort: 20 + settings: + sort: DESC + date_facet_drilldown: + processor_id: date_facet_drilldown + weights: + build: 1 + settings: { } + date_item: + processor_id: date_item + weights: + build: 35 + settings: + date_display: actual_date + granularity: 6 + date_format: '' + raw_value_widget_order: + processor_id: raw_value_widget_order + weights: + sort: 50 + settings: + sort: DESC + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } diff --git a/project/config/boundarycommission/config/facets.facet.response_type.yml b/project/config/boundarycommission/config/facets.facet.response_type.yml new file mode 100644 index 000000000..f8c79a4bc --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet.response_type.yml @@ -0,0 +1,77 @@ +uuid: f33e8c98-17ae-47fc-8d2a-15fd149d5929 +langcode: en +status: true +dependencies: + config: + - search_api.index.consultation_responses + - views.view.consultations_search + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: default_coder +id: response_type +name: 'Response Type' +weight: 0 +min_count: 1 +missing: false +missing_label: others +url_alias: type +facet_source_id: 'search_api:views_page__consultations_search__consultations_search_page' +field_identifier: field_response_type +query_operator: and +hard_limit: 0 +exclude: false +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +widget: + type: links + config: + show_numbers: true + soft_limit: 20 + show_reset_link: false + reset_text: 'Show all' + hide_reset_when_no_selection: false + soft_limit_settings: + show_less_label: 'Show less' + show_more_label: 'Show more' +empty_behavior: + behavior: none +only_visible_when_facet_source_is_visible: true +show_only_one_result: false +show_title: false +processor_configs: + active_widget_order: + processor_id: active_widget_order + weights: + sort: 20 + settings: + sort: ASC + display_value_widget_order: + processor_id: display_value_widget_order + weights: + sort: 40 + settings: + sort: ASC + hierarchy_processor: + processor_id: hierarchy_processor + weights: + build: 100 + settings: { } + translate_entity: + processor_id: translate_entity + weights: + build: 5 + settings: { } + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } diff --git a/project/config/boundarycommission/config/facets.facet.stage.yml b/project/config/boundarycommission/config/facets.facet.stage.yml new file mode 100644 index 000000000..718f298cb --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet.stage.yml @@ -0,0 +1,77 @@ +uuid: 466cca61-cc79-4a75-be67-99b77b773168 +langcode: en +status: true +dependencies: + config: + - search_api.index.consultation_responses + - views.view.consultations_search + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: default_coder +id: stage +name: Stage +weight: 0 +min_count: 1 +missing: false +missing_label: others +url_alias: stage +facet_source_id: 'search_api:views_page__consultations_search__consultations_search_page' +field_identifier: field_consultation_stage +query_operator: and +hard_limit: 0 +exclude: false +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +widget: + type: links + config: + show_numbers: true + soft_limit: 20 + show_reset_link: false + reset_text: 'Show all' + hide_reset_when_no_selection: false + soft_limit_settings: + show_less_label: 'Show fewer' + show_more_label: 'Show more' +empty_behavior: + behavior: none +only_visible_when_facet_source_is_visible: true +show_only_one_result: false +show_title: false +processor_configs: + active_widget_order: + processor_id: active_widget_order + weights: + sort: 20 + settings: + sort: ASC + display_value_widget_order: + processor_id: display_value_widget_order + weights: + sort: 40 + settings: + sort: ASC + hierarchy_processor: + processor_id: hierarchy_processor + weights: + build: 100 + settings: { } + translate_entity: + processor_id: translate_entity + weights: + build: 5 + settings: { } + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } diff --git a/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultation_response_search__representations_received.yml b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultation_response_search__representations_received.yml new file mode 100644 index 000000000..693b7397c --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultation_response_search__representations_received.yml @@ -0,0 +1,12 @@ +uuid: d4e9c83f-e207-4385-813a-80f8c129782b +langcode: en +status: true +dependencies: { } +id: search_api__views_page__consultation_response_search__representations_received +name: 'search_api:views_page__consultation_response_search__representations_received' +filter_key: '' +url_processor: facets_pretty_paths +breadcrumb: + active: true + before: false + group: false diff --git a/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultations_search__consultations_search_page.yml b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultations_search__consultations_search_page.yml new file mode 100644 index 000000000..e11f970c8 --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultations_search__consultations_search_page.yml @@ -0,0 +1,12 @@ +uuid: 355acd3f-e495-4ed6-9b66-72c60e3d048c +langcode: en +status: true +dependencies: { } +id: search_api__views_page__consultations_search__consultations_search_page +name: 'search_api:views_page__consultations_search__consultations_search_page' +filter_key: '' +url_processor: facets_pretty_paths +breadcrumb: + active: true + before: false + group: false diff --git a/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__news_search__news_search_page.yml b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__news_search__news_search_page.yml new file mode 100644 index 000000000..93c3dbb14 --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__news_search__news_search_page.yml @@ -0,0 +1,12 @@ +uuid: 5578e842-a3be-4de5-99b7-602cdd849071 +langcode: en +status: true +dependencies: { } +id: search_api__views_page__news_search__news_search_page +name: 'search_api:views_page__news_search__news_search_page' +filter_key: '' +url_processor: facets_pretty_paths +breadcrumb: + active: true + before: false + group: false diff --git a/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__publications_search__publication_search_page.yml b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__publications_search__publication_search_page.yml new file mode 100644 index 000000000..45443fa57 --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__publications_search__publication_search_page.yml @@ -0,0 +1,12 @@ +uuid: afa1e957-b077-496d-8abb-8656a4507e79 +langcode: en +status: true +dependencies: { } +id: search_api__views_page__publications_search__publication_search_page +name: 'search_api:views_page__publications_search__publication_search_page' +filter_key: '' +url_processor: facets_pretty_paths +breadcrumb: + active: true + before: false + group: false diff --git a/project/config/boundarycommission/config/facets_summary.facets_summary.consultation_summary.yml b/project/config/boundarycommission/config/facets_summary.facets_summary.consultation_summary.yml new file mode 100644 index 000000000..141156de5 --- /dev/null +++ b/project/config/boundarycommission/config/facets_summary.facets_summary.consultation_summary.yml @@ -0,0 +1,31 @@ +uuid: 3b926419-4c8d-43aa-9596-2f9bdbaa24fe +langcode: en +status: true +dependencies: + config: + - search_api.index.consultation_responses + - views.view.consultations_search + module: + - search_api +id: consultation_summary +name: 'Consultation Summary' +facet_source_id: 'search_api:views_page__consultations_search__consultations_search_page' +processor_configs: + hide_when_not_rendered: + processor_id: hide_when_not_rendered + weights: + build: '45' + settings: { } +facets: + response_type: + checked: true + label: 'Response Type' + separator: ', ' + show_count: false + weight: 0 + stage: + checked: true + label: Stage + separator: ', ' + show_count: false + weight: 0 diff --git a/project/config/boundarycommission/config/facets_summary.facets_summary.news_summary.yml b/project/config/boundarycommission/config/facets_summary.facets_summary.news_summary.yml new file mode 100644 index 000000000..b5a60b752 --- /dev/null +++ b/project/config/boundarycommission/config/facets_summary.facets_summary.news_summary.yml @@ -0,0 +1,25 @@ +uuid: f14470f1-346d-4273-bfbe-280cf43865e6 +langcode: en +status: true +dependencies: + config: + - search_api.index.news + - views.view.news_search + module: + - search_api +id: news_summary +name: 'News Summary' +facet_source_id: 'search_api:views_page__news_search__news_search_page' +processor_configs: + hide_when_not_rendered: + processor_id: hide_when_not_rendered + weights: + build: '45' + settings: { } +facets: + published_date: + checked: true + label: 'Published Date' + separator: ', ' + show_count: false + weight: 0 diff --git a/project/config/boundarycommission/config/facets_summary.facets_summary.publications_summary.yml b/project/config/boundarycommission/config/facets_summary.facets_summary.publications_summary.yml new file mode 100644 index 000000000..047fa051c --- /dev/null +++ b/project/config/boundarycommission/config/facets_summary.facets_summary.publications_summary.yml @@ -0,0 +1,37 @@ +uuid: e65de30f-c49a-4877-b05a-4def9f3b80d9 +langcode: en +status: true +dependencies: + config: + - search_api.index.publications + - views.view.publications_search + module: + - search_api +id: publications_summary +name: 'Publications Summary' +facet_source_id: 'search_api:views_page__publications_search__publication_search_page' +processor_configs: + hide_when_not_rendered: + processor_id: hide_when_not_rendered + weights: + build: '45' + settings: { } +facets: + date_published: + checked: true + label: Date + separator: ', ' + show_count: false + weight: 0 + publication_type: + checked: true + label: 'Publication Type' + separator: ', ' + show_count: false + weight: 0 + type: + checked: true + label: Type + separator: ', ' + show_count: false + weight: 0 diff --git a/project/config/boundarycommission/config/field.field.block_content.basic_block.body.yml b/project/config/boundarycommission/config/field.field.block_content.basic_block.body.yml new file mode 100644 index 000000000..2a5948c49 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.block_content.basic_block.body.yml @@ -0,0 +1,25 @@ +uuid: 31aa5a4e-13a1-4a15-8029-55b5aeff5b65 +langcode: en +status: true +dependencies: + config: + - block_content.type.basic_block + - field.storage.block_content.body + module: + - text +_core: + default_config_hash: 70RUzbBzcmREVEYcRaIfiopRyftZu1lIb-8A3mpFCHQ +id: block_content.basic_block.body +field_name: body +entity_type: block_content +bundle: basic_block +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/project/config/boundarycommission/config/field.field.block_content.map.field_map.yml b/project/config/boundarycommission/config/field.field.block_content.map.field_map.yml new file mode 100644 index 000000000..9bda3f6e3 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.block_content.map.field_map.yml @@ -0,0 +1,23 @@ +uuid: 04f2ddc8-a611-415f-a25a-bf1cc5abf1d3 +langcode: en +status: true +dependencies: + config: + - block_content.type.map + - field.storage.block_content.field_map + module: + - geolocation +_core: + default_config_hash: NH3M_zm2Z71KCIHP1eraIfAbtqJXe0yFyJPVNZveFdM +id: block_content.map.field_map +field_name: field_map +entity_type: block_content +bundle: map +label: Map +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: geolocation diff --git a/project/config/boundarycommission/config/field.field.file.document.field_file_language.yml b/project/config/boundarycommission/config/field.field.file.document.field_file_language.yml new file mode 100644 index 000000000..0f2a787e6 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.file.document.field_file_language.yml @@ -0,0 +1,23 @@ +uuid: fb72e1fa-709a-4e75-bd6d-36364b6eb8ab +langcode: en +status: true +dependencies: + config: + - field.storage.file.field_file_language + module: + - file + - options +id: file.document.field_file_language +field_name: field_file_language +entity_type: file +bundle: document +label: 'File language' +description: 'Please choose the language for this file.' +required: true +translatable: false +default_value: + - + value: en +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/project/config/boundarycommission/config/field.field.file.document.field_file_title.yml b/project/config/boundarycommission/config/field.field.file.document.field_file_title.yml new file mode 100644 index 000000000..3e70b2f5f --- /dev/null +++ b/project/config/boundarycommission/config/field.field.file.document.field_file_title.yml @@ -0,0 +1,20 @@ +uuid: 439540eb-c88a-442e-b44b-04089b734e77 +langcode: en +status: true +dependencies: + config: + - field.storage.file.field_file_title + module: + - file +id: file.document.field_file_title +field_name: field_file_title +entity_type: file +bundle: document +label: 'File title' +description: 'Please enter the title of this document, this is displayed as the link text.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.file.image.field_file_image_alt_text.yml b/project/config/boundarycommission/config/field.field.file.image.field_file_image_alt_text.yml new file mode 100644 index 000000000..6580fd019 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.file.image.field_file_image_alt_text.yml @@ -0,0 +1,20 @@ +uuid: 64251c00-832b-4dd1-bb21-9659a2e3d9a9 +langcode: en +status: true +dependencies: + config: + - field.storage.file.field_file_image_alt_text + module: + - file +id: file.image.field_file_image_alt_text +field_name: field_file_image_alt_text +entity_type: file +bundle: image +label: 'Alt Text' +description: 'Alternative text is used by screen readers, search engines, and when the image cannot be loaded. By adding alt text you improve accessibility and search engine optimization.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.file.image.field_file_image_caption_text.yml b/project/config/boundarycommission/config/field.field.file.image.field_file_image_caption_text.yml new file mode 100644 index 000000000..92d342999 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.file.image.field_file_image_caption_text.yml @@ -0,0 +1,20 @@ +uuid: 1a29d8e1-63ff-4db4-b81a-a1052b083c07 +langcode: en +status: true +dependencies: + config: + - field.storage.file.field_file_image_caption_text + module: + - file +id: file.image.field_file_image_caption_text +field_name: field_file_image_caption_text +entity_type: file +bundle: image +label: 'Caption text' +description: 'Enter some optional caption text for this image.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.file.image.field_file_image_title_text.yml b/project/config/boundarycommission/config/field.field.file.image.field_file_image_title_text.yml new file mode 100644 index 000000000..4f31e9009 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.file.image.field_file_image_title_text.yml @@ -0,0 +1,20 @@ +uuid: 9717c5b3-b0ea-409d-88ec-2e7038752ef1 +langcode: en +status: true +dependencies: + config: + - field.storage.file.field_file_image_title_text + module: + - file +id: file.image.field_file_image_title_text +field_name: field_file_image_title_text +entity_type: file +bundle: image +label: 'Title Text' +description: 'Title text is used in the tool tip when a user hovers their mouse over the image. Adding title text makes it easier to understand the context of an image and improves usability.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.media.audio.field_media_audio_file.yml b/project/config/boundarycommission/config/field.field.media.audio.field_media_audio_file.yml new file mode 100644 index 000000000..e466d3ac3 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.audio.field_media_audio_file.yml @@ -0,0 +1,29 @@ +uuid: 5542cd3c-a847-4c07-86f4-5f8e6ce09e5e +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_audio_file + - media.type.audio + module: + - file +_core: + default_config_hash: j12MO6nAssXjXcuDRCgKr8P4vrB8ZsI1OenzdadL3Bs +id: media.audio.field_media_audio_file +field_name: field_media_audio_file +entity_type: media +bundle: audio +label: 'Audio file' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_extensions: 'mp3 wav aac' + file_directory: '[date:custom:Y]-[date:custom:m]' + max_filesize: 30MB + description_field: false + handler: 'default:file' + handler_settings: { } +field_type: file diff --git a/project/config/boundarycommission/config/field.field.media.document.field_media_file.yml b/project/config/boundarycommission/config/field.field.media.document.field_media_file.yml new file mode 100644 index 000000000..fd1a2b0a4 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.document.field_media_file.yml @@ -0,0 +1,29 @@ +uuid: 18341187-e539-4eba-ba84-e77d0676db91 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_file + - media.type.document + module: + - file +_core: + default_config_hash: t8kbP8p0VnpCVM01MwOYboRha29JrN1Tg5dDhdos5Fk +id: media.document.field_media_file +field_name: field_media_file +entity_type: media +bundle: document +label: File +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_extensions: 'pdf doc docx xls xlsx xlsm ppt pptx odt ods odp dot zip' + file_directory: '[date:custom:Y]-[date:custom:m]' + max_filesize: 30MB + description_field: false + handler: 'default:file' + handler_settings: { } +field_type: file diff --git a/project/config/boundarycommission/config/field.field.media.file.field_media_file.yml b/project/config/boundarycommission/config/field.field.media.file.field_media_file.yml new file mode 100644 index 000000000..7e0e8351b --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.file.field_media_file.yml @@ -0,0 +1,32 @@ +uuid: 878f6bd4-2dce-41fb-a8f2-83ad92bce631 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_file + - media.type.file + module: + - file + enforced: + module: + - media +_core: + default_config_hash: 03ch-n4Ii5lPVrUOm5kIDX1rKbcePCifjsTxJnN-CAA +id: media.file.field_media_file +field_name: field_media_file +entity_type: media +bundle: file +label: File +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'txt rtf doc docx ppt pptx xls xlsx pdf odf odg odp ods odt fodt fods fodp fodg key numbers pages' + max_filesize: 30MB + handler: 'default:file' + handler_settings: { } + description_field: false +field_type: file diff --git a/project/config/boundarycommission/config/field.field.media.image.field_caption.yml b/project/config/boundarycommission/config/field.field.media.image.field_caption.yml new file mode 100644 index 000000000..d69722165 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.image.field_caption.yml @@ -0,0 +1,21 @@ +uuid: 2b8b711b-442e-4c7e-bdab-d5772fe7185a +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_caption + - media.type.image +_core: + default_config_hash: q3FWXuC62gK9Qqf4WZwUOTp1uQN46IfnUfa8fKRCMv0 +id: media.image.field_caption +field_name: field_caption +entity_type: media +bundle: image +label: Caption +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.media.image.field_media_image.yml b/project/config/boundarycommission/config/field.field.media.image.field_media_image.yml new file mode 100644 index 000000000..e0d88bdea --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.image.field_media_image.yml @@ -0,0 +1,43 @@ +uuid: bd3054bf-e550-4d7c-85fc-39e4d42c7b58 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_image + - media.type.image + module: + - image + enforced: + module: + - media +_core: + default_config_hash: uQR3FMX0yPgdY9F5Oy9FOUnZ2Rybe15d3W7R0C8DxjA +id: media.image.field_media_image +field_name: field_media_image +entity_type: media +bundle: image +label: Image +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + max_resolution: 5000x5000 + min_resolution: '' + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: 5MB + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/project/config/boundarycommission/config/field.field.media.remote_video.field_media_oembed_video.yml b/project/config/boundarycommission/config/field.field.media.remote_video.field_media_oembed_video.yml new file mode 100644 index 000000000..e12cf26d4 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.remote_video.field_media_oembed_video.yml @@ -0,0 +1,21 @@ +uuid: a2f491a9-7379-4774-b11f-4a1c96ef26b8 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_oembed_video + - media.type.remote_video +_core: + default_config_hash: Eo4HHenV5iZat_kEWgr_wydD3TgwURMCzwt-7qIEyoM +id: media.remote_video.field_media_oembed_video +field_name: field_media_oembed_video +entity_type: media +bundle: remote_video +label: 'Video URL' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.node.basic_page.body.yml b/project/config/boundarycommission/config/field.field.node.basic_page.body.yml new file mode 100644 index 000000000..52cf62628 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.basic_page.body.yml @@ -0,0 +1,30 @@ +uuid: 0f0a2afd-d785-497a-b6a1-8df1b67c42aa +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.basic_page + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + allowed_formats: + - basic_html +_core: + default_config_hash: cBCwT51Mu2HwrJxGKBSMyRYRXaRLS5Qs2rfG9FhIUhQ +id: node.basic_page.body +field_name: body +entity_type: node +bundle: basic_page +label: Body +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/project/config/boundarycommission/config/field.field.node.basic_page.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.basic_page.field_meta_tags.yml new file mode 100644 index 000000000..4cdf0fa9f --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.basic_page.field_meta_tags.yml @@ -0,0 +1,23 @@ +uuid: 18ece2dc-1c34-46a6-9b78-31629984e13a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.basic_page + module: + - metatag +_core: + default_config_hash: UW-fOtoW8gvwx5NhcnmRF_rhSgVo5mK5_Axo9M3k1Tc +id: node.basic_page.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: basic_page +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.basic_page.field_next_audit_due.yml b/project/config/boundarycommission/config/field.field.node.basic_page.field_next_audit_due.yml new file mode 100644 index 000000000..0ef714038 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.basic_page.field_next_audit_due.yml @@ -0,0 +1,23 @@ +uuid: 33a460be-8189-4131-8530-8db9d9de8e82 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_next_audit_due + - node.type.basic_page + module: + - datetime +_core: + default_config_hash: C3yyvw948knUKpthchZTGSyHvDASmDaNQyZsC2dJXBw +id: node.basic_page.field_next_audit_due +field_name: field_next_audit_due +entity_type: node +bundle: basic_page +label: 'Next audit due' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/project/config/boundarycommission/config/field.field.node.consultation_response.field_attachment.yml b/project/config/boundarycommission/config/field.field.node.consultation_response.field_attachment.yml new file mode 100644 index 000000000..4d99d9998 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.consultation_response.field_attachment.yml @@ -0,0 +1,31 @@ +uuid: be376dc3-aaeb-4809-aebc-bdb1b362ff44 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_attachment + - media.type.document + - media.type.file + - node.type.consultation_response +id: node.consultation_response.field_attachment +field_name: field_attachment +entity_type: node +bundle: consultation_response +label: Attachment +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + document: document + file: file + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: document +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.consultation_response.field_consultation_stage.yml b/project/config/boundarycommission/config/field.field.node.consultation_response.field_consultation_stage.yml new file mode 100644 index 000000000..afea616d7 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.consultation_response.field_consultation_stage.yml @@ -0,0 +1,29 @@ +uuid: f8a199da-12a4-4bb6-9095-ba50bf3fc9d5 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_consultation_stage + - node.type.consultation_response + - taxonomy.vocabulary.consultation_stage +id: node.consultation_response.field_consultation_stage +field_name: field_consultation_stage +entity_type: node +bundle: consultation_response +label: Stage +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + consultation_stage: consultation_stage + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.consultation_response.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.consultation_response.field_meta_tags.yml new file mode 100644 index 000000000..1d5800275 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.consultation_response.field_meta_tags.yml @@ -0,0 +1,21 @@ +uuid: a2cdf6ca-d158-4771-980a-b0dc042d183e +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.consultation_response + module: + - metatag +id: node.consultation_response.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: consultation_response +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.consultation_response.field_response_type.yml b/project/config/boundarycommission/config/field.field.node.consultation_response.field_response_type.yml new file mode 100644 index 000000000..d735644dc --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.consultation_response.field_response_type.yml @@ -0,0 +1,29 @@ +uuid: da41dd10-9b34-42d0-ac3c-7ddc330e131f +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_response_type + - node.type.consultation_response + - taxonomy.vocabulary.consultation_response_type +id: node.consultation_response.field_response_type +field_name: field_response_type +entity_type: node +bundle: consultation_response +label: 'Response Type' +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + consultation_response_type: consultation_response_type + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.featured_content.field_link.yml b/project/config/boundarycommission/config/field.field.node.featured_content.field_link.yml new file mode 100644 index 000000000..056ec88bb --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.featured_content.field_link.yml @@ -0,0 +1,23 @@ +uuid: 172245d1-9c28-4be6-9d8c-8e597213eb52 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_link + - node.type.featured_content + module: + - link +id: node.featured_content.field_link +field_name: field_link +entity_type: node +bundle: featured_content +label: Link +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + title: 1 + link_type: 1 +field_type: link diff --git a/project/config/boundarycommission/config/field.field.node.featured_content.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.featured_content.field_meta_tags.yml new file mode 100644 index 000000000..5364786d4 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.featured_content.field_meta_tags.yml @@ -0,0 +1,21 @@ +uuid: d54a796e-d8a4-4918-a061-0f18f490ae4a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.featured_content + module: + - metatag +id: node.featured_content.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: featured_content +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.featured_content.field_photo.yml b/project/config/boundarycommission/config/field.field.node.featured_content.field_photo.yml new file mode 100644 index 000000000..da7e84207 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.featured_content.field_photo.yml @@ -0,0 +1,29 @@ +uuid: a898562a-418a-46bc-9ac8-7d7cb0a08d74 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_photo + - media.type.image + - node.type.featured_content +id: node.featured_content.field_photo +field_name: field_photo +entity_type: node +bundle: featured_content +label: Image +description: 'Add an image that will be displayed on the home page.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + image: image + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.featured_content.field_tagline.yml b/project/config/boundarycommission/config/field.field.node.featured_content.field_tagline.yml new file mode 100644 index 000000000..81bbb2714 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.featured_content.field_tagline.yml @@ -0,0 +1,26 @@ +uuid: 28214d0a-941c-41a5-8309-e10abdef6b27 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_tagline + - node.type.featured_content + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + allowed_formats: + - plain_text +id: node.featured_content.field_tagline +field_name: field_tagline +entity_type: node +bundle: featured_content +label: Tagline +description: 'Add a tagline that will be displayed under the image on the home page.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text diff --git a/project/config/boundarycommission/config/field.field.node.news.body.yml b/project/config/boundarycommission/config/field.field.node.news.body.yml new file mode 100644 index 000000000..eb255f4d8 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.body.yml @@ -0,0 +1,30 @@ +uuid: 0ffa58a9-d75d-475c-91d0-e39f524cd37e +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.news + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + allowed_formats: + - basic_html +_core: + default_config_hash: u1pxGrNXR4V2q0lHTM0AuVdnbyTLitNAlxGCLqWujyg +id: node.news.body +field_name: body +entity_type: node +bundle: news +label: Body +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/project/config/boundarycommission/config/field.field.node.news.field_archive.yml b/project/config/boundarycommission/config/field.field.node.news.field_archive.yml new file mode 100644 index 000000000..d2c2d624d --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.field_archive.yml @@ -0,0 +1,23 @@ +uuid: bf63f19a-7f5e-4baa-bf2c-28579979ef3e +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_archive + - node.type.news +id: node.news.field_archive +field_name: field_archive +entity_type: node +bundle: news +label: Archive +description: "If you'd like to archive this news item then check the checkbox." +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/field.field.node.news.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.news.field_meta_tags.yml new file mode 100644 index 000000000..b5ce48f86 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.field_meta_tags.yml @@ -0,0 +1,23 @@ +uuid: c137814e-cb3e-4714-bac1-142211bec8fc +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.news + module: + - metatag +_core: + default_config_hash: N4ifpekUhQVgounHS0ixrnuJUw1vpzLkOSQLOSSCpvA +id: node.news.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: news +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.news.field_photo.yml b/project/config/boundarycommission/config/field.field.node.news.field_photo.yml new file mode 100644 index 000000000..25ebac6be --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.field_photo.yml @@ -0,0 +1,31 @@ +uuid: b3c5a601-00b0-49c3-ae1c-52cb80f21f6b +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_photo + - media.type.image + - node.type.news +_core: + default_config_hash: m4kjXvKfbT-A03_u381ryfa8xALUtf9a78RDaFtzptY +id: node.news.field_photo +field_name: field_photo +entity_type: node +bundle: news +label: Photo +description: 'Please choose an image to be displayed with this news item. ' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + image: image + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.news.field_published_date.yml b/project/config/boundarycommission/config/field.field.node.news.field_published_date.yml new file mode 100644 index 000000000..f086235e8 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.field_published_date.yml @@ -0,0 +1,26 @@ +uuid: e54ffd4b-c70d-4506-a7ca-bdb1d109446c +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_published_date + - node.type.news + module: + - datetime +_core: + default_config_hash: Pu3LEgRp89W8VTCWsOUk3dEQ7ghLCA537oED47kTvCc +id: node.news.field_published_date +field_name: field_published_date +entity_type: node +bundle: news +label: 'Publication date' +description: 'Please select the publication date of this news item, or accept the default value of today.' +required: true +translatable: false +default_value: + - + default_date_type: now + default_date: now +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/project/config/boundarycommission/config/field.field.node.news.field_teaser.yml b/project/config/boundarycommission/config/field.field.node.news.field_teaser.yml new file mode 100644 index 000000000..dc60cc0c1 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.field_teaser.yml @@ -0,0 +1,21 @@ +uuid: df9006c9-4ec1-47e8-96dd-943851e445c6 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_teaser + - node.type.news +_core: + default_config_hash: 1FsJzihApN0_v47zULsftJea1AD2-XwJVE7XzbgssC4 +id: node.news.field_teaser +field_name: field_teaser +entity_type: node +bundle: news +label: Teaser +description: 'Enter some short teaser text for this news item. This will be used to link to this page on other pages on this site.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.node.publication.body.yml b/project/config/boundarycommission/config/field.field.node.publication.body.yml new file mode 100644 index 000000000..a0021d8a7 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.body.yml @@ -0,0 +1,30 @@ +uuid: f0efc410-3323-44b5-b673-55daa0f05726 +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.publication + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + allowed_formats: + - basic_html +_core: + default_config_hash: C-lA3ztVbA5TJnvirrD4aVYAmyWW9m9gxUarBR68jy8 +id: node.publication.body +field_name: body +entity_type: node +bundle: publication +label: Body +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/project/config/boundarycommission/config/field.field.node.publication.field_archive.yml b/project/config/boundarycommission/config/field.field.node.publication.field_archive.yml new file mode 100644 index 000000000..b32205cfe --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.field_archive.yml @@ -0,0 +1,23 @@ +uuid: 1861f09e-5690-4aaf-8e8d-bb0c1170c1f9 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_archive + - node.type.publication +id: node.publication.field_archive +field_name: field_archive +entity_type: node +bundle: publication +label: Archive +description: "If you'd like to archive this publication then check the checkbox." +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/field.field.node.publication.field_attachment.yml b/project/config/boundarycommission/config/field.field.node.publication.field_attachment.yml new file mode 100644 index 000000000..9cb7a8256 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.field_attachment.yml @@ -0,0 +1,31 @@ +uuid: bc236a25-55f5-406d-9582-7c1cf7d0757a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_attachment + - media.type.document + - node.type.publication +_core: + default_config_hash: vvW9PTT1tHEC7y1peVajxklRzfzcj7qYBVQo2JAQTUQ +id: node.publication.field_attachment +field_name: field_attachment +entity_type: node +bundle: publication +label: Attachment +description: "Choose at least between one and five individual files to attach to this publication revision.
\r\n
\r\nAn important note about attachments:\r\n
    \r\n
  • Multiple revisions of a publication page can link to the same file attachment.
  • \r\n
  • If you need to make a new version of a file available within a publication revision, attach a new file with a different filename and remove the old file attachment (this will not affect other revisions of the publication - these will still have the old file attached).
  • \r\n
" +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + document: document + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.publication.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.publication.field_meta_tags.yml new file mode 100644 index 000000000..2b1692851 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.field_meta_tags.yml @@ -0,0 +1,23 @@ +uuid: 243e6590-f5b4-4c5f-93e6-5ca2409b1695 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.publication + module: + - metatag +_core: + default_config_hash: GY7vRcz2iU_5CipYUjiu0tPrujXMjFwJRV4PKGA-BI0 +id: node.publication.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: publication +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.publication.field_publication_type.yml b/project/config/boundarycommission/config/field.field.node.publication.field_publication_type.yml new file mode 100644 index 000000000..fbc79f24e --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.field_publication_type.yml @@ -0,0 +1,31 @@ +uuid: f76d0578-5705-40b1-93f1-095e927b58dc +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_publication_type + - node.type.publication + - taxonomy.vocabulary.publication_type +_core: + default_config_hash: 14NqevawhWXgH65cBjkur-vAx00JJGor75I4qW8N8pY +id: node.publication.field_publication_type +field_name: field_publication_type +entity_type: node +bundle: publication +label: Type +description: 'Please choose a type for this publication.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + publication_type: publication_type + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.publication.field_published_date.yml b/project/config/boundarycommission/config/field.field.node.publication.field_published_date.yml new file mode 100644 index 000000000..6d7913b2d --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.field_published_date.yml @@ -0,0 +1,26 @@ +uuid: cd6c93bc-aea5-4d56-9528-5ca7d9fa90df +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_published_date + - node.type.publication + module: + - datetime +_core: + default_config_hash: aYp0NIYNJQYxHn52gNKUsxWnWbFy-VI_TfRsbjEsfWk +id: node.publication.field_published_date +field_name: field_published_date +entity_type: node +bundle: publication +label: 'Publication Date' +description: 'Please select the published date for this publication, or accept the default value of today.' +required: true +translatable: false +default_value: + - + default_date_type: now + default_date: now +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/project/config/boundarycommission/config/field.field.node.respresentations.field_attachment.yml b/project/config/boundarycommission/config/field.field.node.respresentations.field_attachment.yml new file mode 100644 index 000000000..e03e8ae67 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.respresentations.field_attachment.yml @@ -0,0 +1,31 @@ +uuid: 8ac76c0d-7b9d-4109-82f4-35051f1183a5 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_attachment + - media.type.document + - media.type.file + - node.type.respresentations +id: node.respresentations.field_attachment +field_name: field_attachment +entity_type: node +bundle: respresentations +label: Attachment +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + document: document + file: file + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: document +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.respresentations.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.respresentations.field_meta_tags.yml new file mode 100644 index 000000000..8df706ba7 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.respresentations.field_meta_tags.yml @@ -0,0 +1,21 @@ +uuid: f7939c23-f837-4c38-8102-26d85b010e7a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.respresentations + module: + - metatag +id: node.respresentations.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: respresentations +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.respresentations.field_representation_stage.yml b/project/config/boundarycommission/config/field.field.node.respresentations.field_representation_stage.yml new file mode 100644 index 000000000..90a61a9d8 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.respresentations.field_representation_stage.yml @@ -0,0 +1,29 @@ +uuid: b1ecc593-5f02-478e-bd8e-74bed43ccb3a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_representation_stage + - node.type.respresentations + - taxonomy.vocabulary.representation_stage +id: node.respresentations.field_representation_stage +field_name: field_representation_stage +entity_type: node +bundle: respresentations +label: 'Representation Stage' +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + representation_stage: representation_stage + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.respresentations.field_response_type.yml b/project/config/boundarycommission/config/field.field.node.respresentations.field_response_type.yml new file mode 100644 index 000000000..1096022c1 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.respresentations.field_response_type.yml @@ -0,0 +1,29 @@ +uuid: 40f370eb-2e9b-45c3-8667-cbec28c4db65 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_response_type + - node.type.respresentations + - taxonomy.vocabulary.consultation_response_type +id: node.respresentations.field_response_type +field_name: field_response_type +entity_type: node +bundle: respresentations +label: 'Response Type' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + consultation_response_type: consultation_response_type + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.webform.body.yml b/project/config/boundarycommission/config/field.field.node.webform.body.yml new file mode 100644 index 000000000..b99e1001b --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.webform.body.yml @@ -0,0 +1,32 @@ +uuid: 5a57063f-9e78-40f0-ac1f-cc070c5f8324 +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.webform + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + basic_html: basic_html + restricted_html: '0' + full_html: '0' + plain_text: '0' +_core: + default_config_hash: PD_vT1NXpuDGyKOL8TkRuya0M2NU2poqhpbD6t1eG8s +id: node.webform.body +field_name: body +entity_type: node +bundle: webform +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/project/config/boundarycommission/config/field.field.node.webform.webform.yml b/project/config/boundarycommission/config/field.field.node.webform.webform.yml new file mode 100644 index 000000000..1481431b7 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.webform.webform.yml @@ -0,0 +1,31 @@ +uuid: 4b7cc41b-62b1-4bf9-a1d4-f067c08e3c4b +langcode: en +status: true +dependencies: + config: + - field.storage.node.webform + - node.type.webform + module: + - webform +_core: + default_config_hash: w6hvTj8CaO8YVQDnlsD-jRBzMA_vNmx2cXLEKX13yT4 +id: node.webform.webform +field_name: webform +entity_type: node +bundle: webform +label: Webform +description: 'Select the webform that you would like to attach to this node.' +required: false +translatable: false +default_value: + - + default_data: '' + status: open + open: '' + close: '' + target_uuid: '' +default_value_callback: '' +settings: + handler: 'default:webform' + handler_settings: { } +field_type: webform diff --git a/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_answer.yml b/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_answer.yml new file mode 100644 index 000000000..a605b7e9a --- /dev/null +++ b/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_answer.yml @@ -0,0 +1,30 @@ +uuid: 3812e638-9562-4a39-b7c4-cc0d92434fce +langcode: en +status: true +dependencies: + config: + - field.storage.paragraph.field_answer + - paragraphs.paragraphs_type.faq_accordion + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + basic_html: basic_html + restricted_html: '0' + full_html: '0' + plain_text: '0' +_core: + default_config_hash: 1E9E1XBS00aTXa7gKOiwLzo8JAvbwnO3DvIN_wBgj24 +id: paragraph.faq_accordion.field_answer +field_name: field_answer +entity_type: paragraph +bundle: faq_accordion +label: Answer +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_question.yml b/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_question.yml new file mode 100644 index 000000000..1ea573c2f --- /dev/null +++ b/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_question.yml @@ -0,0 +1,21 @@ +uuid: c1732bdd-fd6c-4f55-86fa-84c52d5db9a7 +langcode: en +status: true +dependencies: + config: + - field.storage.paragraph.field_question + - paragraphs.paragraphs_type.faq_accordion +_core: + default_config_hash: jEnq1bXLuZ5q9TkiIdTZGq8f95aRtC4R9Hw25TT8UKg +id: paragraph.faq_accordion.field_question +field_name: field_question +entity_type: paragraph +bundle: faq_accordion +label: Question +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.user.user.user_picture.yml b/project/config/boundarycommission/config/field.field.user.user.user_picture.yml new file mode 100644 index 000000000..4081cd940 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.user.user.user_picture.yml @@ -0,0 +1,40 @@ +uuid: 39df8873-3748-4c2f-b968-922eeeb5be71 +langcode: en +status: true +dependencies: + config: + - field.storage.user.user_picture + module: + - image + - user +_core: + default_config_hash: Iiq0AttdhgbebJwabSFwQQ1ORn64GoGz0xSZ_eyCJ8A +id: user.user.user_picture +field_name: user_picture +entity_type: user +bundle: user +label: Picture +description: 'Your virtual face or picture.' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_extensions: 'png gif jpg jpeg' + file_directory: 'pictures/[date:custom:Y]-[date:custom:m]' + max_filesize: '' + alt_field: false + title_field: false + max_resolution: '' + min_resolution: '' + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + alt_field_required: false + title_field_required: false + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/project/config/boundarycommission/config/field.settings.yml b/project/config/boundarycommission/config/field.settings.yml new file mode 100644 index 000000000..2225b8ffd --- /dev/null +++ b/project/config/boundarycommission/config/field.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0 +purge_batch_size: 50 diff --git a/project/config/boundarycommission/config/field.storage.block_content.body.yml b/project/config/boundarycommission/config/field.storage.block_content.body.yml new file mode 100644 index 000000000..ac5e95a57 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.block_content.body.yml @@ -0,0 +1,21 @@ +uuid: fc91ba78-0297-4971-bdf3-b2f9e51efc96 +langcode: en +status: true +dependencies: + module: + - block_content + - text +_core: + default_config_hash: eS0snV_L3dx9shtWRTzm5eblwOJ7qKWC9IE-4GMTDFc +id: block_content.body +field_name: body +entity_type: block_content +type: text_with_summary +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.block_content.field_map.yml b/project/config/boundarycommission/config/field.storage.block_content.field_map.yml new file mode 100644 index 000000000..88f082b42 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.block_content.field_map.yml @@ -0,0 +1,21 @@ +uuid: 1de5fc7d-2488-44a8-8d9f-6e9f16b3235b +langcode: en +status: true +dependencies: + module: + - block_content + - geolocation +_core: + default_config_hash: KuMMTmxg4QVs2XzqEuk4EIvUY7ngxmyBWwFmAMtHOl4 +id: block_content.field_map +field_name: field_map +entity_type: block_content +type: geolocation +settings: { } +module: geolocation +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.file.field_file_image_alt_text.yml b/project/config/boundarycommission/config/field.storage.file.field_file_image_alt_text.yml new file mode 100644 index 000000000..6feba25b0 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.file.field_file_image_alt_text.yml @@ -0,0 +1,21 @@ +uuid: 7ea846f1-9ec8-41b2-a868-c673c5fefc62 +langcode: und +status: true +dependencies: + module: + - file +id: file.field_file_image_alt_text +field_name: field_file_image_alt_text +entity_type: file +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.file.field_file_image_caption_text.yml b/project/config/boundarycommission/config/field.storage.file.field_file_image_caption_text.yml new file mode 100644 index 000000000..4f54ada8b --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.file.field_file_image_caption_text.yml @@ -0,0 +1,21 @@ +uuid: 050774cd-bcc1-4c06-a9ed-43cd136feaaa +langcode: und +status: true +dependencies: + module: + - file +id: file.field_file_image_caption_text +field_name: field_file_image_caption_text +entity_type: file +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.file.field_file_image_title_text.yml b/project/config/boundarycommission/config/field.storage.file.field_file_image_title_text.yml new file mode 100644 index 000000000..170289e55 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.file.field_file_image_title_text.yml @@ -0,0 +1,21 @@ +uuid: 8c89c181-860e-41aa-b48c-24c5ba3f4871 +langcode: und +status: true +dependencies: + module: + - file +id: file.field_file_image_title_text +field_name: field_file_image_title_text +entity_type: file +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.file.field_file_language.yml b/project/config/boundarycommission/config/field.storage.file.field_file_language.yml new file mode 100644 index 000000000..2b988002d --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.file.field_file_language.yml @@ -0,0 +1,72 @@ +uuid: 15cad7f8-53df-4f42-a88f-21cc20b85da0 +langcode: und +status: true +dependencies: + module: + - file + - options +id: file.field_file_language +field_name: field_file_language +entity_type: file +type: list_string +settings: + allowed_values: + - + value: en + label: English + - + value: ga + label: Irish + - + value: gd + label: 'Ulster Scots' + - + value: zh-yue + label: 'Chinese Full / Cantonese' + - + value: zh-guoyu + label: 'Chinese Simple / Mandarin' + - + value: cs + label: Czech + - + value: fr + label: French + - + value: bg + label: Bulgarian + - + value: lv + label: Latvian + - + value: lt + label: Lithuanian + - + value: pl + label: Polish + - + value: pt + label: Portuguese + - + value: ro + label: Romanian + - + value: ru + label: Russian + - + value: sk + label: Slovak + - + value: es + label: Spanish + - + value: tet + label: Tetum + allowed_values_function: '' +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.file.field_file_title.yml b/project/config/boundarycommission/config/field.storage.file.field_file_title.yml new file mode 100644 index 000000000..97b6955f7 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.file.field_file_title.yml @@ -0,0 +1,21 @@ +uuid: 0cf39f46-bfe8-4cff-a30c-5165908c4f06 +langcode: und +status: true +dependencies: + module: + - file +id: file.field_file_title +field_name: field_file_title +entity_type: file +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.media.field_caption.yml b/project/config/boundarycommission/config/field.storage.media.field_caption.yml new file mode 100644 index 000000000..c63c2c97b --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.media.field_caption.yml @@ -0,0 +1,23 @@ +uuid: a39b2f10-e19c-4d50-86d4-89f62d994ecb +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 8Wbw7PMMzKhOJdZvbc8CXVUgHE3Ygpdv_oEfFqJDJ1w +id: media.field_caption +field_name: field_caption +entity_type: media +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.media.field_media_audio_file.yml b/project/config/boundarycommission/config/field.storage.media.field_media_audio_file.yml new file mode 100644 index 000000000..bd94c06f8 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.media.field_media_audio_file.yml @@ -0,0 +1,25 @@ +uuid: 54651e96-7e2d-43ca-a5b2-ea84eccf2c4a +langcode: en +status: true +dependencies: + module: + - file + - media +_core: + default_config_hash: JCHoh95CpUeBx9ch24Tmi6ru0nwmNz8xWVH4Qs7RnTg +id: media.field_media_audio_file +field_name: field_media_audio_file +entity_type: media +type: file +settings: + target_type: file + display_field: false + display_default: false + uri_scheme: public +module: file +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.media.field_media_file.yml b/project/config/boundarycommission/config/field.storage.media.field_media_file.yml new file mode 100644 index 000000000..f0b97b72a --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.media.field_media_file.yml @@ -0,0 +1,28 @@ +uuid: 34364e6b-5022-4877-8ece-a8f734636429 +langcode: en +status: true +dependencies: + module: + - file + - media + enforced: + module: + - media +_core: + default_config_hash: 4GNilUMnj0opT050eZIkWhkfuzu69ClyEr-cHxofjQw +id: media.field_media_file +field_name: field_media_file +entity_type: media +type: file +settings: + uri_scheme: public + target_type: file + display_field: false + display_default: false +module: file +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.media.field_media_image.yml b/project/config/boundarycommission/config/field.storage.media.field_media_image.yml new file mode 100644 index 000000000..539b7717e --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.media.field_media_image.yml @@ -0,0 +1,35 @@ +uuid: 03c44bd1-a29b-464b-8fe9-906b1b0f1ef0 +langcode: en +status: true +dependencies: + module: + - file + - image + - media + enforced: + module: + - media +_core: + default_config_hash: 7ZBrcl87ZXaw42v952wwcw_9cQgTBq5_5tgyUkE-VV0 +id: media.field_media_image +field_name: field_media_image +entity_type: media +type: image +settings: + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false + uri_scheme: public +module: image +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.media.field_media_oembed_video.yml b/project/config/boundarycommission/config/field.storage.media.field_media_oembed_video.yml new file mode 100644 index 000000000..8cf1f702b --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.media.field_media_oembed_video.yml @@ -0,0 +1,23 @@ +uuid: 9d4d075d-0300-4558-8964-241f96027b93 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: SJgxR5XWOesQbEKqp8VgInPyJjCFU_t2pi7UzYB78xg +id: media.field_media_oembed_video +field_name: field_media_oembed_video +entity_type: media +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.body.yml b/project/config/boundarycommission/config/field.storage.node.body.yml new file mode 100644 index 000000000..71e402d8f --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.body.yml @@ -0,0 +1,21 @@ +uuid: 0bb8d3a1-f2dd-42ba-962b-63e72b8da0da +langcode: und +status: true +dependencies: + module: + - node + - text +_core: + default_config_hash: 2OyA4KOqAR4iPtXDSdUCJoTUHxUUV5OofI6uYawtIR8 +id: node.body +field_name: body +entity_type: node +type: text_with_summary +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_additional_info.yml b/project/config/boundarycommission/config/field.storage.node.field_additional_info.yml new file mode 100644 index 000000000..091c3140a --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_additional_info.yml @@ -0,0 +1,21 @@ +uuid: 5ab08d7e-adac-4180-bc46-4b459b44ac92 +langcode: en +status: true +dependencies: + module: + - node + - text +_core: + default_config_hash: fuoOvCFMEdsNetUx1_rzmnAnJA15WdDYpWeoK6-6pGA +id: node.field_additional_info +field_name: field_additional_info +entity_type: node +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_archive.yml b/project/config/boundarycommission/config/field.storage.node.field_archive.yml new file mode 100644 index 000000000..0dd5cfe89 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_archive.yml @@ -0,0 +1,18 @@ +uuid: 276fbc7a-eab3-440a-aceb-6a23835b7090 +langcode: und +status: true +dependencies: + module: + - node +id: node.field_archive +field_name: field_archive +entity_type: node +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_attachment.yml b/project/config/boundarycommission/config/field.storage.node.field_attachment.yml new file mode 100644 index 000000000..99d195b6a --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_attachment.yml @@ -0,0 +1,22 @@ +uuid: 1101da04-c7a4-445e-8bca-7f52fefce0d0 +langcode: en +status: true +dependencies: + module: + - media + - node +_core: + default_config_hash: JYcnwK1cziS7mHN29hd78z6_OYXihUxujliRqVhcBnI +id: node.field_attachment +field_name: field_attachment +entity_type: node +type: entity_reference +settings: + target_type: media +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_consultation_stage.yml b/project/config/boundarycommission/config/field.storage.node.field_consultation_stage.yml new file mode 100644 index 000000000..fe01d75e3 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_consultation_stage.yml @@ -0,0 +1,20 @@ +uuid: 052196e6-e17a-4f13-ac48-c4c6e8e08824 +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +id: node.field_consultation_stage +field_name: field_consultation_stage +entity_type: node +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_lb_search_content.yml b/project/config/boundarycommission/config/field.storage.node.field_lb_search_content.yml new file mode 100644 index 000000000..193842760 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_lb_search_content.yml @@ -0,0 +1,21 @@ +uuid: a249acc0-2556-4f64-bd20-168567f6a14a +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: yfQXeoMkJSUCfyLLVtKQUolkYMOLYh71nUaA4GlKQ4w +id: node.field_lb_search_content +field_name: field_lb_search_content +entity_type: node +type: string_long +settings: + case_sensitive: false +module: core +locked: true +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_lb_search_enable.yml b/project/config/boundarycommission/config/field.storage.node.field_lb_search_enable.yml new file mode 100644 index 000000000..f89475505 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_lb_search_enable.yml @@ -0,0 +1,20 @@ +uuid: 0adb9fbb-0e42-4da5-828e-611624be5e6d +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: ReXBrh1vkNGpd9DKVUGV2zb6QhTY43BUEcxqMk3I5vc +id: node.field_lb_search_enable +field_name: field_lb_search_enable +entity_type: node +type: boolean +settings: { } +module: core +locked: true +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_link.yml b/project/config/boundarycommission/config/field.storage.node.field_link.yml new file mode 100644 index 000000000..1a95886a0 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_link.yml @@ -0,0 +1,21 @@ +uuid: c6b6fb85-94ee-4c95-9dcb-7d4af6f42e2b +langcode: en +status: true +dependencies: + module: + - link + - node +_core: + default_config_hash: lqDhhmTov2BlhsT0oBucyyt-o0pvbGopO_CNHybYj7M +id: node.field_link +field_name: field_link +entity_type: node +type: link +settings: { } +module: link +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_meta_tags.yml b/project/config/boundarycommission/config/field.storage.node.field_meta_tags.yml new file mode 100644 index 000000000..0e85494ef --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_meta_tags.yml @@ -0,0 +1,21 @@ +uuid: 897062c2-c84e-4649-9a66-7286db17334a +langcode: en +status: true +dependencies: + module: + - metatag + - node +_core: + default_config_hash: q_8tYtl7t-xtFLiitRwzDlG2zd_8-gamQCibu90tjwg +id: node.field_meta_tags +field_name: field_meta_tags +entity_type: node +type: metatag +settings: { } +module: metatag +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_metatag.yml b/project/config/boundarycommission/config/field.storage.node.field_metatag.yml new file mode 100644 index 000000000..9b3c8e196 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_metatag.yml @@ -0,0 +1,21 @@ +uuid: a75b86af-01b2-432e-853c-f9492953a004 +langcode: und +status: true +dependencies: + module: + - metatag + - node +_core: + default_config_hash: e847CiGeXOrMr5OXVKIaGRKuNwPUD5C2WoPPvz3PHkY +id: node.field_metatag +field_name: field_metatag +entity_type: node +type: metatag +settings: { } +module: metatag +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_next_audit_due.yml b/project/config/boundarycommission/config/field.storage.node.field_next_audit_due.yml new file mode 100644 index 000000000..b4a3f7f40 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_next_audit_due.yml @@ -0,0 +1,22 @@ +uuid: 22c9408e-1875-4843-b299-8be1e4b2ad7c +langcode: en +status: true +dependencies: + module: + - datetime + - node +_core: + default_config_hash: Xs_HvC2RFbXlpt4YJ9ed-RdibAkfoBGTMW7WnuF7lh4 +id: node.field_next_audit_due +field_name: field_next_audit_due +entity_type: node +type: datetime +settings: + datetime_type: date +module: datetime +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_photo.yml b/project/config/boundarycommission/config/field.storage.node.field_photo.yml new file mode 100644 index 000000000..cf88230c7 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_photo.yml @@ -0,0 +1,22 @@ +uuid: 210b07b0-b4fb-4cbb-b57c-26a3c1ad3755 +langcode: en +status: true +dependencies: + module: + - media + - node +_core: + default_config_hash: NdzErWmh4yJtMOdjY7KTujgy9CJNWrnSi3mKfpSaMe4 +id: node.field_photo +field_name: field_photo +entity_type: node +type: entity_reference +settings: + target_type: media +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_publication_type.yml b/project/config/boundarycommission/config/field.storage.node.field_publication_type.yml new file mode 100644 index 000000000..0d58ba600 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_publication_type.yml @@ -0,0 +1,22 @@ +uuid: 672b06cc-09e0-4913-ac86-bc014acdf334 +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +_core: + default_config_hash: e4x9ghNeGMDBWb34flNGaCxZNhE1JJddu_3NMWrRqss +id: node.field_publication_type +field_name: field_publication_type +entity_type: node +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_published_date.yml b/project/config/boundarycommission/config/field.storage.node.field_published_date.yml new file mode 100644 index 000000000..8f7222d4e --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_published_date.yml @@ -0,0 +1,22 @@ +uuid: 608da591-6a1b-4181-930a-6b98e34ac4da +langcode: und +status: true +dependencies: + module: + - datetime + - node +_core: + default_config_hash: 3tpwHAUvVnxhVywjAwQuZh2lWqxhX521AyKeA3eaR14 +id: node.field_published_date +field_name: field_published_date +entity_type: node +type: datetime +settings: + datetime_type: date +module: datetime +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_representation_stage.yml b/project/config/boundarycommission/config/field.storage.node.field_representation_stage.yml new file mode 100644 index 000000000..d76eb7011 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_representation_stage.yml @@ -0,0 +1,20 @@ +uuid: 2560fab3-2ee2-4da5-a192-201a1f63c5fb +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +id: node.field_representation_stage +field_name: field_representation_stage +entity_type: node +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_response_type.yml b/project/config/boundarycommission/config/field.storage.node.field_response_type.yml new file mode 100644 index 000000000..7e7c352ab --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_response_type.yml @@ -0,0 +1,20 @@ +uuid: 1916cd0a-a6eb-4025-9448-1f32a301803e +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +id: node.field_response_type +field_name: field_response_type +entity_type: node +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_tagline.yml b/project/config/boundarycommission/config/field.storage.node.field_tagline.yml new file mode 100644 index 000000000..6c1c82363 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_tagline.yml @@ -0,0 +1,20 @@ +uuid: 28e5a43d-1d01-4c81-8fb4-60acd437f8d1 +langcode: und +status: true +dependencies: + module: + - node + - text +id: node.field_tagline +field_name: field_tagline +entity_type: node +type: text +settings: + max_length: 255 +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_teaser.yml b/project/config/boundarycommission/config/field.storage.node.field_teaser.yml new file mode 100644 index 000000000..8ed9dee80 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_teaser.yml @@ -0,0 +1,23 @@ +uuid: 481c2642-8e1f-40a7-98db-5eced94f431a +langcode: und +status: true +dependencies: + module: + - node +_core: + default_config_hash: __YmHpC0JHR4G_jKdC8bv1kSE7i3vazZ2bEqbxuIur4 +id: node.field_teaser +field_name: field_teaser +entity_type: node +type: string +settings: + max_length: 120 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_toc_enable.yml b/project/config/boundarycommission/config/field.storage.node.field_toc_enable.yml new file mode 100644 index 000000000..6b42493cd --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_toc_enable.yml @@ -0,0 +1,20 @@ +uuid: e4dcdbf9-2cbb-495d-a1af-31d5f3f5c766 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: QBkSJ4W84RYS3M4L1pWJIlsD3ujTJRB-U06WPRNelKw +id: node.field_toc_enable +field_name: field_toc_enable +entity_type: node +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.webform.yml b/project/config/boundarycommission/config/field.storage.node.webform.yml new file mode 100644 index 000000000..548209ab5 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.webform.yml @@ -0,0 +1,25 @@ +uuid: 766d7219-32b0-4eef-ba5c-9ce76733ab7c +langcode: en +status: true +dependencies: + module: + - node + - webform + enforced: + module: + - webform_node +_core: + default_config_hash: SJRNyZvo1lWcPLKxH_u6giTk1y51ymXvpKX65YUNd7w +id: node.webform +field_name: webform +entity_type: node +type: webform +settings: + target_type: webform +module: webform +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.paragraph.field_answer.yml b/project/config/boundarycommission/config/field.storage.paragraph.field_answer.yml new file mode 100644 index 000000000..c694725d5 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.paragraph.field_answer.yml @@ -0,0 +1,21 @@ +uuid: d6a593d2-28c5-4947-9861-7f363ea0436c +langcode: en +status: true +dependencies: + module: + - paragraphs + - text +_core: + default_config_hash: m4r3oCP8Yl_lGG91ASeWNusUin9itNS32dlzbOFMjGU +id: paragraph.field_answer +field_name: field_answer +entity_type: paragraph +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.paragraph.field_question.yml b/project/config/boundarycommission/config/field.storage.paragraph.field_question.yml new file mode 100644 index 000000000..c470ccabf --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.paragraph.field_question.yml @@ -0,0 +1,23 @@ +uuid: 4f699698-8ede-47d3-a8bf-9197bb7d1a86 +langcode: en +status: true +dependencies: + module: + - paragraphs +_core: + default_config_hash: _7GrAW1YL2So2WblmIwUhKyDwznh9Gz9ntzCzGqF76c +id: paragraph.field_question +field_name: field_question +entity_type: paragraph +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.user.user_picture.yml b/project/config/boundarycommission/config/field.storage.user.user_picture.yml new file mode 100644 index 000000000..4cb0ce065 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.user.user_picture.yml @@ -0,0 +1,34 @@ +uuid: f5df1b38-6927-4f94-9a45-dc33579116e2 +langcode: en +status: true +dependencies: + module: + - file + - image + - user +_core: + default_config_hash: 6k-VBFilDLuzgSOT-77CFgHFlcd5D-kqRixtH89EShU +id: user.user_picture +field_name: user_picture +entity_type: user +type: image +settings: + uri_scheme: public + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false +module: image +locked: false +cardinality: 1 +translatable: true +indexes: + target_id: + - target_id +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field_ui.settings.yml b/project/config/boundarycommission/config/field_ui.settings.yml new file mode 100644 index 000000000..365450f25 --- /dev/null +++ b/project/config/boundarycommission/config/field_ui.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM +field_prefix: field_ diff --git a/project/config/boundarycommission/config/file.settings.yml b/project/config/boundarycommission/config/file.settings.yml new file mode 100644 index 000000000..1ca5bd99c --- /dev/null +++ b/project/config/boundarycommission/config/file.settings.yml @@ -0,0 +1,8 @@ +_core: + default_config_hash: 0aMkoXYnax5_tHI9C9zHs-K48KJ6K75PHtD9x-0nbgM +description: + type: textfield + length: 128 +icon: + directory: core/modules/file/icons +make_unused_managed_files_temporary: false diff --git a/project/config/boundarycommission/config/filelog.settings.yml b/project/config/boundarycommission/config/filelog.settings.yml new file mode 100644 index 000000000..afd76602e --- /dev/null +++ b/project/config/boundarycommission/config/filelog.settings.yml @@ -0,0 +1,13 @@ +_core: + default_config_hash: U3bch6QlHy9RyVtqTqAjgLm3MI5tw4ODY3316QCZSzI +enabled: true +location: /app/log/boundarycommission +rotation: + schedule: daily + delete: true + destination: 'archive/[date:custom:Y/m/d].log' + gzip: true +format: "[[log:created:custom:'D, d/m/Y - H:i:s.000']] [[log:level]] [[log:channel]] [client: [log:ip], [log:user]] [log:message]" +level: 7 +channels_type: exclude +channels: { } diff --git a/project/config/boundarycommission/config/filter.format.basic_html.yml b/project/config/boundarycommission/config/filter.format.basic_html.yml new file mode 100644 index 000000000..a19fafe94 --- /dev/null +++ b/project/config/boundarycommission/config/filter.format.basic_html.yml @@ -0,0 +1,176 @@ +uuid: 70fd9606-f2cb-4511-84f2-a0b81678dead +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.article_float + - core.entity_view_mode.media.article_float_expandable + - core.entity_view_mode.media.article_full + - core.entity_view_mode.media.article_full_expandable + module: + - blazy + - ckeditor5_allowed_html + - ckeditor5_premium_features + - cookie_content_blocker + - editor + - entity_embed + - linkit + - media + - noreferrer + - origins_common + - token_filter +_core: + default_config_hash: 3ajhjZAPYv7k_l_F-pSml_31VZZPpNytjtVVvg2dENc +name: 'Basic HTML' +format: basic_html +weight: 0 +filters: + filter_html: + id: filter_html + provider: filter + status: false + weight: -50 + settings: + allowed_html: '

' + filter_html_help: false + filter_html_nofollow: false + filter_align: + id: filter_align + provider: filter + status: false + weight: -41 + settings: { } + blazy_filter: + id: blazy_filter + provider: blazy + status: false + weight: -33 + settings: + media_switch: '' + hybrid_style: '' + box_style: '' + box_caption: '' + filter_tags: + img: img + iframe: iframe + use_data_uri: '0' + cookie_content_blocker_filter: + id: cookie_content_blocker_filter + provider: cookie_content_blocker + status: false + weight: -44 + settings: + disable_xss: '1' + editor_file_reference: + id: editor_file_reference + provider: editor + status: false + weight: -39 + settings: { } + entity_embed: + id: entity_embed + provider: entity_embed + status: true + weight: -46 + settings: { } + filter_autop: + id: filter_autop + provider: filter + status: false + weight: -38 + settings: { } + filter_caption: + id: filter_caption + provider: filter + status: false + weight: -37 + settings: { } + filter_htmlcorrector: + id: filter_htmlcorrector + provider: filter + status: false + weight: -31 + settings: { } + filter_html_escape: + id: filter_html_escape + provider: filter + status: false + weight: -40 + settings: { } + filter_html_image_secure: + id: filter_html_image_secure + provider: filter + status: false + weight: -32 + settings: { } + filter_url: + id: filter_url + provider: filter + status: false + weight: -36 + settings: + filter_url_length: 72 + linkit: + id: linkit + provider: linkit + status: false + weight: -35 + settings: + title: true + media_embed: + id: media_embed + provider: media + status: true + weight: -45 + settings: + default_view_mode: article_full + allowed_view_modes: + article_float: article_float + article_float_expandable: article_float_expandable + article_full: article_full + article_full_expandable: article_full_expandable + allowed_media_types: + audio: audio + image: image + remote_video: remote_video + noreferrer: + id: noreferrer + provider: noreferrer + status: true + weight: -49 + settings: { } + origins_media_cookie_content_blocker_embed_filter: + id: origins_media_cookie_content_blocker_embed_filter + provider: origins_common + status: false + weight: -48 + settings: + replacement_text: 'Click here to view the video content' + token_filter: + id: token_filter + provider: token_filter + status: false + weight: -34 + settings: + replace_empty: '0' + filter_image_lazy_load: + id: filter_image_lazy_load + provider: filter + status: false + weight: -43 + settings: { } + filter_allowed: + id: filter_allowed + provider: ckeditor5_allowed_html + status: true + weight: -47 + settings: + allowed_html: '