-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 loc) · 1.06 KB
/
composer.json
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
42
43
{
"name": "talis/tripod-php",
"type": "library",
"description": "A library for managing RDF data in Mongo",
"keywords": ["rdf","sparql"],
"homepage": "https://github.com/talis/tripod-php",
"license": "MIT",
"authors": [
{
"name": "Chris Clarke",
"email": "[email protected]",
"homepage": "http://talis.com/"
},
{
"name": "Nadeem Shabir",
"email": "[email protected]",
"homepage": "http://talis.com/"
}
],
"suggest": {
"resque/php-resque": "Redis backed library for background jobs"
},
"require": {
"php" : ">=7.3",
"mongodb/mongodb": "*",
"monolog/monolog" : "~1.13",
"semsol/arc2": "2.2.6"
},
"require-dev": {
"phpunit/phpunit": "^9.6.20",
"resque/php-resque": "v1.3.6",
"squizlabs/php_codesniffer": "3.2.*"
},
"autoload": {
"classmap": ["src/"]
},
"autoload-dev": {
"classmap": ["test/"]
},
"scripts": {
"test": "phpunit"
}
}