Skip to content

Commit 6a26176

Browse files
Update composer.json
1 parent d1d0157 commit 6a26176

File tree

1 file changed

+103
-35
lines changed

1 file changed

+103
-35
lines changed

composer.json

Lines changed: 103 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,106 @@
11
{
2-
"name": "michaeldegroot/doctrine-encrypt-bundle",
3-
"type": "library",
4-
"keywords": ["doctrine", "symfony", "halite", "defuse", "encrypt", "decrypt"],
5-
"license": "MIT",
6-
"description": "Encrypted symfony entity's by verified and standardized libraries",
7-
"require": {
8-
"php": "^7.2|^8.0",
9-
"paragonie/halite": "^4.6",
10-
"paragonie/sodium_compat": "^1.5",
11-
"doctrine/orm": "^2.5",
12-
"symfony/property-access": "^4.1|^5.0",
13-
"symfony/dependency-injection": "^4.1|^5.0",
14-
"symfony/yaml": "^4.1|^5.0",
15-
"symfony/http-kernel": "^4.1|^5.0",
16-
"symfony/config": "^4.1|^5.0"
17-
},
18-
"require-dev": {
19-
"phpunit/phpunit": "^8.0|^9.0",
20-
"defuse/php-encryption": "^2.1"
21-
},
22-
"suggest": {
23-
"defuse/php-encryption": "Alternative for halite for use with older php-versions",
24-
"ext-sodium": "Required to use halite encryption library."
25-
},
26-
"autoload": {
27-
"psr-4": { "Ambta\\DoctrineEncryptBundle\\": "src/" }
28-
},
29-
"autoload-dev": {
30-
"psr-4": { "Ambta\\DoctrineEncryptBundle\\Tests\\": "Tests/" }
31-
},
32-
"authors": [
33-
{
34-
"name": "GiveMeAllYourCats",
35-
"email": "[email protected]"
2+
"name": "absolute-quantum/doctrine-encrypt-bundle",
3+
"type": "library",
4+
"keywords": ["doctrine", "symfony", "halite", "defuse", "encrypt", "decrypt"],
5+
"license": "MIT",
6+
"description": "Encrypted symfony entity's by verified and standardized libraries",
7+
"require": {
8+
"php": "^7.2|^8.0",
9+
"paragonie/halite": "^4.6",
10+
"paragonie/sodium_compat": "^1.5",
11+
"doctrine/orm": "^2.5",
12+
"symfony/property-access": "^4.1|^5.0",
13+
"symfony/dependency-injection": "^4.1|^5.0",
14+
"symfony/yaml": "^4.1|^5.0",
15+
"symfony/http-kernel": "^4.1|^5.0",
16+
"symfony/config": "^4.1|^5.0"
17+
},
18+
"require-dev": {
19+
"phpunit/phpunit": "^8.0|^9.0",
20+
"defuse/php-encryption": "^2.1"
21+
},
22+
"suggest": {
23+
"defuse/php-encryption": "Alternative for halite for use with older php-versions",
24+
"ext-sodium": "Required to use halite encryption library."
25+
},
26+
"autoload": {
27+
"psr-4": {
28+
"Ambta\\DoctrineEncryptBundle\\": "src/"
29+
}
30+
},
31+
"autoload-dev": {
32+
"psr-4": {
33+
"Ambta\\DoctrineEncryptBundle\\Tests\\": "Tests/"
34+
}
35+
}
36+
}{
37+
"name": "absolute-quantum/doctrine-encrypt-bundle",
38+
"type": "library",
39+
"keywords": ["doctrine", "symfony", "halite", "defuse", "encrypt", "decrypt"],
40+
"license": "MIT",
41+
"description": "Encrypted symfony entity's by verified and standardized libraries",
42+
"require": {
43+
"php": "^7.2|^8.0",
44+
"paragonie/halite": "^4.6",
45+
"paragonie/sodium_compat": "^1.5",
46+
"doctrine/orm": "^2.5",
47+
"symfony/property-access": "^4.1|^5.0",
48+
"symfony/dependency-injection": "^4.1|^5.0",
49+
"symfony/yaml": "^4.1|^5.0",
50+
"symfony/http-kernel": "^4.1|^5.0",
51+
"symfony/config": "^4.1|^5.0"
52+
},
53+
"require-dev": {
54+
"phpunit/phpunit": "^8.0|^9.0",
55+
"defuse/php-encryption": "^2.1"
56+
},
57+
"suggest": {
58+
"defuse/php-encryption": "Alternative for halite for use with older php-versions",
59+
"ext-sodium": "Required to use halite encryption library."
60+
},
61+
"autoload": {
62+
"psr-4": {
63+
"Ambta\\DoctrineEncryptBundle\\": "src/"
64+
}
65+
},
66+
"autoload-dev": {
67+
"psr-4": {
68+
"Ambta\\DoctrineEncryptBundle\\Tests\\": "Tests/"
69+
}
70+
}
71+
}
72+
"name": "absolute-quantum/doctrine-encrypt-bundle",
73+
"type": "library",
74+
"keywords": ["doctrine", "symfony", "halite", "defuse", "encrypt", "decrypt"],
75+
"license": "MIT",
76+
"description": "Encrypted symfony entity's by verified and standardized libraries",
77+
"require": {
78+
"php": "^7.2|^8.0",
79+
"paragonie/halite": "^4.6",
80+
"paragonie/sodium_compat": "^1.5",
81+
"doctrine/orm": "^2.5",
82+
"symfony/property-access": "^4.1|^5.0",
83+
"symfony/dependency-injection": "^4.1|^5.0",
84+
"symfony/yaml": "^4.1|^5.0",
85+
"symfony/http-kernel": "^4.1|^5.0",
86+
"symfony/config": "^4.1|^5.0"
87+
},
88+
"require-dev": {
89+
"phpunit/phpunit": "^8.0|^9.0",
90+
"defuse/php-encryption": "^2.1"
91+
},
92+
"suggest": {
93+
"defuse/php-encryption": "Alternative for halite for use with older php-versions",
94+
"ext-sodium": "Required to use halite encryption library."
95+
},
96+
"autoload": {
97+
"psr-4": {
98+
"Ambta\\DoctrineEncryptBundle\\": "src/"
99+
}
100+
},
101+
"autoload-dev": {
102+
"psr-4": {
103+
"Ambta\\DoctrineEncryptBundle\\Tests\\": "Tests/"
104+
}
36105
}
37-
]
38106
}

0 commit comments

Comments
 (0)