-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.06 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
{
"name": "stagerightlabs/phpxdr",
"description": "Encode and Decode XDR strings with PHP",
"keywords": [
"XDR",
"RFC-4506"
],
"homepage": "https://github.com/stagerightlabs/phpxdr",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Ryan Durham",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php-64bit": "^8.0"
},
"require-dev": {
"brick/math": "^0.9.3",
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"StageRightLabs\\PhpXdr\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"StageRightLabs\\PhpXdr\\Tests\\": "tests"
}
},
"scripts": {
"format": "php-cs-fixer fix src --rules=@PSR12",
"phpstan": "phpstan analyse -l 9 src",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}