forked from agentsib/crypto-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 853 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
{
"name": "agentsib/crypto-bundle",
"description": "Symfony 6 bundle for encrypt data with openssl library",
"keywords": ["encrypt", "decrypt", "doctrine", "aes256"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ilya Kovalenko",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"AgentSIB\\CryptoBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AgentSIB\\CryptoBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ext-openssl": "*",
"symfony/framework-bundle": "^6.0",
"symfony/yaml": "^6.0",
"doctrine/orm": "^2.0",
"doctrine/doctrine-bundle": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}