-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 960 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 960 Bytes
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
{
"name": "discord-php/mls",
"description": "Production-grade MLS crypto adapters (HPKE/AEAD/signature) scaffold using libsodium and OpenSSL",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"MLSCore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MLSCore\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ext-sodium": "*",
"ext-openssl": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"laravel/pint": "^1.21",
"phpunit/phpunit": "^10.0",
"discord-php-helpers/rfc9420": "dev-master"
},
"scripts": {
"cs": "php-cs-fixer fix",
"cs-unsupported": "php-cs-fixer fix --allow-unsupported-php-version yes",
"pint": ["./vendor/bin/pint --config ./pint.json"],
"unit": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}