-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.3 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.3 KB
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
{
"name": "openbuildings/jam",
"type": "kohana-module",
"description": "Small but feature rich ORM, has extensible models and builders, baked in upload functionality, supporting multiple backends (rackspace, ftp), polymorphic associations, form builders, nested forms, validators",
"keywords": ["kohana", "database", "ORM", "upload", "form builder", "validation"],
"homepage": "https://github.com/OpenBuildings/jam",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ivan Kerin",
"email": "ivan@openbuildings.com",
"role": "Author"
}
],
"require": {
"php": "^7.1",
"composer/installers": "*",
"kohana/core": "^3.3.0",
"kohana/database": "^3.3.0",
"openbuildings/flex-storage": "^0.1.3",
"kohana/image": "^3.3.0"
},
"require-dev": {
"openbuildings/kohana-test-bootstrap": "^0.2",
"openbuildings/jam-monetary": "^0.2",
"phpunit/phpunit": "^7",
"symfony/dom-crawler": "^4.4",
"symfony/css-selector": "^4.4"
},
"suggest": {
"openbuildings/jam-auth": "A Kohana Auth implementation for Jam, with services",
"openbuildings/jam-monetary": "Convert and format currencies and amounts with a Jam field",
"openbuildings/jam-tart": "Jam admin builder",
"openbuildings/jam-closuretable": "Closuretable implementation for Jam ORM"
},
"config": {
"platform": {
"php": "7.1.8"
}
}
}