-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.32 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.32 KB
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": "garakkio@gmail.com"
},
{
"name": "Arkadiusz Kondas",
"email": "arkadiusz.kondas@gmail.com"
}
],
"require": {
"php": "^8.2",
"p-chess/chess": "^1.1",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/routing": "^6.4 || ^7.4 || ^8.0",
"twig/twig": "^3.23"
},
"require-dev": {
"dg/bypass-finals": "^1.9",
"phpunit/phpunit": "^11.5 || ^12.5 || ^13.0",
"symfony/phpunit-bridge": "^8.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"
}
}
}