-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 1.9 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 1.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "cybex/laravel-protector",
"description": "Protect Databases by generating Backups and Import those on non-productive Environments.",
"keywords": [
"cybex",
"laravel",
"database",
"backup",
"sync",
"encryption",
"protector"
],
"homepage": "https://github.com/cybex-gmbh/laravel-protector",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Marco Szulik",
"email": "webdevelopment@cybex-online.com",
"role": "Developer"
},
{
"name": "Oliver Matla",
"email": "info@lupinitylabs.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-sodium": "*",
"guzzlehttp/guzzle": "^7.4",
"laravel/framework": "^9.0|^10.0|^11.0|^12.0",
"laravel/sanctum": "^3.2|^4.0"
},
"require-dev": {
"laravel/pint": "^1.17",
"laravel/sail": "^1.26",
"orchestra/testbench": "^7.0|^8.0|^9.0|^10",
"phpunit/phpunit": "^9.5|^10.5|^11.0"
},
"autoload": {
"psr-4": {
"Cybex\\Protector\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cybex\\Protector\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-postgres": "vendor/bin/phpunit -c phpunit-postgres.xml.dist"
},
"config": {
"sort-packages": true,
"audit": {
"block-insecure": false
}
},
"extra": {
"laravel": {
"providers": [
"Cybex\\Protector\\ProtectorServiceProvider"
],
"aliases": {
"Protector": "Cybex\\Protector\\ProtectorFacade"
}
}
}
}