forked from emolifeconnect/onecommunity-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 805 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
{
"name": "mhphilip/onecommunity-php",
"type": "library",
"description": "PHP client to access the One Community API. w/ Laravel 11 support",
"keywords": [
"onecommunity",
"api"
],
"homepage": "https://github.com/mhphilip/onecommunity-php",
"license": "MIT",
"authors": [
{
"name": "Jarno van Leeuwen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"OneCommunity\\": "src/"
}
},
"require": {
"php": "^7.2|^8.0",
"mhphilip/jwtapi": "^0.4.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"require-dev": {
"symfony/var-dumper": "^4.1"
}
}