-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·43 lines (43 loc) · 1.07 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
{
"name": "sioweb/oxid-api",
"description": "Symfony based api",
"type": "oxidkernel-module",
"keywords": ["oxid","modules","rest", "api"],
"homepage": "https://github.com/Sioweb/OxidApi",
"license": [
"GPL-3.0-only"
],
"extra": {
"oxideshop": {
"blacklist-filter": [
"documentation/**/*.*"
],
"source-directory": "./src/Resources/oxid",
"target-directory": "sioweb/Api"
},
"oxid-kernel-plugin": {
"sioweb/oxid-api": "Sioweb\\Oxid\\Api\\SiowebOxidApiBundle",
"symfony/security-bundle": "Symfony\\Bundle\\SecurityBundle\\SecurityBundle"
}
},
"require": {
"php": "^7.0",
"oxid-community/symfony-kernel": "*",
"symfony/security-bundle": "~3.1.0",
"sioweb/ccevent-git": "*"
},
"autoload": {
"psr-4": {
"Sioweb\\Oxid\\Api\\": "src/"
},
"exclude-from-classmap": [
"src/Resources/oxid"
]
},
"scripts": {
"package-scripts": [
"@config.localhost==1",
"Sioweb\\CCEvent\\Git\\Composer\\Git::init --repository=https://github.com/Sioweb/OxidApi"
]
}
}