Skip to content

Commit

Permalink
Allow schema generator to use labels for naming
Browse files Browse the repository at this point in the history
API resources and PHP classes
  • Loading branch information
Angatar committed Dec 8, 2023
1 parent 1709653 commit 1c187e6
Show file tree
Hide file tree
Showing 34 changed files with 2,255 additions and 945 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 5.2.3

* feat: Allow schema generator to use labels for naming API resources and PHP classes

## 5.2.2

* fix: detect enum detection when an ancestor is an enum
Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,27 +39,27 @@
"friendsofphp/php-cs-fixer": "^2.15 || ^3.0",
"league/html-to-markdown": "^5.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^5.2 || ^6.0" ,
"symfony/console": "^5.2 || ^6.0",
"symfony/yaml": "^5.2 || ^6.0",
"symfony/filesystem": "^5.2 || ^6.0",
"symfony/config": "^5.2 || ^6.0 || ^7.0" ,
"symfony/console": "^5.2 || ^6.0 || ^7.0",
"symfony/yaml": "^5.2 || ^6.0 || ^7.0",
"symfony/filesystem": "^5.2 || ^6.0 || ^7.0",
"twig/twig": "^3.0",
"nette/php-generator": "^3.6 || ^4.0",
"nikic/php-parser": "^4.13",
"cebe/php-openapi": "^1.6",
"symfony/string": "^5.2 || ^6.0"
"symfony/string": "^5.2 || ^6.0 || ^7.0"
},
"require-dev": {
"api-platform/core": "^2.7 || ^3.0",
"doctrine/orm": "^2.7",
"myclabs/php-enum": "^1.7",
"symfony/doctrine-bridge": "^5.2 || ^6.0",
"symfony/phpunit-bridge": "^5.2 || ^6.0",
"symfony/serializer": "^5.2 || ^6.0",
"symfony/validator": "^5.2 || ^6.0",
"symfony/doctrine-bridge": "^5.2 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.2 || ^6.0 || ^7.0",
"symfony/serializer": "^5.2 || ^6.0 || ^7.0",
"symfony/validator": "^5.2 || ^6.0 || ^7.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.2.0",
"symfony/finder": "^5.2 || ^6.0"
"symfony/finder": "^5.2 || ^6.0 || ^7.0"
},
"bin": [
"bin/schema"
Expand Down

0 comments on commit 1c187e6

Please sign in to comment.