From 2f7ef6ad823cb2e3aabdce1328d4b5b1bbd4d96b Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Thu, 15 Sep 2022 15:02:03 +1200 Subject: [PATCH] chore: remove travis --- .github/workflows/ci.yml | 11 +++++++++ .travis.yml | 17 -------------- README.md | 4 +--- composer.json | 51 +++++++++++++++++----------------------- 4 files changed, 34 insertions(+), 49 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..bf02210 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,11 @@ +name: CI + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + ci: + name: CI + uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 0fc9f82..0000000 --- a/.travis.yml +++ /dev/null @@ -1,17 +0,0 @@ -# Minimal configuration to run PHP_CodeSniffer -# Can be replaced with SilverStripe-provided configuration if we need to run tests - -language: php - -php: - - 7.4 - -install: - - composer install - -script: - - vendor/bin/phpcs - -cache: - directories: - - $HOME/.composer/cache/files diff --git a/README.md b/README.md index abb4e44..2d708c4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ -# Heyday Menu Manager - -[![Build Status](https://travis-ci.com/heyday/silverstripe-menumanager.svg?branch=master)](https://travis-ci.com/heyday/silverstripe-menumanager) +# Silverstripe Menu Manager The menu management module is for creating custom menu structures when the site tree hierarchy just won't do. diff --git a/composer.json b/composer.json index bf17d7a..cfbd754 100644 --- a/composer.json +++ b/composer.json @@ -1,31 +1,24 @@ { - "name": "heyday/silverstripe-menumanager", - "type": "silverstripe-vendormodule", - "description": "Allows complex menu management to be handled through the CMS when a simple tree structure is not enough.", - "license": "MIT", - "authors": [ - { - "name": "Heyday Developers", - "email": "dev@heyday.co.nz", - "role": "Developer" - } - ], - "require": { - "silverstripe/framework": "~4.0", - "silverstripe/vendor-plugin": "^1.0", - "symbiote/silverstripe-gridfieldextensions": "^3.0" - }, - "require-dev": { - "squizlabs/php_codesniffer": "^3.5" - }, - "autoload": { - "psr-4": { - "Heyday\\MenuManager\\": "src/" - } - }, - "extra": { - "dev-main": "3.0.x-dev" - }, - "minimum-stability": "dev", - "prefer-stable": true + "name": "heyday/silverstripe-menumanager", + "type": "silverstripe-vendormodule", + "description": "Allows complex menu management to be handled through the CMS when a simple tree structure is not enough.", + "license": "MIT", + "require": { + "silverstripe/framework": "~4.0", + "silverstripe/vendor-plugin": "^1.0", + "symbiote/silverstripe-gridfieldextensions": "^3.0" + }, + "require-dev": { + "squizlabs/php_codesniffer": "^3.5" + }, + "autoload": { + "psr-4": { + "Heyday\\MenuManager\\": "src/" + } + }, + "extra": { + "dev-main": "3.1.x-dev" + }, + "minimum-stability": "dev", + "prefer-stable": true }