-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 1.46 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
61
62
63
{
"name": "ingenerator/kohana-doctrine2",
"type": "library",
"description": "Opinionated wrapper for the doctrine ORM",
"homepage": "https://github.com/ingenerator/kohana-doctrine2",
"license": "BSD-3-Clause",
"keywords": [
"kohana",
"doctrine",
"orm"
],
"authors": [
{
"name": "Andrew Coulton",
"homepage": "https://github.com/acoulton",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/ingenerator/kohana-doctrine2/issues",
"source": "https://github.com/ingenerator/kohana-doctrine2"
},
"autoload": {
"psr-4": {
"Ingenerator\\KohanaDoctrine\\": "src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://php-packages.ingenerator.com"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0",
"ext-pdo": "*",
"composer/installers": "^1.12 || ^2",
"doctrine/common": "^3.4",
"doctrine/dbal": "^3.9",
"doctrine/orm": "^2.20",
"doctrine/persistence": "^2.5 || ^3.4",
"ingenerator/kohana-core": "^4.12",
"ingenerator/kohana-dependencies": "^1.4",
"symfony/cache": "^6.4 || ^7.2"
},
"require-dev": {
"kohana/koharness": "dev-master",
"phpunit/phpunit": "^9.6.22"
},
"minimum-stability": "stable",
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}