-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.31 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.31 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
42
43
44
45
46
47
48
49
50
{
"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": "cc@talis.com",
"homepage": "http://talis.com/"
},
{
"name": "Nadeem Shabir",
"email": "ns@talis.com",
"homepage": "http://talis.com/"
}
],
"suggest": {
"resque/php-resque": "Redis backed library for background jobs"
},
"require": {
"php" : ">=7.4",
"mongodb/mongodb": "*",
"monolog/monolog" : "~1.13",
"semsol/arc2": "2.2.6"
},
"require-dev": {
"phpunit/phpunit": "^9.6.20",
"resque/php-resque": "v1.3.6",
"friendsofphp/php-cs-fixer": "^3.4",
"perftools/php-profiler": "^1.2",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"classmap": ["src/"]
},
"autoload-dev": {
"classmap": ["test/"]
},
"scripts": {
"lint": "php-cs-fixer check",
"analyse": "phpstan analyse --memory-limit 1024M",
"test": [
"Composer\\Config::disableProcessTimeout",
"phpunit"
]
}
}