-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring: renamed Carrooi\Menu namespace to Contributte\MenuControl
- Loading branch information
Showing
32 changed files
with
106 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
{ | ||
"name": "carrooi/nette-menu", | ||
"name": "contributte/menu-control", | ||
"type": "library", | ||
"description": "Menu for Nette framework", | ||
"description": "Menu control for Nette framework", | ||
"keywords": ["nette", "menu", "control", "component", "breadcrumbs"], | ||
"homepage": "https://github.com/Carrooi/Nette-Menu", | ||
"homepage": "https://github.com/contributte/menu-control", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "David Kudera", | ||
"homepage": "http://davidkudera.com", | ||
"email": "[email protected]" | ||
"homepage": "https://kudera.dev" | ||
}, | ||
{ | ||
"name": "Milan Felix Šulc", | ||
"homepage": "https://f3l1x.io" | ||
}, | ||
{ | ||
"name": "Tomáš Jacík", | ||
"homepage": "https://tomasjacik.cz" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/Carrooi/Nette-Menu/issues" | ||
"issues": "https://github.com/contributte/menu-control/issues" | ||
}, | ||
"require": { | ||
"php": ">=7.1", | ||
|
@@ -28,7 +35,7 @@ | |
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Carrooi\\Menu\\": "src/" | ||
"Contributte\\MenuControl\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
declare(strict_types=1); | ||
|
||
namespace Carrooi\Menu; | ||
namespace Contributte\MenuControl; | ||
|
||
/** | ||
* @author David Kudera <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
|
||
declare(strict_types=1); | ||
|
||
namespace Carrooi\Menu; | ||
namespace Contributte\MenuControl; | ||
|
||
use Carrooi\Menu\LinkGenerator\ILinkGenerator; | ||
use Contributte\MenuControl\LinkGenerator\ILinkGenerator; | ||
|
||
/** | ||
* @author David Kudera <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
|
||
declare(strict_types=1); | ||
|
||
namespace Carrooi\Menu\LinkGenerator; | ||
namespace Contributte\MenuControl\LinkGenerator; | ||
|
||
use Carrooi\Menu\IMenuItem; | ||
use Contributte\MenuControl\IMenuItem; | ||
|
||
/** | ||
* @author David Kudera <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
|
||
declare(strict_types=1); | ||
|
||
namespace Carrooi\Menu\Loaders; | ||
namespace Contributte\MenuControl\Loaders; | ||
|
||
use Carrooi\Menu\IMenu; | ||
use Contributte\MenuControl\IMenu; | ||
|
||
/** | ||
* @author David Kudera <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
declare(strict_types=1); | ||
|
||
namespace Carrooi\Menu; | ||
namespace Contributte\MenuControl; | ||
|
||
/** | ||
* @author David Kudera <[email protected]> | ||
|
@@ -11,7 +11,7 @@ final class MenuContainer | |
{ | ||
|
||
|
||
/** @var \Carrooi\Menu\IMenu[] */ | ||
/** @var IMenu[] */ | ||
private $menus = []; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.