-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (41 loc) · 932 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
37
38
39
40
41
42
{
"name": "searchpe",
"description": "Consulta RUC, DNI - Perú",
"keywords": ["peru", "rest", "ruc", "dni", "graphql"],
"license": "MIT",
"authors": [
{
"name": "Alex Pariona",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"katzgrau/klogger": "^1.2",
"giansalex/peru-consult": "^4.0",
"tuupola/cors-middleware": "^0.9.2",
"webonyx/graphql-php": "^0.13.4"
},
"require-dev": {
"phpunit/phpunit": "^7",
"clue/block-react": "^1.3"
},
"autoload": {
"psr-4": {
"Peru\\Api\\": "src/app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout" : 0
},
"scripts": {
"test": "phpunit"
}
}