-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·37 lines (37 loc) · 982 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
36
37
{
"name": "cihaeuser/formbuilder",
"description": "Formulargenerator for oxid 6 front- and backend.",
"type": "oxidkernel-module",
"keywords": ["oxid","modules"],
"homepage": "https://gitlab.seidemann-web.com/ci-haeuser-module/formbuilder",
"license": [
"GPL-3.0-only"
],
"extra": {
"oxideshop": {
"blacklist-filter": [
"documentation/**/*.*"
],
"source-directory": "./src/Resources/oxid",
"target-directory": "ci-haeuser/FormBuilder"
}
},
"require": {
"php": "^7.0",
"sioweb/formgenerator": "*",
"oxidprojects/dependency-injection": "*",
"sioweb/ccevent-git": "*",
"oxid-community/symfony-kernel": "*"
},
"autoload": {
"psr-4": {
"Ci\\Oxid\\FormBuilder\\": "src/"
}
},
"scripts": {
"package-scripts": [
"@config.localhost==1",
"Sioweb\\CCEvent\\Git\\Composer\\Git::init --repository=git@gitlab.seidemann-web.com:ci-haeuser-module/FormBuilder.git"
]
}
}