forked from nextras/orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1011 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "nextras/orm",
"type": "library",
"description": "Nextras Orm framework",
"keywords": [
"orm",
"database",
"nextras"
],
"homepage": "https://github.com/nextras/orm",
"license": "MIT",
"authors": [
{
"name": "Nextras Project",
"homepage": "https://github.com/nextras/orm/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/nextras/orm/issues"
},
"require": {
"php": ">=7.0",
"nette/caching": "~2.2",
"nette/utils": "~2.4 >=2.4.3",
"nette/tokenizer": "~2.2",
"nextras/dbal": "~3.0"
},
"require-dev": {
"nette/bootstrap": "~2.3",
"nette/tester": "~2.0.0",
"mockery/mockery": "~1.0@dev",
"phpstan/phpstan-shim": "~0.9.1",
"phpstan/phpstan-nette": "~0.9",
"tracy/tracy": "~2.3"
},
"autoload": {
"psr-4": {
"Nextras\\Orm\\": "src/"
},
"classmap": [
"src/exceptions.php"
]
},
"autoload-dev": {
"classmap": [
"tests/cases",
"tests/inc"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}