-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.3 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
{
"name": "p-chess/chess-bundle",
"type": "symfony-bundle",
"description": "Provide integration with p-chess/chess library",
"keywords": [
"Symfony",
"Chess"
],
"homepage": "https://github.com/p-chess/",
"license": "MIT",
"authors": [
{
"name": "Massimiliano Arione",
"email": "[email protected]"
},
{
"name": "Arkadiusz Kondas",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"p-chess/chess": "^0.4",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/routing": "^5.4 || ^6.4 || ^7.0",
"twig/twig": "^3.0"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^7.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"PChess\\ChessBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PChess\\ChessBundle\\Tests\\": "tests"
}
}
}