-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathcomposer.json
46 lines (45 loc) · 859 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
43
44
45
46
{
"name": "sbamtr/laravel-source-encrypter",
"keywords": [
"laravel",
"lumen",
"source",
"encrypt",
"encryption",
"encrypter",
"encryptor",
"phpBolt",
"ionCube"
],
"type": "library",
"require": {
"php": ">=7.2.5",
"illuminate/console": "^6|^7|^8|^9|^10",
"illuminate/support": "^6|^7|^8|^9|^10",
"ext-bolt": "*"
},
"description": "Laravel Source Encrypter",
"license": "MIT",
"authors": [
{
"name": "Siavash Bamshadnia",
"email": "sbamtr@gmail.com"
}
],
"autoload": {
"psr-4": {
"sbamtr\\LaravelSourceEncrypter\\": "src"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"sbamtr\\LaravelSourceEncrypter\\SourceEncryptServiceProvider"
]
}
}
}