Commit 041a530c authored by Mark Shropshire's avatar Mark Shropshire Committed by Mark Shropshire
Browse files

Issue #3024181 by shrop: Include composer perfomance with zaporylie/composer-drupal-optimizations

parent be9a886d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -38,7 +38,8 @@
        "drupal/username_enumeration_prevention": "^1.0-beta2",
        "drush/drush": "^8.1.15",
        "webflo/drupal-finder": "^1.0.0",
        "webmozart/path-util": "^2.3"
        "webmozart/path-util": "^2.3",
        "zaporylie/composer-drupal-optimizations": "^1.0"
    },
    "require-dev": {
        "webflo/drupal-core-require-dev": "~8.5.0|~8.6.0"
+44 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
        "This file is @generated automatically"
    ],
    "content-hash": "2f1cdce81d576e3a9d4c9bd1fdbee1fc",
    "content-hash": "b6f05b176bd31dc10d6db318090740ca",
    "packages": [
        {
            "name": "alchemy/zippy",
@@ -5873,6 +5873,49 @@
            "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
            "time": "2015-12-17T08:42:14+00:00"
        },
        {
            "name": "zaporylie/composer-drupal-optimizations",
            "version": "1.0.2",
            "source": {
                "type": "git",
                "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
                "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/cc5eb9f0b5fa664885765748ce5190c1de7d2571",
                "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571",
                "shasum": ""
            },
            "require": {
                "composer-plugin-api": "^1.1",
                "drupal/core": "^8.5"
            },
            "require-dev": {
                "composer/composer": "^1.6"
            },
            "type": "composer-plugin",
            "extra": {
                "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
            },
            "autoload": {
                "psr-4": {
                    "zaporylie\\ComposerDrupalOptimizations\\": "src/"
                }
            },
            "notification-url": "https://packagist.org/downloads/",
            "license": [
                "GPL-2.0-or-later"
            ],
            "authors": [
                {
                    "name": "Jakub Piasecki",
                    "email": "jakub@piaseccy.pl"
                }
            ],
            "description": "Composer plugin to improve composer performance for Drupal projects",
            "time": "2018-07-15T18:04:58+00:00"
        },
        {
            "name": "zendframework/zend-diactoros",
            "version": "1.8.6",

config/sync/.htaccess

0 → 100644
+24 −0
Original line number Diff line number Diff line
# Deny all requests from Apache 2.4+.
<IfModule mod_authz_core.c>
  Require all denied
</IfModule>

# Deny all requests from Apache 2.0-2.2.
<IfModule !mod_authz_core.c>
  Deny from all
</IfModule>

# 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
<Files *>
  # Override the handler again if we're run later in the evaluation list.
  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
</Files>

# If we know how to do it safely, disable the PHP engine entirely.
<IfModule mod_php5.c>
  php_flag engine off
</IfModule>
 No newline at end of file

config/sync/README.txt

0 → 100644
+1 −0
Original line number Diff line number Diff line
This directory contains configuration to be imported into your Drupal site. To make this configuration active, visit admin/config/development/configuration/sync. For information about deploying configuration between servers, see https://www.drupal.org/documentation/administer/config
 No newline at end of file