-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 947 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
{
"name": "aplia/content-tools",
"description": "Improved API for working with content objects in eZ publish legacy",
"keywords": ["ezpublish", "migration"],
"homepage": "https://github.com/Aplia/ezp-content-tools",
"license": "MIT",
"authors": [
{
"name": "Aplia dev-team",
"email": "info@aplia.no",
"homepage": "https://github.com/Aplia"
}
],
"require": {
"php": ">=5.3",
"composer/composer": ">=1.0",
"aplia/support": "^1.0",
"cash/lrucache": "1.0.0"
},
"suggest": {
"robmorgan/phinx": "Adds support for database migration"
},
"bin": [
"bin/ezp_dump_contentclass",
"bin/ezp_dump_content",
"bin/ezp_import_content",
"bin/ezp_process_content",
"bin/ezp_search_and_replace"
],
"autoload": {
"psr-4": {
"Aplia\\": "Aplia"
}
}
}