-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.91 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
{
"name": "cypresslab/patch-manager",
"description": "A library to manage patch requests",
"keywords": ["rest", "patch", "api", "symfony", "bundle"],
"require": {
"php": "^8.0",
"ext-json": "*",
"symfony/property-access": "^4.0 || ^5.0 || ^6.0",
"symfony/http-foundation": "^4.0 || ^5.0 || ^6.0",
"symfony/options-resolver": "^4.0 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.0 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.0 || ^5.0 || ^6.0",
"symfony/config": "^4.0 || ^5.0 || ^6.0",
"symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
"mattiabasone/phpcollection": "^0.7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1",
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.4",
"yohang/finite": "^1.2",
"doctrine/orm": "^2.9",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Cypress\\PatchManager\\": "src/PatchManager/",
"Cypress\\PatchManager\\Tests\\": "tests/PatchManager/"
}
},
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Matteo Giachino",
"email": "[email protected]"
}
],
"config": {
"bin-dir":"bin"
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"suggest": {
"yohang/finite": "PatchManager with op 'state_machine'",
"doctrine/orm": "PatchManager with op 'data' and doctrine integration"
},
"scripts": {
"analyse": "bin/phpstan analyse -c phpstan.neon -vvv --ansi",
"format": "bin/php-cs-fixer fix --show-progress=dots --verbose --diff",
"test": "@php bin/phpunit"
}
}