-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
39 lines (39 loc) · 950 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
{
"name": "htmldriven/cors-proxy",
"description": "A simple proxy service for performing cross-domain AJAX requests.",
"keywords": [
"cors",
"proxy",
"cross-domain",
"htmldriven"
],
"license": "MIT",
"homepage": "https://www.htmldriven.com",
"authors": [
{
"name": "RebendaJiri",
"homepage": "https://www.htmldriven.com",
"email": "jiri.rebenda@htmldriven.com"
}
],
"type": "project",
"require": {
"php": ">=5.6.0",
"guzzlehttp/guzzle": "~3.8",
"dibi/dibi": "^3.1"
},
"require-dev": {
"nette/tester": "^1.6",
"squizlabs/php_codesniffer": "^3.1"
},
"autoload": {
"psr-4": {
"HtmlDriven\\CorsProxy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HtmlDriven\\CorsProxyTests\\": "tests/CorsProxyTests"
}
}
}