-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
63 lines (63 loc) · 1.7 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
{
"name": "islandora/crayfish-commons",
"description": "Shared code amongst Islandora Crayfish microservices",
"type": "symfony-bundle",
"homepage": "https://github.com/Islandora/Crayfish-Commons",
"support": {
"issues": "https://github.com/Islandora/documentation/issues"
},
"require": {
"islandora/chullo": "^2.0",
"psr/log": "^1.0.1",
"namshi/jose": "^7.2",
"symfony/monolog-bundle": "^3.4",
"symfony/http-foundation": "5.4.*",
"symfony/config": "5.4.*",
"symfony/dependency-injection": "5.4.*",
"symfony/event-dispatcher": "5.4.*"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.0",
"mikey179/vfsstream": "^1.6",
"symfony/phpunit-bridge": "5.4.*"
},
"autoload": {
"psr-4": {
"Islandora\\Crayfish\\Commons\\": ""
}
},
"scripts": {
"check": [
"phpcs --standard=PSR2 --extensions=php --ignore=\"vendor/\" .",
"phpcpd --suffix *.php --exclude vendor . "
],
"test": [
"@check",
"simple-phpunit"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.4.*"
}
},
"license": "MIT",
"authors": [
{
"name": "Islandora Foundation",
"email": "[email protected]",
"role": "Owner"
},
{
"name": "Daniel Lamb",
"email": "[email protected]",
"role": "Maintainer"
}
]
}