-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.24 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
48
49
50
51
{
"name": "moproteam/mopro-survey-client-php",
"type": "library",
"description": "Automatically send surveys to your customers via text message and collect reviews on all the major review sites.",
"keywords": [
"Mopro",
"Reviews360",
"Reviews",
"Survey"
],
"homepage": "https://github.com/MoproTeam/mopro-survey-client-php",
"license": "MIT",
"authors": [
{
"name": "Gaurang Jadia",
"email": "[email protected]",
"homepage": "https://gaurangjadia.com/",
"role": "Senior Software Developer"
}
],
"require": {
"php": ">= 5.4.0"
},
"require-dev": {
"apache/log4php": "2.3.0",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"classmap": [
"src"
],
"files": [
"src/ApiClient.php"
]
},
"autoload-dev": {
"classmap": [
"src",
"tests"
]
},
"scripts": {
"test": "vendor/bin/phpunit ./tests/sendSurvey.php",
"testVerbose": "@test -vvv"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}