Project

General

Profile

Download (4 KB) Statistics
| Branch: | Tag: | Revision:
1
{
2
    "name": "cybertaxonomy.org/drupal-7-dataportal",
3
    "description": "The dataportal publishes CDM data hosted in a CommunityStore on the web.",
4
    "type": "project",
5
    "license": "GPL-2.0-or-later",
6
    "authors": [
7
        {
8
            "name": "Andreas Kohlbecker",
9
            "email": "a.kohlbecker@bgbm.org"
10
        }
11
    ],
12
    "repositories": [
13
        {
14
            "type": "composer",
15
            "url": "https://packages.drupal.org/7"
16
        },
17
        {
18
            "type": "path",
19
            "url": "./modules/cdm_dataportal",
20
            "options": {
21
                "symlink": true
22
            }
23
        },
24
        {
25
            "type": "path",
26
            "url": "./themes/zen",
27
            "options": {
28
                "symlink": true
29
            }
30
        },
31
        {
32
            "type": "path",
33
            "url": "./themes/zen_dataportal",
34
            "options": {
35
                "symlink": true
36
            }
37
        },
38
        {
39
            "type": "path",
40
            "url": "./profiles/cdm_portal",
41
            "options": {
42
                "symlink": true
43
            }
44
        },
45
        {
46
            "type": "path",
47
            "url": "./profiles/cdm_portal_testing",
48
            "options": {
49
                "symlink": true
50
            }
51
        }
52
    ],
53
    "require": {
54
        "php": ">=5.6",
55
        "ext-curl": "*",
56
        "ext-gd": "*",
57
        "ext-json": "*",
58
        "ext-openssl": "*",
59
        "ext-pdo": "*",
60
        "ext-xml": "*",
61
        "composer/installers": "^1.2",
62
        "composer/semver": "^1.4",
63
        "cweagans/composer-patches": "^1.6.5",
64
        "drupal-composer/preserve-paths": "^0.1",
65
        "drupal/composer_autoloader": "^1.0",
66
        "drupal/drupal": "^7.62",
67
        "drush/drush": "^8.0",
68
        "symfony/filesystem": "~2.7|^3",
69
        "webflo/drupal-finder": "^1.0.0",
70
        
71
        "cybertaxonomy.org/cdm_dataportal": "*",
72
        "cybertaxonomy.org/zen_dataportal": "*",
73
        "cybertaxonomy.org/cdm_portal": "*",
74
        
75
        "drupal/admin_menu": "*",
76
        "drupal/admin_menu_toolbar": "*"
77
    },
78
    "require-dev": {
79
        "phpunit/phpunit": "^5",
80
        "cybertaxonomy.org/cdm_portal_testing": "*"
81
    },
82
    "conflict": {
83
        "drupal/core": "8.*"
84
    },
85
    "minimum-stability": "dev",
86
    "prefer-stable": true,
87
    "config": {
88
        "sort-packages": true
89
    },
90
    "autoload": {
91
        "classmap": [
92
            "scripts/composer/ScriptHandler.php",
93
            "scripts/composer/CdmDataPortalHelper.php"
94
        ]
95
    },
96
    "scripts": {
97
        "pre-install-cmd": [
98
            "DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
99
        ],
100
        "pre-update-cmd": [
101
            "DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
102
        ],
103
        "post-install-cmd": [
104
            "DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
105
            "Cybertaxonomy\\composer\\CdmDataPortalHelper::createPolyfillSymlinks"
106
        ],
107
        "post-update-cmd": [
108
            "DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
109
            "Cybertaxonomy\\composer\\CdmDataPortalHelper::createPolyfillSymlinks"
110
        ],
111
        "post-create-project-cmd": [
112
            "DrupalProject\\composer\\ScriptHandler::removeInternalFiles"
113
        ]
114
    },
115
    "extra": {
116
        "installer-paths": {
117
            "web/": ["type:drupal-core"],
118
            "web/profiles/{$name}/": ["type:drupal-profile"],
119
            "web/sites/all/drush/{$name}/": ["type:drupal-drush"],
120
            "web/sites/all/libraries/{$name}/": ["type:drupal-library"],
121
            "web/sites/all/modules/contrib/{$name}/": ["type:drupal-module"],
122
            "web/sites/all/themes/contrib/{$name}/": ["type:drupal-theme"]
123
        },
124
        "patches": {
125
            "cweagans/composer-patches": {
126
                "Call the preserve paths hooks" : "https://github.com/SebCorbin/composer-patches/commit/1cb9bacba51f8bba0c5f3f322c3bb61e4ceae974.patch"
127
            }
128
        },
129
        "preserve-paths": [
130
            "web/sites",
131
            "web/profiles"
132
        ]
133
    }
134
}
(4-4/5)