-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
31 lines (31 loc) · 1012 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
{
"name": "ccmbenchmark/ting_bundle",
"description" : "Symfony bundle for ccmbenchmark/ting. Provides an interface to use a lightweight datamapper in symfony.",
"type": "symfony-bundle",
"license": "Apache-2.0",
"require": {
"php": ">=8.1",
"ccmbenchmark/ting": "^3.5",
"doctrine/cache": "^1.10",
"symfony/validator": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/stopwatch": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"atoum/atoum": "^4.2",
"atoum/stubs": "^2.2"
},
"autoload": {
"psr-4" : {
"CCMBenchmark\\TingBundle\\": "src/TingBundle/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\fixtures\\": "tests/fixtures/"
}
},
"minimum-stability" : "stable"
}