-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (66 loc) · 1.53 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name" : "ipub/doctrine-orm-query",
"type" : "library",
"description" : "Create entities select queries in Doctrine 2",
"keywords" : [
"orq",
"query",
"resultSet",
"doctrine",
"tools",
"ipub",
"ipublikuj"
],
"homepage" : "https://github.com/iPublikuj/doctrine-orm-query",
"license" : [
"GPL-2.0",
"GPL-3.0"
],
"authors" : [
{
"name" : "iPublikuj:cms",
"email" : "[email protected]",
"homepage" : "https://www.ipublikuj.eu/"
}
],
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/iPublikuj/doctrine-orm-query/issues"
},
"require" : {
"php" : ">=7.4.0",
"doctrine/orm": "^2.6",
"nette/utils": "^3.2||^4.0"
},
"require-dev" : {
"contributte/console": "^0.9",
"mockery/mockery": "^1.4",
"nette/bootstrap": "^3.1",
"nettrine/cache": "^0.3",
"nettrine/orm": "^0.8",
"ninjify/nunjuck": "^0.3",
"ninjify/qa": "^0.12",
"pds/skeleton": "~1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-nette": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"tracy/tracy": "^2.8"
},
"autoload" : {
"psr-4" : {
"IPub\\DoctrineOrmQuery\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Tests\\Cases\\" : "tests/cases",
"Tests\\Fixtures\\" : "tests/fixtures"
}
},
"config" : {
"sort-packages" : true
}
}