-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 978 Bytes
/
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
{
"name": "pitchart/phlunit",
"description": "Fluent assertions for PHP",
"keywords": ["phpunit", "tdd", "fluent", "testing", "assertions"],
"type": "library",
"require": {
"phpunit/phpunit": "~8.5 || ^9",
"phpcollection/phpcollection": "^0.5.0",
"psr/http-message": "^1.0",
"pitchart/transformer": "^1.6",
"justinrainbow/json-schema": "^5.2",
"openlss/lib-array2xml": "^1.0"
},
"autoload": {
"psr-4": {
"Pitchart\\Phlunit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Pitchart\\Phlunit\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Julien VITTE",
"email": "vitte.julien@gmail.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"guzzlehttp/psr7": "^1.7",
"vimeo/psalm": "4.4"
}
}