Skip to content

Commit

Permalink
Update composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
absolute-quantum authored Nov 20, 2021
1 parent d1d0157 commit 6a26176
Showing 1 changed file with 103 additions and 35 deletions.
138 changes: 103 additions & 35 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,106 @@
{
"name": "michaeldegroot/doctrine-encrypt-bundle",
"type": "library",
"keywords": ["doctrine", "symfony", "halite", "defuse", "encrypt", "decrypt"],
"license": "MIT",
"description": "Encrypted symfony entity's by verified and standardized libraries",
"require": {
"php": "^7.2|^8.0",
"paragonie/halite": "^4.6",
"paragonie/sodium_compat": "^1.5",
"doctrine/orm": "^2.5",
"symfony/property-access": "^4.1|^5.0",
"symfony/dependency-injection": "^4.1|^5.0",
"symfony/yaml": "^4.1|^5.0",
"symfony/http-kernel": "^4.1|^5.0",
"symfony/config": "^4.1|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"defuse/php-encryption": "^2.1"
},
"suggest": {
"defuse/php-encryption": "Alternative for halite for use with older php-versions",
"ext-sodium": "Required to use halite encryption library."
},
"autoload": {
"psr-4": { "Ambta\\DoctrineEncryptBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ambta\\DoctrineEncryptBundle\\Tests\\": "Tests/" }
},
"authors": [
{
"name": "GiveMeAllYourCats",
"email": "[email protected]"
"name": "absolute-quantum/doctrine-encrypt-bundle",
"type": "library",
"keywords": ["doctrine", "symfony", "halite", "defuse", "encrypt", "decrypt"],
"license": "MIT",
"description": "Encrypted symfony entity's by verified and standardized libraries",
"require": {
"php": "^7.2|^8.0",
"paragonie/halite": "^4.6",
"paragonie/sodium_compat": "^1.5",
"doctrine/orm": "^2.5",
"symfony/property-access": "^4.1|^5.0",
"symfony/dependency-injection": "^4.1|^5.0",
"symfony/yaml": "^4.1|^5.0",
"symfony/http-kernel": "^4.1|^5.0",
"symfony/config": "^4.1|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"defuse/php-encryption": "^2.1"
},
"suggest": {
"defuse/php-encryption": "Alternative for halite for use with older php-versions",
"ext-sodium": "Required to use halite encryption library."
},
"autoload": {
"psr-4": {
"Ambta\\DoctrineEncryptBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ambta\\DoctrineEncryptBundle\\Tests\\": "Tests/"
}
}
}{
"name": "absolute-quantum/doctrine-encrypt-bundle",
"type": "library",
"keywords": ["doctrine", "symfony", "halite", "defuse", "encrypt", "decrypt"],
"license": "MIT",
"description": "Encrypted symfony entity's by verified and standardized libraries",
"require": {
"php": "^7.2|^8.0",
"paragonie/halite": "^4.6",
"paragonie/sodium_compat": "^1.5",
"doctrine/orm": "^2.5",
"symfony/property-access": "^4.1|^5.0",
"symfony/dependency-injection": "^4.1|^5.0",
"symfony/yaml": "^4.1|^5.0",
"symfony/http-kernel": "^4.1|^5.0",
"symfony/config": "^4.1|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"defuse/php-encryption": "^2.1"
},
"suggest": {
"defuse/php-encryption": "Alternative for halite for use with older php-versions",
"ext-sodium": "Required to use halite encryption library."
},
"autoload": {
"psr-4": {
"Ambta\\DoctrineEncryptBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ambta\\DoctrineEncryptBundle\\Tests\\": "Tests/"
}
}
}
"name": "absolute-quantum/doctrine-encrypt-bundle",
"type": "library",
"keywords": ["doctrine", "symfony", "halite", "defuse", "encrypt", "decrypt"],
"license": "MIT",
"description": "Encrypted symfony entity's by verified and standardized libraries",
"require": {
"php": "^7.2|^8.0",
"paragonie/halite": "^4.6",
"paragonie/sodium_compat": "^1.5",
"doctrine/orm": "^2.5",
"symfony/property-access": "^4.1|^5.0",
"symfony/dependency-injection": "^4.1|^5.0",
"symfony/yaml": "^4.1|^5.0",
"symfony/http-kernel": "^4.1|^5.0",
"symfony/config": "^4.1|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"defuse/php-encryption": "^2.1"
},
"suggest": {
"defuse/php-encryption": "Alternative for halite for use with older php-versions",
"ext-sodium": "Required to use halite encryption library."
},
"autoload": {
"psr-4": {
"Ambta\\DoctrineEncryptBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ambta\\DoctrineEncryptBundle\\Tests\\": "Tests/"
}
}
]
}

0 comments on commit 6a26176

Please sign in to comment.