TheAlgorithms-PHP/composer.json

22 lines
389 B
JSON
Raw Normal View History

2020-08-05 21:23:53 +05:30
{
2021-01-04 14:38:49 -07:00
"name" : "thealgorithms/php",
"description": "All Algorithms implemented in PHP",
"config": {
"platform": {
"php": "7.3.0"
}
},
"license": "MIT",
"require": {
"php": "7.3.0",
"phan/phan": "^2.7"
},
"require-dev": {
2023-10-04 10:10:13 +03:30
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.7"
2021-01-04 14:38:49 -07:00
},
"scripts": {
"test": "vendor/bin/phpunit tests"
}
2020-08-05 21:23:53 +05:30
}