Skip to content

Commit

Permalink
Some more (dependency) improvements (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
zluiten committed Jan 8, 2021
1 parent 16d8e6b commit dad046b
Show file tree
Hide file tree
Showing 23 changed files with 351 additions and 346 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Coding Standards"

on: ["pull_request", "push"]
on: ["push"]

jobs:
coding-standards:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
name: "Continuous Integration"

on: ["pull_request", "push"]
on: ["pull_request"]

jobs:
phpunit:
name: "PHPUnit"
runs-on: "ubuntu-20.04"
continue-on-error: ${{ matrix.experimental }}

strategy:
fail-fast: false
matrix:
experimental: [false]
php-version:
- "7.4"
deps:
- "lowest"
- "highest"
include:
- php-version: "8.0"
deps: "highest"
experimental: true

steps:
- name: "Checkout"
Expand Down
20 changes: 0 additions & 20 deletions Module.php

This file was deleted.

27 changes: 10 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "netiul/dompdf-module",
"type": "library",
"description": "A Laminas module for incorporating DOMPDF support - Originally by Raymond Kolbe",
"keywords": ["pdf","dompdf", "zf2"],
"keywords": ["pdf","dompdf", "zf2", "laminas"],
"license": "MIT",
"authors": [
{
Expand All @@ -14,25 +14,18 @@
"dino/dompdf-module": "0.*"
},
"require": {
"php": ">=7.4",
"laminas/laminas-loader": "^2.4.13",
"laminas/laminas-servicemanager": "^3.5.1",
"laminas/laminas-modulemanager": "^2.8.4",
"laminas/laminas-eventmanager": "^3.2.1",
"php": "~7.4.1 || ~8.0.0",
"laminas/laminas-servicemanager": "^3.4.1",
"laminas/laminas-modulemanager": "^2.10.1",
"laminas/laminas-eventmanager": "^3.3.0",
"laminas/laminas-view": "^2.11.5",
"laminas/laminas-serializer": "^2.9.1",
"laminas/laminas-log": "^2.13.0",
"laminas/laminas-i18n": "^2.11.0",
"laminas/laminas-http": "^2.14.2",
"laminas/laminas-console": "^2.8.0",
"dompdf/dompdf": "^0.8.0 | ^1.0.1"
"dompdf/dompdf": "^v0.8.6 | ^v1.0.1",
"mindplay/composer-locator": "^2.1.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5.0",
"laminas/laminas-mvc": "^3.2.0",
"codeclimate/php-test-reporter": "^0.3.2",
"symfony/dependency-injection": "^v3.4.47",
"symfony/config": "^v3.4.47",
"phpunit/phpunit": "^9.5",
"laminas/laminas-http": "^2.14",
"laminas/laminas-mvc": "^3.2",
"squizlabs/php_codesniffer": "^3.5",
"slevomat/coding-standard": "^6.4"
},
Expand Down
290 changes: 0 additions & 290 deletions config/module.config.php

This file was deleted.

Loading

0 comments on commit dad046b

Please sign in to comment.