Skip to content
This repository has been archived by the owner on Sep 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #135 from pressbooks/composer-update
Browse files Browse the repository at this point in the history
Bump version, update dependencies
  • Loading branch information
cmurtagh committed Apr 14, 2022
2 parents 54a7793 + ab05581 commit b3a483c
Show file tree
Hide file tree
Showing 7 changed files with 712 additions and 204 deletions.
27 changes: 27 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: 2
updates:
# Maintain dependencies for npm
- package-ecosystem: "npm"
# Look for `package.json` and `package-lock.json` files in the root directory
directory: "/"
# Check for updates weekly
schedule:
interval: "weekly"
allow:
# Allow direct updates only (for packages named in package.json)
- dependency-type: "direct"
# Allow up to 10 open pull requests for npm dependencies
open-pull-requests-limit: 10

# Maintain dependencies for Composer
- package-ecosystem: "composer"
# Look for `composer.json` and `composer.lock` files in the root directory
directory: "/"
# Check for updates weekly
schedule:
interval: "weekly"
allow:
# Allow direct updates only (for packages named in composer.json)
- dependency-type: "direct"
# Allow up to 10 open pull requests for composer dependencies
open-pull-requests-limit: 10
8 changes: 2 additions & 6 deletions .github/workflows/.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 7.3, 7.4 ]
php: [ 7.4 ]
os: [ ubuntu-20.04 ]
wordpress: [ 5.9 ]
wordpress: [ 5.9.3, latest ]
experimental: [ false ]
include:
- php: 8.0
Expand Down Expand Up @@ -94,8 +94,4 @@ jobs:

- name: Upload Coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)
if: matrix.experimental == false && matrix.php == 7.3

- name: Prepare Build
run: npm run build
if: matrix.experimental == false
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
# Pressbooks LTI Provider
**Contributors:** conner_bw, greatislander
**Tags:** pressbooks, lti, lms
**Requires at least:** 5.2.1
**Tested up to:** 5.5.2
**Stable tag:** 1.3.5
**Requires at least:** 5.9
**Tested up to:** 5.9.3
**Stable tag:** 1.3.6
**License:** GPLv3 or later
**License URI:** https://www.gnu.org/licenses/gpl-3.0.html

This plugin turns Pressbooks into an LTI provider.


## Description

[![Packagist](https://img.shields.io/packagist/v/pressbooks/pressbooks-lti-provider.svg?style=flat-square)](https://packagist.org/packages/pressbooks/pressbooks-lti-provider) [![GitHub release](https://img.shields.io/github/release/pressbooks/pressbooks-lti-provider.svg?style=flat-square)](https://github.com/pressbooks/pressbooks-lti-provider/releases) [![Travis](https://img.shields.io/travis/pressbooks/pressbooks-lti-provider.svg?style=flat-square)](https://travis-ci.org/pressbooks/pressbooks-lti-provider/) [![Codecov](https://img.shields.io/codecov/c/github/pressbooks/pressbooks-lti-provider.svg?style=flat-square)](https://codecov.io/gh/pressbooks/pressbooks-lti-provider)
Expand Down Expand Up @@ -148,12 +147,12 @@ Thanks to [Ed Beck](http://ed-beck.com/), [Bracken Mosbacker](https://github.com

## Changelog

### 1.3.5
* See: https://github.com/pressbooks/pressbooks-lti-provider/releases/tag/1.3.5
### 1.3.6
* See: https://github.com/pressbooks/pressbooks-lti-provider/releases/tag/1.3.6
* Full release history available at: https://github.com/pressbooks/pressbooks-lti-provider/releases


## Upgrade Notice

### 1.3.4
Pressbooks LTI Provider requires Pressbooks >= 5.8.1
### 1.3.6
Pressbooks LTI Provider requires PHP 7.4
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
},
"config": {
"platform": {
"php": "7.3"
"php": "7.4"
}
},
"require": {
"php": ">=7.3",
"composer/installers": "^1.4",
"php": ">=7.4",
"composer/installers": "^2",
"pressbooks/mix": "^2.1",
"izumi-kun/lti": "^1.2",
"phpcompatibility/php-compatibility": "^9.3"
Expand Down
Loading

0 comments on commit b3a483c

Please sign in to comment.