-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
41 lines (41 loc) · 1.11 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
35
36
37
38
39
40
41
{
"name": "sonarsoftware/customer_portal",
"type": "project",
"description": "A customer portal for Sonar.",
"keywords": ["sonar","sonar software","sonar api","sonar software api","sonar customer portal"],
"homepage": "https://sonar.software",
"license": "MIT",
"authors": [
{
"name": "Simon Westlake",
"email": "[email protected]",
"homepage": "https://sonar.software",
"role": "Developer"
},
{
"name": "Devin Johnson",
"email": "[email protected]",
"homepage": "https://sonar.software",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"forum": "https://sonar.community"
},
"require": {
"php" : "^5.6.4 || ^7.0",
"league/climate": "^3.2"
},
"autoload": {
"psr-4" : {
"SonarSoftware\\CustomerPortal\\" : "src"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/SonarSoftware/customer_portal"
}
]
}