Skip to content

Commit a5cb8fa

Browse files
committedMay 29, 2024
Rename package
1 parent 5f9d381 commit a5cb8fa

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

Diff for: ‎.env.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PHP_VERSION=7.4
1+
PHP_VERSION=8.3

Diff for: ‎.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
23+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
2424

2525
# TODO use cache
2626
steps:

Diff for: ‎composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "cebe/yii2-openapi",
2+
"name": "php-openapi/yii2-openapi",
33
"description": "Generate full REST API application from OpenAPI 3 specification.",
44
"keywords": ["yii2", "rest", "openapi"],
55
"homepage": "https://github.com/cebe/yii2-openapi#readme",
@@ -23,7 +23,7 @@
2323
"yiisoft/yii2": "~2.0.48",
2424
"yiisoft/yii2-gii": "~2.0.0 | ~2.1.0 | ~2.2.0| ~2.3.0",
2525
"laminas/laminas-code": ">=3.4 <=4.13",
26-
"insolita/yii2-fractal": "^1.0.0",
26+
"php-openapi/yii2-fractal": "^1.0.0",
2727
"fakerphp/faker": "^1.9",
2828
"sam-it/yii2-mariadb": "^2.0"
2929
},

Diff for: ‎docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
version: "3.5"
22
services:
33
php:
4-
image: yii2-openapi-php:${PHP_VERSION:-7.4}
4+
image: yii2-openapi-php:${PHP_VERSION:-8.3}
55
build:
66
dockerfile: tests/docker/Dockerfile
77
context: .
88
args:
9-
- BUILD_PHP_VERSION=${PHP_VERSION:-7.4}
9+
- BUILD_PHP_VERSION=${PHP_VERSION:-8.3}
1010
extra_hosts: # https://stackoverflow.com/a/67158212/1106908
1111
- "host.docker.internal:host-gateway"
1212
volumes:

0 commit comments

Comments
 (0)
Please sign in to comment.