-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.1 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
{
"name": "terremoth/maxy",
"type": "library",
"license": "GPL-3.0-or-later",
"description": "PHP Library to deal with mathematical matrices",
"keywords": [
"framework",
"library",
"linear algebra",
"matrix",
"algebra"
],
"authors": [
{
"name": "terremoth",
"email": "dutr4@outlook.com"
}
],
"require": {
"ext-bcmath": "*",
"ext-json": "*",
"php": ">=8.1"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Maxy\\": "src/",
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^5.15",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"fix": "php vendor/bin/phpcbf -w --tab-width=4 src/",
"lint": "php vendor/bin/phpcs src/",
"analyze": "php vendor/bin/psalm --shepherd --no-cache --show-info=true src/",
"test": "phpunit tests/",
"ci": [
"@composer lint",
"@composer analyze",
"@composer test"
],
"build": [
"@composer fix",
"@composer lint",
"@composer analyze",
"@composer test"
]
}
}