-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.67 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.67 KB
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
52
53
54
55
56
57
{
"name": "pentagonalproject/rest-production",
"description": "Project API Handler For Production",
"type": "project",
"require": {
"php": ">= 7",
"ext-PDO": "*",
"ext-pcre": "*",
"apatis/array-storage": "^1",
"apatis/transporter": "dev-master",
"aura/session": "^2.1",
"doctrine/dbal": "^2",
"filp/whoops": "^2",
"guzzlehttp/guzzle": "~6",
"illuminate/database": "~5.4",
"illuminate/events": "~5.4",
"illuminate/pagination": "~5.4",
"monolog/monolog": "~1",
"phpfastcache/phpfastcache": "~5",
"pentagonal/phpass": "^1",
"pentagonal/simple_encrypt": "^1",
"slim/slim": "^3"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*",
"phpunit/phpunit": "^5",
"satooshi/php-coveralls": "^1"
},
"suggest": {
"ext-curl": "To allow using Guzzle HTTP.",
"ext-openssl": "For better Encryption process on pentagonal/simple_encrypt",
"ext-mbstring": "For compatibility any package.",
"ext-mcrypt": "For compatibility any package.",
"ext-iconv": "For better sanitation characters & text output."
},
"license": "MIT",
"authors": [
{
"name": "pentagonal",
"email": "org@pentagonal.org",
"role": "developer"
},
{
"name": "zahroul ulum",
"email": "zahroul.ulum@gmail.com",
"role": "developer"
}
],
"autoload" : {
"psr-4" : {
"\\PentagonalProject\\App\\Rest\\": "App/Core/"
},
"classmap": [
"App/Core/"
]
}
}