-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
28 lines (28 loc) · 895 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
{
"name": "nzo/url-encryptor-bundle",
"type": "symfony-bundle",
"description": "The NzoUrlEncryptorBundle is a Symfony Bundle used to Encrypt and Decrypt data and variables in the Web application or passed through URL",
"keywords": ["Link", "url", "encryption", "decryption", "encrypt", "decrypt", "id", "data", "variable", "security", "AES"],
"license": "MIT",
"authors": [
{
"name": "Ala Eddine Khefifi",
"email": "alakfpro@gmail.com"
}
],
"autoload": {
"psr-4": { "Nzo\\UrlEncryptorBundle\\": "" }
},
"require": {
"php": ">=7.1.3",
"ext-openssl": "*",
"doctrine/annotations": "^1.7|^2.0",
"symfony/framework-bundle": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"config": {
"sort-packages": true
}
}