Skip to content

Commit

Permalink
Merge pull request #34 from oat-sa/php8-migration
Browse files Browse the repository at this point in the history
PHP 8 migration
  • Loading branch information
shpran committed Oct 5, 2022
2 parents 1518865 + 9b71408 commit 6f1a2ec
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 16 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Continuous integration

on:
push:
branches: [ master, develop ]
pull_request:
branches: [ develop ]

jobs:
ci:
runs-on: ${{ matrix.operating-system }}

strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest ]
php-version: [ '7.4', '8.0', '8.1' ]
include:
- php-version: '8.1'
coverage: true

steps:
- name: CI
uses: oat-sa/tao-extension-ci-action@v1
with:
php: ${{ matrix.php-version }}
coverage: ${{ matrix.coverage }}
test-suites-path: test
31 changes: 15 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
{

"name": "oat-sa/extension-tao-blueprints",
"description" : "Extension to manage blue prints",
"type" : "tao-extension",
"authors" : [
"description": "Extension to manage blue prints",
"type": "tao-extension",
"authors": [
{
"name": "Open Assessment Technologies SA"
"name": "Open Assessment Technologies SA"
}
],
"keywords" : [
"keywords": [
"tao",
"computer-based-assessment"
],
"homepage" : "http://www.taotesting.com",
"license" : [
"homepage": "http://www.taotesting.com",
"license": [
"GPL-2.0"
],
"extra" : {
"tao-extension-name" : "taoBlueprints"
"extra": {
"tao-extension-name": "taoBlueprints"
},
"minimum-stability" : "dev",
"minimum-stability": "dev",
"require": {
"oat-sa/oatbox-extension-installer": "~1.1||dev-master",
"oat-sa/generis" : ">=14.0.0",
"oat-sa/tao-core" : ">=47.0.0"
"oat-sa/generis": ">=15.22",
"oat-sa/tao-core": ">=50.24.6"
},
"autoload" : {
"psr-4" : {
"oat\\taoBlueprints\\" : ""
"autoload": {
"psr-4": {
"oat\\taoBlueprints\\": ""
}
}
}

0 comments on commit 6f1a2ec

Please sign in to comment.