-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
53 lines (53 loc) · 1.33 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
{
"name": "ffraenz/private-composer-installer",
"description": "A composer install helper for private packages",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Fränz Friederes",
"email": "[email protected]",
"homepage": "https://fraenz.frieder.es"
}
],
"keywords": [
"composer",
"plugin",
"env",
"private",
"wordpress",
"wp"
],
"require": {
"php": "^7.1 || ^8.0",
"composer-plugin-api": "^1.0 || ^2.0",
"vlucas/phpdotenv": "^4.1 || ^5.2"
},
"require-dev": {
"composer/composer": "^1.0 || ^2.0",
"laminas/laminas-coding-standard": "^2.0",
"symfony/phpunit-bridge": "^5.1",
"symfony/process": "^4.4 || ^5.1"
},
"scripts": {
"test": [
"@cs-check",
"@test-unit",
"@test-integration"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test-unit": "vendor/bin/simple-phpunit --testsuite unit --verbose",
"test-unit-coverage": "vendor/bin/simple-phpunit --testsuite unit --verbose --coverage-clover clover.xml",
"test-integration": "vendor/bin/simple-phpunit --testsuite integration --verbose"
},
"autoload": {
"psr-4": {
"FFraenz\\PrivateComposerInstaller\\": "src"
}
},
"extra": {
"class": "FFraenz\\PrivateComposerInstaller\\Plugin",
"plugin-modifies-downloads": true
}
}