-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 1.02 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
{
"name": "mikulas/nextras-ormext",
"type": "library",
"description": "PostgreSQL extensions for Nextras Orm framework DBAL and ORM",
"keywords": ["orm", "database", "nextras", "postgresql"],
"homepage": "https://github.com/mikulas/nextras-orm-pg",
"license": "MIT",
"authors": [
{ "name": "Nextras Project", "homepage": "https://github.com/nextras/orm/graphs/contributors" }
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"nextras/dbal": "~2.0",
"nextras/orm": "~2.0",
"nette/tokenizer": "~2.2",
"nette/utils": "~2.2"
},
"suggest": {
"ext-mcrypt": "Enables Crypto class and MappingFactory::addCryptoMapping",
"yohang/finite": "Enables state machine container property (required version: ~1.1)"
},
"require-dev": {
"tracy/tracy": "~2.3",
"nette/bootstrap": "~2.3",
"nette/tester": "~1.6 != 1.6.1",
"mockery/mockery": "~0.9",
"yohang/finite": "~1.1"
},
"autoload": {
"psr-4": { "Mikulas\\OrmExt\\": "src/" }
},
"autoload-dev": {
"classmap": [
"tests/cases",
"tests/inc"
]
}
}