From 6ec1a5d25382f823b36bb9c9d10d403058bd52e0 Mon Sep 17 00:00:00 2001 From: Brandon Kramer Date: Fri, 8 Jan 2021 13:00:35 +0100 Subject: [PATCH] modify composer.json --- .travis.yml | 14 -------------- composer.json | 3 ++- 2 files changed, 2 insertions(+), 15 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 5cffb50..0000000 --- a/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -language: php -branches: - only: - - master -php: - - 7.1 - - 7.2 - -env: - - WP_VERSION=latest - - WP_VERSION=5.5 - -install: composer install -script: vendor/bin/codecept run wpunit \ No newline at end of file diff --git a/composer.json b/composer.json index 3dc3530..a526aaf 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "wpstrap/wordpress-plugin-boilerplate", "description": "Wordpress Plugin Boilerplate", "version": "0.1.0", - "minimum-stability": "dev", + "minimum-stability": "stable", "prefer-stable": true, "type": "wordpress-plugin", "license": "MIT", @@ -47,6 +47,7 @@ "codecept": "vendor/bin/codecept", "run:unit": "vendor/bin/codecept run unit", "run:wpunit": "vendor/bin/codecept run wpunit", + "run:acceptance": "vendor/bin/codecept run acceptance", "coverage:wpunit": "vendor/bin/codecept run wpunit --coverage --coverage-xml --coverage-html", "coverage:unit": "vendor/bin/codecept run wpunit --coverage --coverage-xml --coverage-html", "generate:wpunit": "vendor/bin/codecept generate:wpunit wpunit",