Skip to content

Commit 0d3cf85

Browse files
authored
feat: compatibility with Symfony 6 (#359)
1 parent 24428da commit 0d3cf85

File tree

2 files changed

+706
-795
lines changed

2 files changed

+706
-795
lines changed

composer.json

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"type": "library",
44
"description": "Various tools to generate a data model based on Schema.org vocables",
55
"keywords": [
6+
"rdf",
7+
"owl",
68
"schema.org",
79
"semantic",
810
"model",
@@ -36,11 +38,11 @@
3638
"easyrdf/easyrdf": "^1.1",
3739
"friendsofphp/php-cs-fixer": "^2.15 || ^3.0",
3840
"league/html-to-markdown": "^5.0",
39-
"psr/log": "^1.0",
40-
"symfony/config": "^5.2",
41-
"symfony/console": "^5.2",
42-
"symfony/yaml": "^5.2",
43-
"symfony/filesystem": "^5.2",
41+
"psr/log": "^1.0 || ^2.0 || ^3.0",
42+
"symfony/config": "^5.2 || ^6.0" ,
43+
"symfony/console": "^5.2 || ^6.0",
44+
"symfony/yaml": "^5.2 || ^6.0",
45+
"symfony/filesystem": "^5.2 || ^6.0",
4446
"twig/twig": "^3.0",
4547
"nette/php-generator": "^3.6 || ^4.0-dev",
4648
"nette/utils": "^3.1 || ^4.0-dev",
@@ -50,14 +52,19 @@
5052
"api-platform/core": "^2.5",
5153
"doctrine/orm": "^2.7",
5254
"myclabs/php-enum": "^1.7",
53-
"symfony/doctrine-bridge": "^5.2",
54-
"symfony/phpunit-bridge": "^5.2",
55-
"symfony/serializer": "^5.2",
56-
"symfony/validator": "^5.2",
55+
"symfony/doctrine-bridge": "^5.2 || ^6.0",
56+
"symfony/phpunit-bridge": "^5.2 || ^6.0",
57+
"symfony/serializer": "^5.2 || ^6.0",
58+
"symfony/validator": "^5.2 || ^6.0",
5759
"phpspec/prophecy-phpunit": "^2.0",
5860
"phpstan/phpstan": "^1.2.0"
5961
},
6062
"bin": [
6163
"bin/schema"
62-
]
64+
],
65+
"config": {
66+
"allow-plugins": {
67+
"composer/package-versions-deprecated": true
68+
}
69+
}
6370
}

0 commit comments

Comments
 (0)