1{
2    "name": "robloach/component-installer",
3    "description": "Allows installation of Components via Composer.",
4    "type": "composer-plugin",
5    "license": "MIT",
6    "authors": [
7        {
8            "name": "Rob Loach",
9            "homepage": "http://robloach.net"
10        }
11    ],
12    "autoload": {
13        "psr-0": {
14            "ComponentInstaller": "src/"
15        }
16    },
17    "extra": {
18        "branch-alias": {
19            "dev-master": "1.0.x-dev"
20        },
21        "class": "ComponentInstaller\\ComponentInstallerPlugin"
22    },
23    "require": {
24        "php": ">=5.3.2",
25        "kriswallsmith/assetic": "1.*",
26        "composer-plugin-api": "^1.0"
27    },
28    "require-dev": {
29        "composer/composer": "1.*@alpha",
30        "phpunit/phpunit": "4.*"
31    },
32    "scripts": {
33        "test": "phpunit"
34    },
35    "archive": {
36        "exclude": [
37            "tests",
38            "phpunit.xml.dist",
39            ".travis.yml",
40            ".gitignore",
41            ".editorconfig"
42        ]
43    }
44}
45