Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
strategy:
matrix:
operating-system: [ ubuntu-latest ]
php: [ '7.4' ]
#php: [ '7.4', '8.0' ]
php: [ '7.4', '8.0', '8.1' ]

name: PHP ${{ matrix.php }}

Expand All @@ -32,11 +31,6 @@ jobs:
- name: Validate composer.json and composer.lock
run: composer validate

- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Install dependencies
run: composer install --prefer-dist --no-progress

Expand All @@ -48,10 +42,3 @@ jobs:

- name: Run codestyle checker
run: composer cs-check

- uses: actions/cache@v1
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.idea/
/vendor/
/data/
/data/

composer.lock
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
],
"minimum-stability": "beta",
"require-dev": {
"phpunit/phpunit": "^9.4",
"pestphp/pest": "^0.3.9",
"phpstan/phpstan": "^0.12.51",
"phpstan/phpstan-deprecation-rules": "^0.12.4",
"phpstan/phpstan-phpunit": "^0.12.16",
"squizlabs/php_codesniffer": "^3.5.5"
"phpunit/phpunit": "^9.5",
"pestphp/pest": "^v1.21.2",
"phpstan/phpstan": "^1.5.7",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.1.1",
"squizlabs/php_codesniffer": "^3.6.2"
},
"scripts": {
"check": ["@analyze", "@test", "@cs-check"],
Expand All @@ -38,8 +38,8 @@
}
},
"require": {
"php": "^7.4",
"fzaninotto/faker": "^1.9",
"symfony/property-info": ">=4"
"php": "^7.4 || ^8",
"fakerphp/faker": "^v1.19.0",
"symfony/property-info": "^v5.4 || ^v6.0"
}
}
Loading