From d83e858fbcdb70cf14761027f1480e288555027a Mon Sep 17 00:00:00 2001 From: Thomas Ferney Date: Sun, 21 Mar 2021 14:42:22 +0100 Subject: [PATCH] feat: bump dependencies --- composer.json | 59 ++++++++++++++++++++++++--------------------------- 1 file changed, 28 insertions(+), 31 deletions(-) diff --git a/composer.json b/composer.json index 0fe35d4..2a310b9 100644 --- a/composer.json +++ b/composer.json @@ -1,34 +1,31 @@ { - "name": "antiseptikk/wordpress-encore", - "description": "API to enqueue assets generated by @webpack/encore into your WordPress theme.", - "type": "library", - "license": "MIT", - "authors": [ - { - "name": "Thomas Ferney", - "email": "thomas.ferney@gmail.com" + "name": "antiseptikk/wordpress-encore", + "type": "library", + "description": "API to enqueue assets generated by @webpack/encore into your WordPress theme.", + "license": "MIT", + "authors": [ + { + "name": "Thomas Ferney", + "email": "thomas.ferney@gmail.com" + } + ], + "require": { + "php": ">=7.4 || 8.0" + }, + "require-dev": { + "antiseptikk/dev-kit": "^1.0", + "giacocorsiglia/wordpress-stubs": "^4.9.5", + "humanmade/psalm-plugin-wordpress": "^2.0", + "php-stubs/wordpress-stubs": "^5.7", + "phpcompatibility/phpcompatibility-wp": "^2.1.0", + "szepeviktor/phpstan-wordpress": "^0.7.4" + }, + "autoload": { + "psr-4": { + "Antiseptikk\\": "src" + } + }, + "scripts": { + "lint": "vendor/bin/ecs check ./src" } - ], - "require": { - "php": ">=7.4 || 8.0" - }, - "require-dev": { - "antiseptikk/dev-kit": "^1.0", - "phpcompatibility/phpcompatibility-wp": "^2.1.0", - "phpunit/phpunit": "^7.3.0", - "brain/monkey": "^2.2.0", - "giacocorsiglia/wordpress-stubs": "^4.9.5", - "szepeviktor/phpstan-wordpress": "^0.7.4", - "humanmade/psalm-plugin-wordpress": "^2.0", - "php-stubs/wordpress-stubs": "^5.7" - }, - "autoload": { - "psr-4": { - "Antiseptikk\\": "src" - } - }, - "scripts": { - "test": "vendor/bin/phpunit --colors=always --testdox", - "lint": "vendor/bin/ecs check ./src" - } }