-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
36 lines (36 loc) · 954 Bytes
/
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
{
"name": "aura/installer-system",
"version": "1.0.2",
"type": "composer-installer",
"license": "BSD-2-Clause",
"description": "Installs Aura packages to the Aura system \"package\" directory.",
"replace" : {
"aura/installer-default" : "*"
},
"minimum-stability": "dev",
"keywords": ["aura", "installer"],
"authors": [
{
"name": "Kyle Robinson Young",
"email": "[email protected]",
"homepage": "https://github.com/shama"
},
{
"name": "Paul M. Jones",
"email": "[email protected]",
"homepage": "http://paul-m-jones.com"
}
],
"require-dev": {
"composer/composer": "1.0.*",
"mikey179/vfsStream": "1.1.*"
},
"autoload": {
"psr-0": {
"Aura\\Composer\\": "src/"
}
},
"extra" : {
"class" : "Aura\\Composer\\SystemInstaller"
}
}