-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 918 Bytes
/
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
{
"name": "51degrees/fiftyone.pipeline.core",
"description": "Core library for the 51Degrees Pipeline API.",
"keywords": [
"51degrees"
],
"authors" : [
{
"name": "51Degrees Engineering",
"email": "[email protected]"
}
],
"license": "EUPL-1.2",
"type": "library",
"require": {
"php": ">=7.4",
"ext-ctype": "*",
"ext-json": "*",
"mustache/mustache": "^2.13",
"tedivm/jshrink": "~1.0"
},
"require-dev": {
"kint-php/kint": "^3.3",
"phpunit/phpunit": "*",
"friendsofphp/php-cs-fixer": "^3.39",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"fiftyone\\pipeline\\core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"fiftyone\\pipeline\\core\\tests\\": "tests/"
}
}
}