-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
94 lines (94 loc) · 2.43 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "islandora/hypercube",
"description": "Tesseract as a web service",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Islandora Foundation",
"email": "community@islandora.ca",
"role": "Owner"
},
{
"name": "Daniel Lamb",
"email": "dlamb@islandora.ca",
"role": "Maintainer"
},
{
"name": "Jared Whiklo",
"email": "jwhiklo@gmail.com",
"role": "Developer"
}
],
"require": {
"ext-ctype": "*",
"ext-iconv": "*",
"islandora/crayfish-commons": "^4.0",
"lexik/jwt-authentication-bundle": "^2.18",
"symfony/dotenv": "5.4.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "5.4.*",
"symfony/runtime": "5.4.*",
"symfony/string": "5.4.*",
"symfony/translation": "5.4.*",
"symfony/yaml": "5.4.*"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.0",
"symfony/browser-kit": "5.4.*",
"symfony/css-selector": "5.4.*",
"symfony/phpunit-bridge": "5.4.*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
}
},
"autoload": {
"psr-4": {
"App\\Islandora\\Hypercube\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Islandora\\Hypercube\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"check": [
"vendor/bin/phpcs --standard=PSR2 src tests",
"vendor/bin/phpcpd --suffix *.php src tests"
],
"test": [
"@check",
"bin/phpunit"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.4.*"
}
}
}