forked from php-tuf/php-tuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.66 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"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",
"phpspec/prophecy-phpunit": "^2",
"guzzlehttp/guzzle": "^6.5 || ^7.2",
"phpspec/prophecy": "^1.16"
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8",
"ext-json": "*",
"paragonie/sodium_compat": "^1.13",
"symfony/validator": "^4.4 || ^5 || ^6",
"myclabs/deep-copy": "^1.10.2",
"psr/http-message": "^1",
"guzzlehttp/psr7": "^2.4"
},
"suggest": {
"ext-sodium": "Provides faster verification of updates",
"guzzlehttp/guzzle": "Required package if GuzzleFileFetcher shall be used"
},
"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": [
"pipenv install",
"pipenv run python generate_fixtures.py"
],
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"test": "phpunit --testdox",
"lint": "find src -name '*.php' -exec php -l {} \\;"
}
}