-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
36 lines (36 loc) · 1000 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
{
"name": "chesscom/diagram-generator",
"description": "Library to dynamically generate chess diagrams",
"keywords": ["chess", "php", "diagram"],
"homepage": "https://github.com/ChessCom/DiagramGenerator",
"type": "library",
"license": "proprietary",
"authors": [
{
"name": "Alex Kovalevych",
"email": "alexkovalevych@gmail.com",
"homepage": "https://github.com/AlexKovalevych",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.0",
"jms/serializer": "^2.0|^3.0",
"symfony/routing": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0",
"symfony/validator": "^6.0|^7.0",
"intervention/image": "^2.3",
"ext-curl": "*"
},
"autoload": {
"psr-0": {"DiagramGenerator": "src/"}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}