-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
executable file
·70 lines (70 loc) · 2.14 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
{
"name": "craftsmancoding/assetmanager",
"description": "Asset Manager Media Library for MODX Revolution.",
"type": "modx-package",
"keywords": ["modx","assets","manager","thumbnails","cropping"],
"license": "GPL-2.0",
"authors": [
{
"name": "Everett Griffiths",
"email": "[email protected]",
"homepage": "http://craftsmancoding.com"
}
],
"support": {
"email": "[email protected]",
"issues": "http://github.com/craftsmancoding/assetmanager/issues",
"forum": "http://forums.modx.com/",
"wiki": "http://github.com/craftsmancoding/assetmanager/wiki",
"source": "http://github.com/craftsmancoding/assetmanager"
},
"require": {
"php": ">=5.3",
"craftsmancoding/image": "dev-master",
"craftsmancoding/formbuilder": "dev-master",
"craftsmancoding/pagination": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "7.2.6"
},
"autoload": {
"classmap":[
"model/"
],
"psr-4": {
"Assman\\": ["model/","controllers/"]
}
},
"extra": {
"repoman": "1.0",
"package_name": "AssetManager",
"namespace": "assman",
"version": "1.3.1",
"release": "pl",
"category":"Asset Manager",
"core_path": "",
"orm_path": "model/",
"assets_path" : "assets/",
"seeds_path": ["model/seeds/base"],
"omit": ["assets/","screenshots/","tests/","composer.json","composer.lock","builds/","phpunit.xml",".git"],
"packages":[
{
"pkg":"assman",
"path":"model/",
"table_prefix": "ass_"
}
],
"build_attributes":{
"Asset": {
"preserve_keys": true,
"update_object": true,
"unique_key": "stub"
},
"PageAsset": {
"preserve_keys": true,
"update_object": true,
"unique_key": ["page_id","asset_id"]
}
}
}
}