forked from Islandora/Crayfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.23 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
{
"name": "islandora/homarus",
"description": "FFmpeg as a web service",
"type": "project",
"require": {
"php": "^7.3 || ^7.4",
"islandora/crayfish-commons": "^2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Islandora Foundation",
"email": "[email protected]",
"role": "Owner"
},
{
"name": "Natkeeran L.Kanthan",
"email": "[email protected]",
"role": "Maintainer"
}
],
"autoload": {
"psr-4": {
"Islandora\\Homarus\\": "src/"
}
},
"scripts": {
"check": [
"vendor/bin/phpcs --standard=PSR2 src tests",
"vendor/bin/phpcpd --suffix *.php src"
],
"test": [
"@check",
"vendor/bin/phpunit"
]
},
"config": {
"sort-packages": true
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.0",
"sebastian/phpcpd": "^6.0",
"squizlabs/php_codesniffer": "^3.0",
"symfony/browser-kit": "^3.0",
"symfony/css-selector": "^3.0"
}
}