Skip to content

Commit

Permalink
Merge pull request #19 from WebFiori/dev
Browse files Browse the repository at this point in the history
Update composer.json
  • Loading branch information
usernane authored Jul 16, 2022
2 parents 018e22a + 9d7e41a commit a1acf29
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A library that provides basic utilities for creating HTML documents.",
"require": {
"php": ">=7.0",
"webfiori/collections":"1.1.0"
"webfiori/collections":"1.1.x"
},
"keywords": [
"library",
Expand Down
14 changes: 8 additions & 6 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,14 @@
}
define('ROOT', $rootDir);
//echo 'Root Directory: \''.$rootDir.'\'.'."\n";
require_once $rootDir.'vendor'.$DS.'webfiori'.$DS.'collections'.$DS.'src'.$DS.'Node.php';
require_once $rootDir.'vendor'.$DS.'webfiori'.$DS.'collections'.$DS.'src'.$DS.'AbstractCollection.php';
require_once $rootDir.'vendor'.$DS.'webfiori'.$DS.'collections'.$DS.'src'.$DS.'LinkedList.php';
require_once $rootDir.'vendor'.$DS.'webfiori'.$DS.'collections'.$DS.'src'.$DS.'Stack.php';
require_once $rootDir.'vendor'.$DS.'webfiori'.$DS.'collections'.$DS.'src'.$DS.'Queue.php';
require_once $rootDir.'vendor'.$DS.'webfiori'.$DS.'collections'.$DS.'src'.$DS.'Comparable.php';
$collLibPath = $rootDir.'vendor'.$DS.'webfiori'.$DS.'collections'.$DS.'webfiori'.$DS.'collections'.$DS;

require_once $collLibPath.'Node.php';
require_once $collLibPath.'AbstractCollection.php';
require_once $collLibPath.'LinkedList.php';
require_once $collLibPath.'Stack.php';
require_once $collLibPath.'Queue.php';
require_once $collLibPath.'Comparable.php';
//HTML classes
$libPath = $rootDir.'webfiori'.$DS.'ui'.$DS;

Expand Down

0 comments on commit a1acf29

Please sign in to comment.