mirror of
https://github.com/TheAlgorithms/PHP.git
synced 2025-02-19 15:44:49 +01:00
* Added Disjoint Sets Data structure * Moved DisjointSetTest.php to tests/DataStructures * Update DataStructures/DisjointSets/DisjointSet.php Co-authored-by: Brandon Johnson <bbj1979@gmail.com> * Update DataStructures/DisjointSets/DisjointSetNode.php Co-authored-by: Brandon Johnson <bbj1979@gmail.com> * Update DataStructures/DisjointSets/DisjointSetNode.php Co-authored-by: Brandon Johnson <bbj1979@gmail.com> * Update tests/DataStructures/DisjointSetTest.php Co-authored-by: Brandon Johnson <bbj1979@gmail.com> * Update tests/DataStructures/DisjointSetTest.php Co-authored-by: Brandon Johnson <bbj1979@gmail.com> * Update tests/DataStructures/DisjointSetTest.php Co-authored-by: Brandon Johnson <bbj1979@gmail.com> * Considered PHPCS remarks. Unit Testing is now working. * Remove data type mixed. Considered annotations for php7.4. * Remove data type mixed. Considered annotations for php7.4. * updating DIRECTORY.md --------- Co-authored-by: Brandon Johnson <bbj1979@gmail.com> Co-authored-by: Ramy-Badr-Ahmed <Ramy-Badr-Ahmed@users.noreply.github.com>
23 lines
387 B
JSON
23 lines
387 B
JSON
{
|
|
"name": "thealgorithms/php",
|
|
"description": "All Algorithms implemented in PHP",
|
|
"config": {
|
|
"platform": {
|
|
"php": "7.4.0"
|
|
}
|
|
},
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "7.4",
|
|
"phan/phan": "^2.7"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9",
|
|
"squizlabs/php_codesniffer": "^3.7"
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit tests"
|
|
}
|
|
}
|
|
|