You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
6
+
7
+
Examples of unacceptable behavior by participants include:
8
+
9
+
* The use of sexualized language or imagery
10
+
* Personal attacks
11
+
* Trolling or insulting/derogatory comments
12
+
* Public or private harassment
13
+
* Publishing other's private information, such as physical or electronic addresses, without explicit permission
14
+
* Other unethical or unprofessional conduct.
15
+
16
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
17
+
18
+
This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community in a direct capacity. Personal views, beliefs and values of individuals do not necessarily reflect those of the organisation or affiliated individuals and organisations.
19
+
20
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
21
+
22
+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/)
Contributions are **welcome** and will be fully **credited**.
4
+
5
+
We accept contributions via Pull Requests on [Github](https://github.com/:vendor/:package_name).
6
+
7
+
8
+
## Pull Requests
9
+
10
+
-**[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer).
11
+
12
+
-**Add tests!** - Your patch won't be accepted if it doesn't have tests.
13
+
14
+
-**Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
15
+
16
+
-**Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.
17
+
18
+
-**Create feature branches** - Don't ask us to pull from your master branch.
19
+
20
+
-**One pull request per feature** - If you want to do more than one thing, send multiple pull requests.
21
+
22
+
-**Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](http://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting.
An admin panel for menu items on Laravel 5, using [Backpack\CRUD](https://github.com/Laravel-Backpack/crud). Add, edit, reorder, nest, rename menu items and link them to [Backpack\PageManager](https://github.com/Laravel-Backpack/pagemanager) pages, external link or custom internal link.
11
+
12
+
## Install
13
+
14
+
Via Composer
15
+
16
+
```bash
17
+
$ composer require laravel-backpack/menumanager
18
+
```
19
+
20
+
## Usage
21
+
22
+
```php
23
+
$skeleton = new League\Skeleton();
24
+
echo $skeleton->echoPhrase('Hello, League!');
25
+
```
26
+
27
+
## Change log
28
+
29
+
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
30
+
31
+
## Testing
32
+
33
+
```bash
34
+
$ composer test
35
+
```
36
+
37
+
## Contributing
38
+
39
+
Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.
40
+
41
+
## Security
42
+
43
+
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
44
+
45
+
## Credits
46
+
47
+
-[Cristian Tabacitu][link-author]
48
+
-[All Contributors][link-contributors]
49
+
50
+
## License
51
+
52
+
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
0 commit comments