-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
45 lines (45 loc) · 1.32 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "joomla/crypt",
"type": "joomla-package",
"description": "Joomla Crypt Package",
"keywords": ["joomla", "framework", "crypt"],
"homepage": "https://github.com/joomla-framework/crypt",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1.0"
},
"require-dev": {
"defuse/php-encryption": "^2.0",
"paragonie/sodium_compat": "^1|^2",
"phpunit/phpunit": "^9.5.28",
"symfony/polyfill-util": "^1.0",
"symfony/phpunit-bridge": "^5.0",
"squizlabs/php_codesniffer": "~3.7.2",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phan/phan": "^5.4.2"
},
"suggest": {
"ext-openssl": "To use the OpenSSL cipher",
"ext-sodium": "To use the Sodium cipher",
"defuse/php-encryption": "To use Crypto cipher",
"paragonie/sodium_compat": "To use Sodium cipher if neither ext/sodium or ext/libsodium are available"
},
"autoload": {
"psr-4": {
"Joomla\\Crypt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Crypt\\Test\\": "Tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev",
"dev-3.x-dev": "3.0-dev"
}
}
}