-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.15 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
{
"name": "rexlabs/data-transfer-object",
"type": "library",
"description": "Data transfer objects with attributes",
"keywords": [
"rexlabs",
"data-transfer-object"
],
"homepage": "https://github.com/rexlabs/data-transfer-object",
"license": "MIT",
"authors": [
{
"name": "Lachlan Krautz",
"email": "lachlan.krautz@rexsoftware.com.au",
"homepage": "https://github.com/lachlankrautz",
"role": "Developer"
}
],
"require": {
"php": ">=7.2 <8.5",
"ext-json": "*"
},
"require-dev": {
"fakerphp/faker": "^1.0",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"files": [
"src/Flags.php"
],
"psr-4": {
"Rexlabs\\DataTransferObject\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rexlabs\\DataTransferObject\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit --color=always",
"check-style": "phpcs -p -s --cache --colors src tests",
"fix-style": "phpcbf -p -s --colors src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}