1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "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"
- }
|