forked from lanthaler/JsonLD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.03 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "sweetrdf/json-ld",
"type": "library",
"description": "JSON-LD Processor for PHP",
"keywords": [ "JSON-LD", "jsonld" ],
"homepage": "http://www.markus-lanthaler.com",
"license": "MIT",
"authors": [
{
"name": "Markus Lanthaler",
"email": "mail@markus-lanthaler.com",
"homepage": "http://www.markus-lanthaler.com",
"role": "Developer"
},
{
"name": "Konrad Abicht",
"email": "hi@inspirito.de",
"homepage": "http://inspirito.de/",
"role": "Maintainer, Developer"
}
],
"replace": {
"ml/json-ld":"1.2.*"
},
"require": {
"php": ">=8.1.0",
"ext-json": "*",
"ext-mbstring": "*",
"sweetrdf/iri": "^1"
},
"require-dev": {
"phpunit/phpunit": "^10|^11",
"symfony/process": "^6|^7|^8"
},
"autoload": {
"psr-4": {
"ML\\JsonLD\\": "src/",
"ML\\JsonLD\\Test\\": "Test/"
}
}
}