Skip to content

Commit 1464ab8

Browse files
Structure this projeto
1 parent 73e219d commit 1464ab8

File tree

3 files changed

+51
-4
lines changed

3 files changed

+51
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
</p>
44

55
<p align="center">
6-
<a href="https://travis-ci.org/life-code/dynamic-menu"><img src="https://travis-ci.org/life-code/dynamic-menu.svg" alt="Build Status"></a>
7-
<a href="https://packagist.org/packages/life-code/dynamic-menu"><img src="https://poser.pugx.org/life-code/dynamic-menu/d/total.svg" alt="Total Downloads"></a>
8-
<a href="https://packagist.org/packages/life-code/dynamic-menu"><img src="https://poser.pugx.org/life-code/dynamic-menu/v/stable.svg" alt="Latest Stable Version"></a>
9-
<a href="https://packagist.org/packages/life-code/dynamic-menu"><img src="https://poser.pugx.org/life-code/dynamic-menu/license.svg" alt="License"></a>
6+
<a href="https://travis-ci.org/life-code/dynamic-menu"><img src="https://travis-ci.org/life-code/database-dynamic-menu.svg" alt="Build Status"></a>
7+
<a href="https://packagist.org/packages/life-code/database-dynamic-menu"><img src="https://poser.pugx.org/life-code/database-dynamic-menu/d/total.svg" alt="Total Downloads"></a>
8+
<a href="https://packagist.org/packages/life-code/database-dynamic-menu"><img src="https://poser.pugx.org/life-code/database-dynamic-menu/v/stable.svg" alt="Latest Stable Version"></a>
9+
<a href="https://packagist.org/packages/life-code/database-dynamic-menu"><img src="https://poser.pugx.org/life-code/database-dynamic-menu/license.svg" alt="License"></a>
1010
</p>
1111

1212

docs/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Database Dynamic Menu Documentation
2+
3+
## Contribution Guidelines
4+
Contribute to the Database Dynamic Menu and help bring this idea forward!
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php
2+
3+
namespace DatabaseDynamicMenu;
4+
5+
/**
6+
* Database Dynamic Menu
7+
*
8+
* @category Database Dynamic Menu
9+
* @version 1.0.0
10+
* @package viniciuspugliesi/database-dynamic-menu
11+
* @copyright Copyright (c) 2017 Vinicius Pugliesi (http://www.viniciuspugliesi.com)
12+
* @author Vinicius Pugliesi <[email protected]>
13+
* @license MIT
14+
*/
15+
class DatabaseDynamicMenu
16+
{
17+
/**
18+
* The Dynamic Menu version.
19+
*
20+
* @var string
21+
*/
22+
const VERSION = '1.0.0';
23+
24+
/**
25+
* New instance of class.
26+
*
27+
* @return void
28+
*/
29+
public function __construct()
30+
{
31+
//
32+
}
33+
34+
/**
35+
* Get the version number of the package.
36+
*
37+
* @return string
38+
*/
39+
public function version()
40+
{
41+
return static::VERSION;
42+
}
43+
}

0 commit comments

Comments
 (0)