-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.23 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
{
"name": "carte-blanche/installer",
"type": "composer-plugin",
"description": "A special Composer installer for the CarteBlanche framework",
"keywords": ["carte blanche"],
"homepage": "http://github.com/php-carteblanche/installer",
"license": "Apache-2.0",
"authors": [{
"name": "Les Ateliers Pierrot & contributors",
"email": "contact@ateliers-pierrot.fr",
"homepage": "http://www.ateliers-pierrot.fr/"
}],
"autoload": { "psr-0": { "CarteBlancheInstaller": "src/" } },
"require": {
"atelierspierrot/assets-manager": "1.*",
"atelierspierrot/templatengine": "1.*",
"composer-plugin-api": "1.0.0"
},
"require-dev": {
"composer/composer": "1.*@dev"
},
"scripts": {
"post-autoload-dump": "\\CarteBlancheInstaller\\CarteBlancheInstaller::postAutoloadDump"
},
"minimum-stability": "dev",
"extra": {
"class": "\\CarteBlancheInstaller\\Composer\\CarteBlancheInstallerPlugin",
"assets-config-class": "\\CarteBlancheInstaller\\CarteBlancheConfig",
"assets-package-installer-class": "\\CarteBlancheInstaller\\CarteBlancheInstaller",
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}