Skip to content

Commit 2d3bcd6

Browse files
authored
IBX-4498: raml2html: Upgrade dependencies (#1871)
1 parent 6813729 commit 2d3bcd6

File tree

2 files changed

+29
-19
lines changed

2 files changed

+29
-19
lines changed

tools/raml2html/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ To generate static HTML from RAML definitions, use the following code:
1414

1515

1616
```sh
17-
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
17+
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
1818
```

tools/raml2html/composer.json

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,49 @@
11
{
2-
"name": "ezsystems/raml2html",
2+
"name": "ibexa/raml2html",
33
"type": "project",
44
"license": "MIT",
55
"authors": [
66
{
77
"name": "Adam Wójs",
88
"email": "[email protected]"
9-
}
10-
],
11-
"repositories": [
9+
},
1210
{
13-
"type": "vcs",
14-
"url": "https://github.com/adamwojs/raml-php-parser"
11+
"name": "Adrien Dupuis",
12+
"email": "[email protected]"
1513
}
1614
],
1715
"require": {
18-
"php": "^7.4",
19-
"symfony/console": "^4.2",
20-
"raml-org/raml-php-parser": "dev-master",
21-
"twig/twig": "^2.0",
22-
"symfony/filesystem": "^4.2",
23-
"ramsey/uuid": "^3.9",
24-
"twig/markdown-extra": "^3.5",
25-
"league/commonmark": "^2.3"
16+
"php": "^8.0",
17+
"symfony/console": "^6.0",
18+
"raml-org/raml-php-parser": "^4.8",
19+
"twig/twig": "^3.6",
20+
"symfony/filesystem": "^6.0",
21+
"ramsey/uuid": "^4.7",
22+
"twig/markdown-extra": "^3.6",
23+
"league/commonmark": "^2.3",
24+
"cweagans/composer-patches": "^1.7"
2625
},
2726
"require-dev": {
28-
"symfony/var-dumper": "^4.2",
29-
"ezsystems/ezplatform-code-style": "^0.1.0"
27+
"symfony/var-dumper": "^6.0",
28+
"ibexa/code-style": "^1.2"
3029
},
3130
"autoload": {
3231
"psr-4": {
3332
"EzSystems\\Raml2Html\\": "src"
3433
}
3534
},
36-
"scripts": {
37-
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating"
35+
"config": {
36+
"allow-plugins": {
37+
"cweagans/composer-patches": true
38+
}
39+
},
40+
"extra": {
41+
"patches": {
42+
"raml-org/raml-php-parser": {
43+
"Array of scalars": "https://github.com/raml-org/raml-php-parser/commit/d2e58eac1705a8cf2be43ed3d482006e67e4ef2d.patch",
44+
"No available type list in type not found exception": "https://github.com/raml-org/raml-php-parser/commit/d54af98b9bd6d2400bbdd1c186e9b86c2dd88c83.patch",
45+
"Fix warnings and depreciations for PHP 8.1": "https://patch-diff.githubusercontent.com/raw/raml-org/raml-php-parser/pull/180.patch"
46+
}
47+
}
3848
}
3949
}

0 commit comments

Comments
 (0)