-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.08 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
{
"name": "verzth/tcx",
"description": "TCX - Authentication Module for Client-Server Transaction (One Way - Two Way)",
"keywords": ["laravel", "tcx", "owtc", "twtc", "authentication"],
"license": "MIT",
"type": "library",
"require": {
"php": "^7.0",
"illuminate/support": "^5.6|^6.0|^7.0",
"illuminate/http": "^5.6|^6.0|^7.0",
"illuminate/database": "^5.6|^6.0|^7.0",
"illuminate/routing": "^5.6|^6.0|^7.0",
"symfony/http-foundation": "^4|^5.0",
"symfony/http-kernel": "^4|^5.0"
},
"authors": [
{
"name": "Silverius",
"email": "silveriuz16@gmail.com"
}
],
"extra": {
"laravel": {
"providers": [
"Verzth\\TCX\\TCXServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Verzth\\TCX\\": "src/"
},
"files": [
"src/Helpers/tcx.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"fzaninotto/faker": "^1.8"
}
}