forked from coenjacobs/mozart
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
73 lines (73 loc) · 1.9 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "brianhenryie/strauss",
"description": "Composes all dependencies as a package inside a WordPress plugin",
"authors": [
{
"name": "Brian Henry",
"email": "BrianHenryIE@gmail.com"
},
{
"name": "Coen Jacobs",
"email": "coenjacobs@gmail.com"
}
],
"bin": ["bin/strauss"],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"require": {
"composer/composer": "*",
"json-mapper/json-mapper": "^2.2",
"symfony/console": "^4|^5|^6|^7",
"symfony/finder": "^4|^5|^6|^7",
"league/flysystem": "^2.1|^3.0"
},
"autoload": {
"psr-4": {
"BrianHenryIE\\Strauss\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrianHenryIE\\Strauss\\Tests\\": "tests/",
"BrianHenryIE\\Strauss\\": "tests/"
}
},
"require-dev": {
"brianhenryie/php-diff-test": "dev-master",
"clue/phar-composer": "^1.2",
"ext-json": "*",
"jaschilz/php-coverage-badger": "^2.0",
"mheap/phpunit-github-actions-printer": "^1.4",
"php": "^7.4|^8.0",
"phpunit/phpunit": "^9|^10",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.10",
"mockery/mockery": "^1.6"
},
"scripts": {
"cs": [
"phpcs",
"phpstan"
],
"cs-fix": [
"phpcbf || true",
"@cs"
],
"test": [
"phpunit"
],
"test-coverage": [
"phpunit --coverage-text --coverage-php tests/reports/phpunit.cov"
]
},
"replace":{
"coenjacobs/mozart": "*"
},
"repositories": {
"brianhenryie/php-diff-test": {
"type": "git",
"url": "https://github.com/brianhenryie/php-diff-test"
}
}
}