-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
executable file
·47 lines (47 loc) · 1.37 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
42
43
44
45
46
47
{
"name": "flexyourrights/openpolice",
"description": "The purpose of the Open Police database is to maintain the data we collect from users and to supply information that supports the work of police oversight professionals throughout the United States.",
"keywords": [
"Open Police",
"Open Police Complaints",
"Flex Your Rights",
"survey",
"misconduct",
"compliments",
"commendations",
"police departments",
"oversight",
"accountability",
"Laravel",
"Survloop"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Morgan Lesko",
"homepage": "https://github.com/flexyourrights/openpolice",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"rockhopsoft/survloop": "0.*",
"flexyourrights/openpolice-departments": "0.*",
"flexyourrights/openpolice-website": "0.*"
},
"autoload": {
"psr-4": {
"FlexYourRights\\OpenPolice\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"FlexYourRights\\OpenPolice\\OpenPoliceServiceProvider"
],
"aliases": {
"OpenPolice": "FlexYourRights\\OpenPolice\\OpenPoliceFacade"
}
}
}
}