-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 2.49 KB
/
composer.json
File metadata and controls
86 lines (86 loc) · 2.49 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "initphp/encryption",
"description": "Secure, modern symmetric encryption for PHP built on top of OpenSSL and libsodium.",
"type": "library",
"license": "MIT",
"keywords": [
"encryption",
"decryption",
"cryptography",
"openssl",
"sodium",
"libsodium",
"aes",
"security",
"initphp"
],
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "info@muhammetsafak.com.tr",
"role": "Developer",
"homepage": "https://www.muhammetsafak.com.tr"
}
],
"support": {
"issues": "https://github.com/InitPHP/Encryption/issues",
"source": "https://github.com/InitPHP/Encryption",
"security": "https://github.com/InitPHP/Encryption/security/policy"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.59"
},
"suggest": {
"ext-openssl": "Required by the OpenSSL handler.",
"ext-sodium": "Required by the Sodium handler."
},
"autoload": {
"psr-4": {
"InitPHP\\Encryption\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InitPHP\\Encryption\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html build/coverage --coverage-text",
"phpstan": "phpstan analyse --memory-limit=512M",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"qa": [
"@cs-check",
"@phpstan",
"@test"
]
},
"scripts-descriptions": {
"test": "Run the PHPUnit test suite.",
"test-coverage": "Run PHPUnit with HTML + text coverage reports.",
"phpstan": "Run PHPStan static analysis.",
"cs-check": "Check coding style (PSR-12) without changing files.",
"cs-fix": "Apply coding style fixes in place.",
"qa": "Run cs-check, phpstan and tests in sequence."
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev",
"dev-2.x": "2.x-dev",
"dev-1.x": "1.x-dev"
}
}
}