-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
47 lines (47 loc) · 1.17 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
{
"name": "php-tuf/composer-integration",
"description": "Proof of concept of securing Composer downloads with PHP-TUF.",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Mike Baynton",
"email": "[email protected]"
},
{
"name": "Adam Globus-Hoenich",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"composer-plugin-api": "^2.6",
"php-tuf/php-tuf": "0.1.6",
"guzzlehttp/psr7": "^2.4"
},
"autoload": {
"psr-4": {
"Tuf\\ComposerIntegration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tuf\\ComposerIntegration\\Tests\\": "tests/"
}
},
"extra": {
"class": "Tuf\\ComposerIntegration\\Plugin",
"plugin-modifies-downloads": true
},
"require-dev": {
"composer/composer": "^2.1",
"phpunit/phpunit": "^9.5",
"symfony/process": "^6",
"dms/phpunit-arraysubset-asserts": "^0.5.0"
},
"scripts": {
"test": [
"phpunit ./tests --debug"
]
}
}