-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
37 lines (37 loc) · 1004 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": "anteris-dev/data-transfer-object-factory",
"description": "Gives an easy-to-use API for mocking Data Transfer Objects.",
"license": "MIT",
"authors": [
{
"name": "Aidan Casey",
"email": "aidan.casey@anteris.com"
}
],
"autoload": {
"psr-4": {
"Anteris\\DataTransferObjectFactory\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Anteris\\Tests\\DataTransferObjectFactory\\": "./tests"
}
},
"require": {
"anteris-dev/faker-map": "^2.0",
"fakerphp/faker": "^1.0",
"php": "^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^9.0",
"spatie/data-transfer-object": "^3.0",
"vimeo/psalm": "^4.0"
},
"scripts": {
"fix": "./vendor/bin/php-cs-fixer fix --allow-risky=yes",
"psalm": "./vendor/bin/psalm",
"test": "./vendor/bin/phpunit"
}
}