You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.2 KiB
68 lines
2.2 KiB
4 years ago
|
{
|
||
|
"name": "markbaker/matrix",
|
||
|
"type": "library",
|
||
|
"description": "PHP Class for working with matrices",
|
||
|
"keywords": ["matrix", "vector", "mathematics"],
|
||
|
"homepage": "https://github.com/MarkBaker/PHPMatrix",
|
||
|
"license": "MIT",
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Mark Baker",
|
||
|
"email": "mark@lange.demon.co.uk"
|
||
|
}
|
||
|
],
|
||
|
"require": {
|
||
|
"php": "^5.6.0|^7.0.0"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"phpunit/phpunit": "^4.8.35|^5.4.0",
|
||
|
"phpdocumentor/phpdocumentor":"2.*",
|
||
|
"phpmd/phpmd": "2.*",
|
||
|
"sebastian/phpcpd": "2.*",
|
||
|
"phploc/phploc": "2.*",
|
||
|
"squizlabs/php_codesniffer": "^3.3.0",
|
||
|
"phpcompatibility/php-compatibility": "^8.0",
|
||
|
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"Matrix\\": "classes/src/"
|
||
|
},
|
||
|
"files": [
|
||
|
"classes/src/functions/adjoint.php",
|
||
|
"classes/src/functions/antidiagonal.php",
|
||
|
"classes/src/functions/cofactors.php",
|
||
|
"classes/src/functions/determinant.php",
|
||
|
"classes/src/functions/diagonal.php",
|
||
|
"classes/src/functions/identity.php",
|
||
|
"classes/src/functions/inverse.php",
|
||
|
"classes/src/functions/minors.php",
|
||
|
"classes/src/functions/trace.php",
|
||
|
"classes/src/functions/transpose.php",
|
||
|
"classes/src/operations/add.php",
|
||
|
"classes/src/operations/directsum.php",
|
||
|
"classes/src/operations/subtract.php",
|
||
|
"classes/src/operations/multiply.php",
|
||
|
"classes/src/operations/divideby.php",
|
||
|
"classes/src/operations/divideinto.php"
|
||
|
]
|
||
|
},
|
||
|
"scripts": {
|
||
|
"style": [
|
||
|
"phpcs --report-width=200 --report-summary --report-full classes/src/ --standard=PSR2 -n"
|
||
|
],
|
||
|
"test": [
|
||
|
"phpunit"
|
||
|
],
|
||
|
"mess": [
|
||
|
"phpmd classes/src/ xml codesize,unusedcode,design,naming -n"
|
||
|
],
|
||
|
"lines": [
|
||
|
"phploc classes/src/ -n"
|
||
|
],
|
||
|
"cpd": [
|
||
|
"phpcpd classes/src/ -n"
|
||
|
]
|
||
|
},
|
||
|
"minimum-stability": "dev"
|
||
|
}
|