forked from php-tuf/composer-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.73 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.73 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
{
"name": "php-tuf/composer-integration",
"description": "Secures Composer downloads with PHP-TUF.",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Adam Globus-Hoenich",
"email": "adam@phenaproxima.net"
},
{
"name": "Ted Bowman",
"email": "tedbow@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"composer-plugin-api": "^2.6",
"php-tuf/php-tuf": "^0.1.7",
"guzzlehttp/psr7": "^2.4"
},
"autoload": {
"psr-4": {
"Tuf\\ComposerIntegration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tuf\\ComposerIntegration\\Tests\\": "tests/",
"Tuf\\Tests\\": "vendor/php-tuf/php-tuf/tests/"
}
},
"extra": {
"class": "Tuf\\ComposerIntegration\\Plugin",
"plugin-modifies-downloads": true
},
"require-dev": {
"composer/composer": "^2.9",
"phpunit/phpunit": "^9.5",
"symfony/process": "^6",
"dms/phpunit-arraysubset-asserts": "^0.5.0",
"phpstan/phpstan": "^2.1",
"squizlabs/php_codesniffer": "^4.0",
"slevomat/coding-standard": "^8.28"
},
"scripts": {
"coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-text --color=always --testdox"
],
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpstan": "phpstan",
"test": [
"phpunit ./tests --debug"
],
"lint": "find src -name '*.php' -exec php -l {} \\;"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}