-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"name": "agentsib/crypto-bundle",
"description": "Symfony 6/7 bundle for encrypt data with openssl library",
"keywords": ["encrypt", "decrypt", "doctrine", "aes256"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ilya Kovalenko",
"email": "agentsib@gmail.com"
}
],
"autoload": {
"psr-4": {
"AgentSIB\\CryptoBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AgentSIB\\CryptoBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ext-openssl": "*",
"ext-dom": "*",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"doctrine/orm": "^2.17 || ^3.0",
"doctrine/doctrine-bundle": "^2.13 || ^3.0",
"doctrine/persistence": "^3.0 || ^4",
"symfony/dependency-injection": "^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0"
}
}