-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
51 lines (51 loc) · 1.39 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
{
"name": "mnocon/composer-checkout",
"description": "Tool to easily checkout dependencies",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Marek Nocoń",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"MarekNocon\\ComposerCheckout\\": "src/",
"MarekNocon\\ComposerCheckout\\Tests\\": "tests/"}
},
"require": {
"php": "^7.1 || ^8.0",
"composer-plugin-api": "^2.0",
"ext-json": "*"
},
"require-dev": {
"composer/composer": "^2.0",
"ezsystems/ezplatform-code-style": "^1.0@dev",
"friendsofphp/php-cs-fixer": "^2.16.0",
"phpstan/phpstan": "~0.12",
"phpunit/phpunit": "^7.5"
},
"scripts": {
"phpstan": "phpstan analyse -c phpstan.neon",
"phpstan-baseline": "phpstan analyse -c phpstan.neon --generate-baseline",
"fix-cs": "php-cs-fixer fix -v --show-progress=dots",
"test": "phpunit -c phpunit.xml",
"test-all": [
"@phpstan",
"@test",
"@fix-cs"
]
},
"extra": {
"class": "MarekNocon\\ComposerCheckout\\Plugin\\ComposerCheckoutPlugin",
"branch-alias": {
"dev-main": "0.1.x-dev"
}
},
"config": {
"platform": {
"php": "7.1"
}
}
}