-
Notifications
You must be signed in to change notification settings - Fork 83
IBX-4498: raml2html: Upgrade dependencies #1871
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
6d6a128
composer.json: update dependencies
adriendupuis 85ada76
raml2html/composer.json: Reinsert name, license, authors
adriendupuis 6e63c8c
Add raml2html/composer.lock
adriendupuis 61d9f02
Merge branch 'master' into update-raml2html
adriendupuis 2278ce2
Update composer.json
adriendupuis 243554a
php8.2.patch: Remove Body.php fix as it had been avoided in our code
adriendupuis 557ec2c
*.raml: Minimal fixes to avoid critical errors while raml2html
adriendupuis 4a0b546
*.raml: Minimal fixes to avoid critical errors while raml2html
adriendupuis b5d3950
php_8.2.patch: Remove Parser.php patch as fixed on our RAML side
adriendupuis 77a9c9d
ez-types.raml: quick and dirty fixes of arrays without typed items
adriendupuis 2e3cc7b
php_8.2.patch: Remove Type.php patch as fixed on our RAML side
adriendupuis 941480e
php_8.2.patch → php_8.1.patch
adriendupuis 51bd16a
commit raml2html composer.lock
adriendupuis 89ec137
Merge branch 'master' into update-raml2html
adriendupuis a1217b6
ez-types.raml: Refine few types
adriendupuis 90f45d8
Merge branch 'master' into update-raml2html
adriendupuis 38b8ece
Regenerate rest_api_reference.html
adriendupuis 74e9dcd
raml2html composer.json: Patch using PR instead of local file
adriendupuis 97d347e
raml2html composer.json: Also compatible w/ PHP 8.0
adriendupuis 29e9cb1
raml2html: remove composer.lock for flexibility
adriendupuis cdbeca9
composer.json: Upgrade Twig a bit as allowed by PHP 8.0
adriendupuis d262f36
Merge branch 'master' into update-raml2html
adriendupuis 017c900
Revert ez-calendar.raml
adriendupuis 12639f5
Merge branch 'master' into update-raml2html
adriendupuis 791c273
Update raml2html/README.md
adriendupuis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,49 @@ | ||
{ | ||
"name": "ezsystems/raml2html", | ||
"name": "ibexa/raml2html", | ||
"type": "project", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Adam Wójs", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"repositories": [ | ||
}, | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/adamwojs/raml-php-parser" | ||
"name": "Adrien Dupuis", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4", | ||
"symfony/console": "^4.2", | ||
"raml-org/raml-php-parser": "dev-master", | ||
"twig/twig": "^2.0", | ||
"symfony/filesystem": "^4.2", | ||
"ramsey/uuid": "^3.9", | ||
"twig/markdown-extra": "^3.5", | ||
"league/commonmark": "^2.3" | ||
"php": "^8.0", | ||
"symfony/console": "^6.0", | ||
"raml-org/raml-php-parser": "^4.8", | ||
"twig/twig": "^3.6", | ||
"symfony/filesystem": "^6.0", | ||
"ramsey/uuid": "^4.7", | ||
"twig/markdown-extra": "^3.6", | ||
"league/commonmark": "^2.3", | ||
"cweagans/composer-patches": "^1.7" | ||
}, | ||
"require-dev": { | ||
"symfony/var-dumper": "^4.2", | ||
"ezsystems/ezplatform-code-style": "^0.1.0" | ||
"symfony/var-dumper": "^6.0", | ||
"ibexa/code-style": "^1.2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"EzSystems\\Raml2Html\\": "src" | ||
} | ||
}, | ||
"scripts": { | ||
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating" | ||
"config": { | ||
"allow-plugins": { | ||
"cweagans/composer-patches": true | ||
} | ||
}, | ||
"extra": { | ||
"patches": { | ||
"raml-org/raml-php-parser": { | ||
"Array of scalars": "https://github.com/raml-org/raml-php-parser/commit/d2e58eac1705a8cf2be43ed3d482006e67e4ef2d.patch", | ||
"No available type list in type not found exception": "https://github.com/raml-org/raml-php-parser/commit/d54af98b9bd6d2400bbdd1c186e9b86c2dd88c83.patch", | ||
"Fix warnings and depreciations for PHP 8.1": "https://patch-diff.githubusercontent.com/raw/raml-org/raml-php-parser/pull/180.patch" | ||
} | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.