composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "markrogoyski/math-php",
  3. "type": "library",
  4. "description": "Math Library for PHP. Features descriptive statistics and regressions; Continuous and discrete probability distributions; Linear algebra with matrices and vectors, Numerical analysis; special mathematical functions; Algebra",
  5. "keywords": ["math", "mathematics", "probability", "combinatorics", "statistics", "distributions", "regressions", "linear algebra", "matrix", "algebra", "numerical analysis"],
  6. "homepage": "https://github.com/markrogoyski/math-php/",
  7. "require": {
  8. "php": ">=7.2.0",
  9. "ext-json": "*"
  10. },
  11. "autoload": {
  12. "psr-4": { "MathPHP\\": "src/" }
  13. },
  14. "require-dev": {
  15. "phpunit/phpunit": "^8.5",
  16. "php-coveralls/php-coveralls": "^2.0",
  17. "squizlabs/php_codesniffer": "3.*",
  18. "phpstan/phpstan": "^1.10",
  19. "phpmd/phpmd": "^2.6",
  20. "phploc/phploc": "*",
  21. "php-parallel-lint/php-parallel-lint": "^1.2"
  22. },
  23. "autoload-dev": {
  24. "psr-4": { "MathPHP\\Tests\\": "tests/" }
  25. },
  26. "authors": [
  27. {
  28. "name": "Mark Rogoyski",
  29. "role": "Lead developer",
  30. "email": "mark@rogoyski.com",
  31. "homepage": "https://github.com/markrogoyski"
  32. },
  33. {
  34. "name": "Kevin Nowaczyk",
  35. "role": "Developer",
  36. "homepage": "https://github.com/Beakerboy"
  37. },
  38. {
  39. "name": "MathPHP Community of Contributors",
  40. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  41. }
  42. ],
  43. "license": "MIT"
  44. }