| ... | ... |
@@ -1,64 +1,70 @@ |
| 1 | 1 |
{
|
| 2 |
- "name": "oveleon/contao-member-extension-bundle", |
|
| 3 |
- "type": "contao-bundle", |
|
| 4 |
- "description": "Member feature extension for Contao.", |
|
| 5 |
- "keywords": ["contao","member-extension-bundle"], |
|
| 6 |
- "homepage": "https://oveleon.de/", |
|
| 7 |
- "license": "MIT", |
|
| 8 |
- "authors": [ |
|
| 9 |
- {
|
|
| 10 |
- "name": "Oveleon", |
|
| 11 |
- "homepage": "https://oveleon.de/", |
|
| 12 |
- "role": "Developer" |
|
| 2 |
+ "name": "oveleon/contao-member-extension-bundle", |
|
| 3 |
+ "type": "contao-bundle", |
|
| 4 |
+ "description": "Member feature extension for Contao.", |
|
| 5 |
+ "keywords": ["contao","member-extension-bundle"], |
|
| 6 |
+ "homepage": "https://oveleon.de/", |
|
| 7 |
+ "license": "MIT", |
|
| 8 |
+ "authors": [ |
|
| 9 |
+ {
|
|
| 10 |
+ "name": "Oveleon", |
|
| 11 |
+ "homepage": "https://oveleon.de/", |
|
| 12 |
+ "role": "Developer" |
|
| 13 |
+ }, |
|
| 14 |
+ {
|
|
| 15 |
+ "name": "Daniele Sciannimanica", |
|
| 16 |
+ "homepage": "https://github.com/doishub", |
|
| 17 |
+ "role":"Developer" |
|
| 18 |
+ }, |
|
| 19 |
+ {
|
|
| 20 |
+ "name": "Fabian Ekert", |
|
| 21 |
+ "homepage": "https://github.com/eki89", |
|
| 22 |
+ "role": "Developer" |
|
| 23 |
+ }, |
|
| 24 |
+ {
|
|
| 25 |
+ "name": "Sebastian Zoglowek", |
|
| 26 |
+ "homepage": "https://github.com/zoglo", |
|
| 27 |
+ "role": "Developer" |
|
| 28 |
+ } |
|
| 29 |
+ ], |
|
| 30 |
+ "require": {
|
|
| 31 |
+ "php": "^7.4 || ^8.0", |
|
| 32 |
+ "contao/core-bundle":"^4.9" |
|
| 13 | 33 |
}, |
| 14 |
- {
|
|
| 15 |
- "name": "Daniele Sciannimanica", |
|
| 16 |
- "homepage": "https://github.com/doishub", |
|
| 17 |
- "role":"Developer" |
|
| 34 |
+ "require-dev": {
|
|
| 35 |
+ "contao/manager-plugin": "^2.3.1" |
|
| 18 | 36 |
}, |
| 19 |
- {
|
|
| 20 |
- "name": "Fabian Ekert", |
|
| 21 |
- "homepage": "https://github.com/eki89", |
|
| 22 |
- "role": "Developer" |
|
| 37 |
+ "conflict": {
|
|
| 38 |
+ "contao/core": "*", |
|
| 39 |
+ "contao/manager-plugin": "<2.0 || >=3.0" |
|
| 23 | 40 |
}, |
| 24 |
- {
|
|
| 25 |
- "name": "Sebastian Zoglowek", |
|
| 26 |
- "homepage": "https://github.com/zoglo", |
|
| 27 |
- "role": "Developer" |
|
| 28 |
- } |
|
| 29 |
- ], |
|
| 30 |
- "require": {
|
|
| 31 |
- "php": "^7.4 || ^8.0", |
|
| 32 |
- "contao/core-bundle":"^4.9" |
|
| 33 |
- }, |
|
| 34 |
- "require-dev": {
|
|
| 35 |
- "contao/manager-plugin": "^2.3.1" |
|
| 36 |
- }, |
|
| 37 |
- "conflict": {
|
|
| 38 |
- "contao/core": "*", |
|
| 39 |
- "contao/manager-plugin": "<2.0 || >=3.0" |
|
| 40 |
- }, |
|
| 41 |
- "extra": {
|
|
| 42 |
- "branch-alias": {
|
|
| 43 |
- "dev-master": "1.2.x-dev" |
|
| 41 |
+ "autoload": {
|
|
| 42 |
+ "psr-4": {
|
|
| 43 |
+ "Oveleon\\ContaoMemberExtensionBundle\\": "src/" |
|
| 44 |
+ }, |
|
| 45 |
+ "classmap": [ |
|
| 46 |
+ "src/Resources/contao/" |
|
| 47 |
+ ], |
|
| 48 |
+ "exclude-from-classmap": [ |
|
| 49 |
+ "src/Resources/contao/config/", |
|
| 50 |
+ "src/Resources/contao/dca/", |
|
| 51 |
+ "src/Resources/contao/languages/", |
|
| 52 |
+ "src/Resources/contao/templates/" |
|
| 53 |
+ ] |
|
| 44 | 54 |
}, |
| 45 |
- "contao-manager-plugin": "Oveleon\\ContaoMemberExtensionBundle\\ContaoManager\\Plugin" |
|
| 46 |
- }, |
|
| 47 |
- "autoload": {
|
|
| 48 |
- "psr-4": {
|
|
| 49 |
- "Oveleon\\ContaoMemberExtensionBundle\\": "src/" |
|
| 55 |
+ "extra": {
|
|
| 56 |
+ "branch-alias": {
|
|
| 57 |
+ "dev-master": "1.2.x-dev" |
|
| 58 |
+ }, |
|
| 59 |
+ "contao-manager-plugin": "Oveleon\\ContaoMemberExtensionBundle\\ContaoManager\\Plugin" |
|
| 50 | 60 |
}, |
| 51 |
- "classmap": [ |
|
| 52 |
- "src/Resources/contao/" |
|
| 53 |
- ], |
|
| 54 |
- "exclude-from-classmap": [ |
|
| 55 |
- "src/Resources/contao/config/", |
|
| 56 |
- "src/Resources/contao/dca/", |
|
| 57 |
- "src/Resources/contao/languages/", |
|
| 58 |
- "src/Resources/contao/templates/" |
|
| 59 |
- ] |
|
| 60 |
- }, |
|
| 61 |
- "support": {
|
|
| 62 |
- "issues": "https://github.com/oveleon/contao-member-extension-bundle/issues" |
|
| 63 |
- } |
|
| 61 |
+ "config": {
|
|
| 62 |
+ "allow-plugins": {
|
|
| 63 |
+ "contao-components/installer": true, |
|
| 64 |
+ "contao/manager-plugin": true |
|
| 65 |
+ } |
|
| 66 |
+ }, |
|
| 67 |
+ "support": {
|
|
| 68 |
+ "issues": "https://github.com/oveleon/contao-member-extension-bundle/issues" |
|
| 69 |
+ } |
|
| 64 | 70 |
} |
| 65 | 71 |
\ No newline at end of file |