Make WordPress Core

Ticket #48086: 48086.1.diff

File 48086.1.diff, 1.2 KB (added by dingo_d, 5 years ago)

Updated the patch to only include the composer.json

  • composer.json

    diff --git composer.json composer.json
    index ccc0e2a796..d70afce485 100644
     
    1010                "issues": "https://core.trac.wordpress.org/"
    1111        },
    1212        "require": {
    13                 "php": ">=5.6"
     13                "php": ">=5.6",
     14                "ext-date": "*",
     15                "ext-dom": "*",
     16                "ext-filter": "*",
     17                "ext-ftp": "*",
     18                "ext-gd": "*",
     19                "ext-hash": "*",
     20                "ext-json": "*",
     21                "ext-mbstring": "*",
     22                "ext-mysqli": "*",
     23                "ext-posix": "*",
     24                "ext-SimpleXML": "*",
     25                "ext-sockets": "*",
     26                "ext-SPL": "*",
     27                "ext-tokenizer": "*",
     28                "ext-xml": "*",
     29                "ext-xmlreader": "*",
     30                "ext-zlib": "*",
     31                "ext-curl": "*",
     32                "ext-iconv": "*",
     33                "ext-libxml": "*",
     34                "ext-openssl": "*",
     35                "ext-pcre": "*"
    1436        },
    1537        "require-dev": {
    1638                "dealerdirect/phpcodesniffer-composer-installer": "~0.5.0",
    1739                "wp-coding-standards/wpcs": "~2.1.0"
    1840        },
     41        "suggest": {
     42                "ext-ssh2": "*",
     43                "ext-exif": "*",
     44                "ext-imagick":  "* || It's possible to use gmagick extension instead, but not both at the same time."
     45        },
    1946        "scripts": {
    2047                "format": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --report=summary,source --cache -d memory_limit=256M",
    2148                "lint": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --report=summary,source --cache -d memory_limit=256M",