This repository was archived by the owner on Jul 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.23 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.23 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
{
"name": "picodexter/parameter-encryption-zend-crypt-bundle",
"type": "symfony-bundle",
"description": "Symfony PcdxParameterEncryptionBundle add-on for zendframework/zend-crypt",
"keywords": ["config", "parameter", "encryption", "zendframework", "zend-crypt"],
"homepage": "https://picodexter.io/",
"license": "MIT",
"authors": [
{
"name": "picodexter",
"homepage": "https://picodexter.io/"
}
],
"require": {
"php": "^5.6 || ^7.0",
"picodexter/parameter-encryption-bundle": "^1.0",
"symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0",
"zendframework/zend-crypt": "^2.0 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Picodexter\\ParameterEncryptionZendCryptBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"scripts": {
"cs": "php-cs-fixer fix -v --dry-run --diff",
"cs-nocache": "php-cs-fixer fix -v --dry-run --diff --using-cache=no",
"test": "phpunit -v",
"test-coverage": "phpunit -v --coverage-text"
},
"abandoned": true
}