-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 973 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 973 Bytes
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": "sixty-nine/php-data-types",
"description": "Advanced data types for PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniele Barsotti",
"email": "github@sixty-nine.ch"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"SixtyNine\\DataTypes\\": "src/SixtyNine/DataTypes"
}
},
"require": {
"php": ">=7.1",
"doctrine/collections": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"friendsofphp/php-cs-fixer": "^2.10",
"phpmd/phpmd" : "@stable",
"webmozart/assert": "^1.2"
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"lint": "bin/php-cs-fixer fix src/ --rules=@PSR2 --dry-run",
"lint:fix": "php-cs-fixer fix src/ --rules=@PSR2",
"mess": "bin/phpmd src/ text ./phpmd.xml",
"test": "bin/phpunit -c tests"
}
}