Skip to content
Open
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
28 changes: 25 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,14 +1,36 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text eol=lf

# These files are binary and should be left untouched
# (binary is a macro for -text -diff)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.webp binary
*.bmp binary
*.ttf binary
*.blp binary
*.db2 binary

# Ignoring files for distribution archieves
.github/ export-ignore
etc/ export-ignore
etc/ci/ export-ignore
etc/dev-app/ export-ignore
etc/state/ export-ignore
etc/qa/ export-ignore
examples/ export-ignore
tests/ export-ignore
var/ export-ignore
.devcontainer.json export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
CONTRIBUTING.md export-ignore
composer.lock export-ignore
infection.json.dist export-ignore
Makefile export-ignore
phpunit.xml.dist export-ignore
README.md export-ignore

# Diffing
*.php diff=php
12 changes: 8 additions & 4 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>WyriHaximus/renovate-config:php-package"
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>WyriHaximus/renovate-config:php-package"
],
"constraints": {
"php": "8.4.x",
"composer": "2.x"
}
}
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
jobs:
release-managment:
name: Release Management
uses: WyriHaximus/github-workflows/.github/workflows/package-release-managment.yaml@main
uses: WyriHaximus/github-workflows/.github/workflows/package-release-management.yaml@main
with:
milestone: ${{ github.event.milestone.title }}
description: ${{ github.event.milestone.title }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ etc/qa/.phpcs.cache
etc/qa/.phpunit.result.cache
bin/openapi-client-generator
example/etc
example/generated
example/generated-github
example/generated-github-subsplit
example/generated-miele
tests/test-app
vendor
var/*
!var/.gitkeep
27 changes: 27 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Contributing

Pull requests are highly appreciated. Here's a quick guide.

Fork, then clone the repo:

git clone git@github.com:your-username/openapi-client-generator.git

Install dependencies:

make install

Work on the contribution and check if it passes all QA checks with:

make

If some of the PHPStan or other checks are to strict or intimidating that is fine, finish what you want to contribute and I'll help you with those, but please make the following command passes. It runs a subset of everything:

make contrib

You can list all the contrib commands with:

make help-contrib

Push to your fork and [submit a pull request][pr].

[pr]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2026 Cees-Jan Kiewiet

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
563 changes: 523 additions & 40 deletions Makefile

Large diffs are not rendered by default.

41 changes: 0 additions & 41 deletions bin/openapi-client-generator.source

This file was deleted.

165 changes: 87 additions & 78 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,83 +1,92 @@
{
"name": "api-clients/openapi-client-generator",
"description": "Generate a client based on an OpenAPI spec",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com"
}
],
"require": {
"php": "^8.2",
"api-clients/contracts": "^0.1",
"api-clients/github": "^0.2@dev",
"api-clients/openapi-client-utils": "dev-main",
"ckr/arraymerger": "^3.0",
"codeinc/http-reason-phrase-lookup": "^1.0",
"delight-im/random": "^1.0",
"devizzent/cebe-php-openapi": "^1",
"eventsauce/object-hydrator": "^1.2",
"jawira/case-converter": "^3.5",
"kwn/number-to-words": "^2.6",
"league/openapi-psr7-validator": "^0.21",
"league/uri": "^6.8 || ^7.3",
"nikic/php-parser": "^4.15",
"nunomaduro/termwind": "^1.15",
"ondram/ci-detector": "^4.1",
"phpstan/phpdoc-parser": "^1.22",
"pointybeard/reverse-regex": "1.0.0.3",
"psr/http-message": "^1.1 || ^2 || ^3",
"react/async": "^4.0",
"react/http": "^1.8",
"reactivex/rxphp": "^2.0",
"ringcentral/psr7": "^1.3",
"symfony/yaml": "^6.0",
"twig/twig": "^3.5",
"wyrihaximus/async-test-utilities": "^7.0",
"wyrihaximus/composer-update-bin-autoload-path": "^1",
"wyrihaximus/react-awaitable-observable": "^1.0",
"wyrihaximus/simple-twig": "^2.1",
"wyrihaximus/subsplit-tools": "dev-main"
},
"autoload": {
"psr-4": {
"ApiClients\\Client\\Github\\": "generated/",
"ApiClients\\Tools\\OpenApiClientGenerator\\": "src/"
}
"name": "api-clients/openapi-client-generator",
"description": "Generate a client based on an OpenAPI spec",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com"
}
],
"require": {
"php": "^8.4",
"api-clients/contracts": "^0.1.0",
"api-clients/github": "^0.2@dev",
"api-clients/openapi-client-utils": "dev-main",
"ckr/arraymerger": "^3.0.0",

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with locked dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with lowest dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with highest dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with highest dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with lowest dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with lowest dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with lowest dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with locked dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with locked dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with highest dependency preference

ckr/arraymerger is unused

Check failure on line 16 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with highest dependency preference

ckr/arraymerger is unused
"codeinc/http-reason-phrase-lookup": "^1.0.0",

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with locked dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with lowest dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with highest dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with highest dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with lowest dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with lowest dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with lowest dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with locked dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with locked dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with highest dependency preference

codeinc/http-reason-phrase-lookup is unused

Check failure on line 17 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with highest dependency preference

codeinc/http-reason-phrase-lookup is unused
"delight-im/random": "^1.0.0",

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with locked dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with lowest dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with highest dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with highest dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with lowest dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with lowest dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with lowest dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with locked dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with locked dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with highest dependency preference

delight-im/random is unused

Check failure on line 18 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with highest dependency preference

delight-im/random is unused
"devizzent/cebe-php-openapi": "^1.1.5",
"eventsauce/object-hydrator": "^1.8.",
"jawira/case-converter": "^3.6.0",
"kwn/number-to-words": "^2.12.0",
"league/openapi-psr7-validator": "^0.21.0",
"league/uri": "^6.8 || ^7.3",
"nikic/php-parser": "^5.8.0",
"nunomaduro/termwind": "^2.4.0",
"ondram/ci-detector": "^4.2.0",
"openapi-tools/configuration": "dev-main",
"openapi-tools/contract": "dev-main",
"openapi-tools/gatherer": "dev-main",

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with locked dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with lowest dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with highest dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with highest dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with lowest dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with lowest dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with lowest dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with locked dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with locked dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with highest dependency preference

openapi-tools/gatherer is unused

Check failure on line 30 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with highest dependency preference

openapi-tools/gatherer is unused
"openapi-tools/generator": "dev-main",

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with locked dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with lowest dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with highest dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with highest dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with lowest dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with lowest dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with lowest dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with locked dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with locked dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with highest dependency preference

openapi-tools/generator is unused

Check failure on line 31 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with highest dependency preference

openapi-tools/generator is unused
"openapi-tools/generator-hydrator": "dev-main",

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with locked dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with lowest dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with highest dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with highest dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with lowest dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with lowest dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with lowest dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with locked dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with locked dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with highest dependency preference

openapi-tools/generator-hydrator is unused

Check failure on line 32 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with highest dependency preference

openapi-tools/generator-hydrator is unused
"openapi-tools/generator-schema": "dev-main",

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with locked dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with lowest dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with highest dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with highest dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with lowest dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with lowest dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with lowest dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with locked dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with locked dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with highest dependency preference

openapi-tools/generator-schema is unused

Check failure on line 33 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with highest dependency preference

openapi-tools/generator-schema is unused
"openapi-tools/generator-templates": "dev-main",

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with locked dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with lowest dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with highest dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with highest dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with lowest dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with lowest dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with lowest dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with locked dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with locked dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with highest dependency preference

openapi-tools/generator-templates is unused

Check failure on line 34 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with highest dependency preference

openapi-tools/generator-templates is unused
"openapi-tools/registry": "dev-main",

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with locked dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with lowest dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with highest dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with highest dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with lowest dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with lowest dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with lowest dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with locked dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with locked dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with highest dependency preference

openapi-tools/registry is unused

Check failure on line 35 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with highest dependency preference

openapi-tools/registry is unused
"openapi-tools/representation": "dev-main",
"openapi-tools/utils": "dev-main",
"phpstan/phpdoc-parser": "^2.3.3",
"pointybeard/reverse-regex": "1.0.0.4",

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with locked dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with lowest dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (nts) with highest dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with locked dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with highest dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (nts) with lowest dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with lowest dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with lowest dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with locked dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with locked dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.5 (zts) with highest dependency preference

pointybeard/reverse-regex is unused

Check failure on line 39 in composer.json

View workflow job for this annotation

GitHub Actions / Continuous Integration / Continuous Integration / Run composer-unused on PHP 8.4 (zts) with highest dependency preference

pointybeard/reverse-regex is unused
"psr/http-message": "^1.1 || ^2 || ^3",
"react/async": "^4.3.00",
"react/http": "^1.11.0",
"reactivex/rxphp": "^2.0",
"ringcentral/psr7": "^1.3",
"symfony/yaml": "^7.4.15",
"twig/twig": "^3.28.0",
"wyrihaximus/react-awaitable-observable": "^1.2.1",
"wyrihaximus/simple-twig": "^2.4.0"
},
"require-dev": {
"wyrihaximus/async-test-utilities": "^13.5.1",
"wyrihaximus/makefiles": "^0.13.3"
},
"autoload": {
"psr-4": {
"ApiClients\\Client\\Github\\": "generated/",
"ApiClients\\Tools\\OpenApiClientGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiClients\\Tests\\Tools\\OpenApiClientGenerator\\": "tests/unit/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupol/composer-packages": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true,
"mindplay/composer-locator": true,
"phpstan/extension-installer": true,
"wyrihaximus/composer-update-bin-autoload-path": true,
"wyrihaximus/makefiles": true,
"wyrihaximus/test-utilities": true
},
"autoload-dev": {
"psr-4": {
"ApiClients\\Tests\\Tools\\OpenApiClientGenerator\\": "tests/unit/"
}
"platform": {
"php": "8.4.13"
},
"bin": [
"bin/openapi-client-generator"
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"make on-install-or-update || true"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"wyrihaximus/composer-update-bin-autoload-path": true
},
"platform": {
"php": "8.2.13"
}
},
"extra": {
"wyrihaximus": {
"bin-autoload-path-update": [
"bin/openapi-client-generator"
]
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
"post-update-cmd": [
"make on-install-or-update || true"
]
}
}
Loading
Loading