Skip to content
Merged
Show file tree
Hide file tree
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 Jan 27, 2023
85ada76
raml2html/composer.json: Reinsert name, license, authors
adriendupuis Feb 1, 2023
6e63c8c
Add raml2html/composer.lock
adriendupuis Feb 1, 2023
61d9f02
Merge branch 'master' into update-raml2html
adriendupuis Feb 16, 2023
2278ce2
Update composer.json
adriendupuis Feb 16, 2023
243554a
php8.2.patch: Remove Body.php fix as it had been avoided in our code
adriendupuis Feb 16, 2023
557ec2c
*.raml: Minimal fixes to avoid critical errors while raml2html
adriendupuis Feb 21, 2023
4a0b546
*.raml: Minimal fixes to avoid critical errors while raml2html
adriendupuis Feb 21, 2023
b5d3950
php_8.2.patch: Remove Parser.php patch as fixed on our RAML side
adriendupuis Feb 21, 2023
77a9c9d
ez-types.raml: quick and dirty fixes of arrays without typed items
adriendupuis Feb 21, 2023
2e3cc7b
php_8.2.patch: Remove Type.php patch as fixed on our RAML side
adriendupuis Feb 21, 2023
941480e
php_8.2.patch → php_8.1.patch
adriendupuis Feb 21, 2023
51bd16a
commit raml2html composer.lock
adriendupuis Feb 21, 2023
89ec137
Merge branch 'master' into update-raml2html
adriendupuis Feb 23, 2023
a1217b6
ez-types.raml: Refine few types
adriendupuis Feb 23, 2023
90f45d8
Merge branch 'master' into update-raml2html
adriendupuis Mar 3, 2023
38b8ece
Regenerate rest_api_reference.html
adriendupuis Mar 3, 2023
74e9dcd
raml2html composer.json: Patch using PR instead of local file
adriendupuis Mar 23, 2023
97d347e
raml2html composer.json: Also compatible w/ PHP 8.0
adriendupuis Mar 23, 2023
29e9cb1
raml2html: remove composer.lock for flexibility
adriendupuis Mar 23, 2023
cdbeca9
composer.json: Upgrade Twig a bit as allowed by PHP 8.0
adriendupuis Jul 6, 2023
d262f36
Merge branch 'master' into update-raml2html
adriendupuis Jul 6, 2023
017c900
Revert ez-calendar.raml
adriendupuis Jul 7, 2023
12639f5
Merge branch 'master' into update-raml2html
adriendupuis Jul 7, 2023
791c273
Update raml2html/README.md
adriendupuis Jul 7, 2023
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
2 changes: 1 addition & 1 deletion tools/raml2html/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ To generate static HTML from RAML definitions, use the following code:


```sh
php tools/raml2html/raml2html.php build --non-standard-http-methods=COPY,MOVE,PUBLISH,SWAP -t default -o docs/api/rest_api_reference/output/ docs/api/rest_api_reference/input/ez.raml
php tools/raml2html/raml2html.php build --non-standard-http-methods=COPY,MOVE,PUBLISH,SWAP -t default -o docs/api/rest_api/rest_api_reference/ docs/api/rest_api/rest_api_reference/input/ez.raml
```
46 changes: 28 additions & 18 deletions tools/raml2html/composer.json
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"
}
}
}
}