-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.45 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
54
55
56
57
58
59
60
{
"name": "alms/cycle-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"cycle",
"cycle-bundle",
"dbal",
"orm",
"database",
"persistence"
],
"description": "Cycle DBAL & ORM Bundle for the Symfony Framework.",
"autoload": {
"psr-4": {
"Alms\\Bundle\\CycleBundle\\": "./"
}
},
"authors": [
{
"name": "Slince",
"email": "taosikai@yeah.net"
},
{
"name": "Alessandro Amos",
"email": "alessandroamos@outlook.com.br"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"cycle/annotated": "^3.4",
"cycle/entity-behavior": "^1.2",
"cycle/orm": "^2.5",
"cycle/schema-migrations-generator": "^2.2",
"cycle/schema-renderer": "^1.2",
"symfony/cache": "^5.4 || ^6.0 || ^7.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/deprecation-contracts": "^2.1 || ^3",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
},
"suggest": {
"ext-pdo": "*",
"ext-dom": "*"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/flex": true
},
"sort-packages": true
},
"require-dev": {
"symfony/security-bundle": "^7.0"
}
}