This repository has been archived by the owner on Jul 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
69 lines (69 loc) · 1.96 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "drupal/sparql_entity_storage",
"description": "Provides SPARQL entity storage and query for Drupal entities.",
"type": "drupal-module",
"homepage": "https://drupal.org/project/sparql_entity_storage",
"support": {
"issues": "https://drupal.org/project/issues/sparql_entity_storage",
"source": "https://cgit.drupalcode.org/sparql_entity_storage"
},
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"easyrdf/easyrdf": "1.0.0 as 0.9.2",
"ml/json-ld": "^1.0"
},
"require-dev": {
"behat/mink": "~1.9.0",
"composer/installers": "^1.7",
"drupal/coder": "^8.3",
"drupal/core": "^8.9 || ^9.1",
"drupal/core-composer-scaffold": "^8.9 || ^9.1",
"mglaman/phpstan-drupal": "^0.12.9",
"mikey179/vfsstream": "^1.6",
"minimaxir/big-list-of-naughty-strings": "dev-master",
"phpspec/prophecy-phpunit": "^1.0 || ^2.0",
"phpstan/phpstan-deprecation-rules": "^0.12.5",
"phpunit/phpunit": "*",
"symfony/phpunit-bridge": "^5.1.4",
"zaporylie/composer-drupal-optimizations": "^1.1"
},
"repositories": [
{
"type": "package",
"package": {
"name": "minimaxir/big-list-of-naughty-strings",
"version": "dev-master",
"dist": {
"url": "https://github.com/minimaxir/big-list-of-naughty-strings/archive/master.zip",
"type": "zip"
}
}
},
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"autoload": {
"classmap": [
"src/Driver/Database/sparql/Connection.php"
]
},
"extra": {
"installer-paths": {
"../testing_site/core": ["type:drupal-core"],
"../testing_site/modules/{$name}": ["type:drupal-module"]
},
"drupal-scaffold": {
"locations": {
"web-root": "../testing_site/"
},
"file-mapping": {
"[project-root]/.editorconfig": false,
"[project-root]/.gitattributes": false
}
}
}
}