forked from ambta/DoctrineEncryptBundle
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1d0157
commit 6a26176
Showing
1 changed file
with
103 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" | ||
} | ||
} | ||
] | ||
} |