Skip to content

Commit

Permalink
Merge pull request #34 from jeremyharris/maintenance
Browse files Browse the repository at this point in the history
Maintenance
  • Loading branch information
jeremyharris authored Oct 4, 2023
2 parents ed73c21 + e1412b7 commit a1bb3c7
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 11 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ci

on: [push]

jobs:
testsuite:
strategy:
matrix:
php-versions: ['8.1']

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, intl-72.1
ini-values: zend.assertions = 1

- name: Install composer dependencies.
run: composer install --no-interaction --prefer-dist --optimize-autoloader

- name: Run PHPUnit.
run: vendor/bin/phpunit
3 changes: 0 additions & 3 deletions .stickler.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
[![Build Status](https://travis-ci.org/jeremyharris/cakephp-lazyload.svg?branch=master)](http://travis-ci.org/jeremyharris/cakephp-lazyload)
[![codecov](https://codecov.io/gh/jeremyharris/cakephp-lazyload/branch/master/graph/badge.svg)](https://codecov.io/gh/jeremyharris/cakephp-lazyload)
[![Packagist](https://img.shields.io/packagist/dt/jeremyharris/cakephp-lazyload.svg)](https://packagist.org/packages/jeremyharris/cakephp-lazyload)
[![license](https://img.shields.io/github/license/jeremyharris/cakephp-lazyload.svg)]()

Expand Down
6 changes: 0 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
],
"require-dev": {
"phpunit/phpunit": "^10",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/cakephp": "^5.0"
},
"require": {
Expand All @@ -25,10 +24,5 @@
"JeremyHarris\\LazyLoad\\TestApp\\": "tests/test_app",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}

0 comments on commit a1bb3c7

Please sign in to comment.