forked from php-tuf/php-tuf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.43 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "php-tuf/php-tuf",
"description": "PHP implementation of The Update Framework (TUF)",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/phpunit-bridge": "^5",
"squizlabs/php_codesniffer": "^3.7",
"slevomat/coding-standard": "^8.2",
"symfony/filesystem": "^6.4"
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-json": "*",
"paragonie/sodium_compat": "^1.13",
"symfony/validator": "^6.1 || ^7",
"guzzlehttp/psr7": "^2.4",
"guzzlehttp/promises": "^2"
},
"suggest": {
"ext-sodium": "Provides faster verification of updates"
},
"autoload": {
"psr-4": {
"Tuf\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tuf\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-text --color=always --testdox"
],
"fixtures": [
"\\Tuf\\Tests\\FixtureGenerator::generateAll"
],
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"test": "phpunit --testdox",
"lint": "find src -name '*.php' -exec php -l {} \\;"
}
}