-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
70 lines (70 loc) · 1.87 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": "jpp/pimcore",
"type": "project",
"description": "Demo Application Pimcore for Grupo JPP",
"license": "GPL-3.0-or-later",
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"discard-changes": true,
"process-timeout": 0
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"ext-curl": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"ci-hub/pimcore-ci-hub-adapter-bundle": "^2.0",
"ci-hub/simple-rest-adapter-bundle": "^2.0",
"elasticsearch/elasticsearch": "^7.17",
"hwi/oauth-bundle": "^1.2.0",
"php-http/guzzle7-adapter": "^0.1.1",
"php-http/httplug-bundle": "^1",
"pimcore/customer-management-framework-bundle": "^3.0",
"pimcore/data-hub": "^1.0",
"pimcore/data-importer": "^1.1",
"pimcore/payment-provider-unzer": "^1.0",
"pimcore/perspective-editor": "^1.0",
"pimcore/pimcore": "^10.0",
"pimcore/web2print-tools-bundle": "^4.0"
},
"suggest": {
"elasticsearch/elasticsearch": "Required for Elastic Search service"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Pimcore\\Model\\DataObject\\": "var/classes/DataObject",
"Pimcore\\Model\\Object\\": "var/classes/Object",
"Website\\": "legacy/website/lib"
}
},
"scripts": {
"post-create-project-cmd": "Pimcore\\Composer::postCreateProject",
"post-install-cmd": [
"Pimcore\\Composer::postInstall",
"@pimcore-scripts"
],
"post-update-cmd": [
"Pimcore\\Composer::postUpdate",
"@pimcore-scripts",
"Pimcore\\Composer::executeMigrationsUp",
"@pimcore-scripts"
],
"pimcore-scripts": [
"Pimcore\\Composer::clearCache",
"Pimcore\\Composer::installAssets"
]
},
"repositories": {
"dev": {
"type": "path",
"url": "./dev/*/*",
"options": {
"symlink": true
}
}
}
}