Skip to content

Commit

Permalink
Merge pull request #4 from jakubboucek/update
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
jakubboucek authored Oct 28, 2023
2 parents 8e100fb + cc6f0ad commit e86c849
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 67 deletions.
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.gitattributes export-ignore
.gitignore export-ignore
.github export-ignore
phpstan.neon export-ignore
54 changes: 54 additions & 0 deletions .github/workflows/code-analysis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Code analysis

on:
push:
pull_request:

# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
static-analysis:
strategy:
fail-fast: false
matrix:
php:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
name: PHPStan at PHP ${{ matrix.php }}
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none

- name: Get Composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install Composer dependencies
run: composer update --no-progress

- name: Statically analyze code (PHPStan)
run: composer run phpstan -- --ansi
62 changes: 0 additions & 62 deletions .github/workflows/code_analysis.yaml

This file was deleted.

12 changes: 7 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "jakubboucek/esc-pos",
"description": "Native ESC-POS drivers",
"type": "library",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jakub Bouček",
Expand All @@ -11,18 +11,20 @@
],
"require": {
"php": ">=7.2",
"composer-runtime-api": "^2.0",
"ext-sockets": "*",
"ext-iconv": "*"
"ext-iconv": "*",
"ext-sockets": "*"
},
"require-dev": {
"phpstan/phpstan": "^0.12.89"
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"JakubBoucek\\EscPos\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpstan": "phpstan analyze src -c phpstan.neon --level 6"
}
Expand Down

0 comments on commit e86c849

Please sign in to comment.