Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristories committed Jul 25, 2021
2 parents ca589a0 + 23aa633 commit 21ac9b0
Show file tree
Hide file tree
Showing 18 changed files with 150 additions and 296 deletions.
3 changes: 0 additions & 3 deletions .coveralls.yml

This file was deleted.

8 changes: 1 addition & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[Makefile]
indent_style = tab

[*.php]
indent_size = 4
24 changes: 10 additions & 14 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
* text=auto
/.github export-ignore
/tests export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/.styleci.yml export-ignore
/.sensiolabs.yml export-ignore
/.coveralls.yml export-ignore
/phpunit.xml export-ignore
/CHANGELOG-* export-ignore
/CONTRIBUTING.md export-ignore
/CODE_OF_CONDUCT.md export-ignore
# Path-based git attributes
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html

# Ignore all test and documentation with "export-ignore".
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/phpunit.xml.dist export-ignore
/.scrutinizer.yml export-ignore
/tests export-ignore
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

88 changes: 7 additions & 81 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,82 +1,8 @@
### Laravel ###
/node_modules
/public/hot
/public/storage
/storage/*.key
/vendor
.env
.env.backup
build
composer.lock
docs
vendor
tests/Integration/temp
.phpunit.result.cache
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log

### Linux ###
*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk
.php-cs-fixer.cache
tests/temp/database.sqlite
1 change: 0 additions & 1 deletion .styleci.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .travis.yml

This file was deleted.

20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

All notable changes to `laravel-helpers` will be documented in this file.

## Version 1.1.0
### Changed
- Transfer owner
- Improve tests

## Version 1.0.3
### Added
- Support Laravel 8

## Version 1.0.2
### Added
- Code of Conduct
- Support Laravel 7

## Version 1.0.0
- Initial release
51 changes: 9 additions & 42 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,55 +1,22 @@
# Contributing

Contributions are **welcome** and will be fully **credited**.
Contributions are welcome and will be fully credited.

Please read and understand the contribution guide before creating an issue or pull request.
Contributions are accepted via Pull Requests on [Github](https://github.com/wearedevtical/laravel-quran).

## Etiquette

This project is open source, and as such, the maintainers give their free time to build and maintain the source code
held within. They make the code freely available in the hope that it will be of use to other developers. It would be
extremely unfair for them to suffer abuse or anger for their hard work.

Please be considerate towards maintainers when raising issues or presenting pull requests. Let's show the
world that developers are civilized and selfless people.

It's the duty of the maintainer to ensure that all submissions to the project are of sufficient
quality to benefit the project. Many developers have different skillsets, strengths, and weaknesses. Respect the maintainer's decision, and do not be upset or abusive if your submission is not used.

## Viability

When requesting or submitting new features, first consider whether it might be useful to others. Open
source projects are used by many developers, who may have entirely different needs to your own. Think about
whether or not your feature is likely to be used by other users of the project.

## Procedure

Before filing an issue:

- Attempt to replicate the problem, to ensure that it wasn't a coincidental incident.
- Check to make sure your feature suggestion isn't already present within the project.
- Check the pull requests tab to ensure that the bug doesn't have a fix in progress.
- Check the pull requests tab to ensure that the feature isn't already in progress.

Before submitting a pull request:

- Check the codebase to ensure that your feature doesn't already exist.
- Check the pull requests to ensure that another person hasn't already submitted the feature or fix.

## Requirements

If the project maintainer has any additional requirements, you will find them listed here.
## Pull Requests

- **[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).

- **Add tests!** - Your patch won't be accepted if it doesn't have tests.

- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.

- **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.

- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.

- **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.

## Running Tests

``` bash
$ phpunit
```

**Happy coding**!
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) Wahyu Kristianto <w.kristories@gmail.com>
Copyright (c) Devtical

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
35 changes: 19 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,12 @@
<p align="center">
<img alt="Laravel Helpers" src="https://i.imgur.com/BTD33kC.png"/>
</p>

# Laravel Helpers

[![Build Status](https://travis-ci.org/kristories/laravel-helpers.svg?branch=master)](https://travis-ci.org/kristories/laravel-helpers)
[![styleci](https://styleci.io/repos/232460001/shield)](https://styleci.io/repos/232460001)
[![Coverage Status](https://coveralls.io/repos/github/Kristories/laravel-helpers/badge.svg?branch=master)](https://coveralls.io/github/Kristories/laravel-helpers?branch=master)
[![Packagist](https://img.shields.io/packagist/v/kristories/laravel-helpers.svg)](https://packagist.org/packages/kristories/laravel-helpers)
[![Packagist](https://poser.pugx.org/kristories/laravel-helpers/d/total.svg)](https://packagist.org/packages/kristories/laravel-helpers)
[![Packagist](https://img.shields.io/packagist/l/kristories/laravel-helpers.svg)](https://packagist.org/packages/kristories/laravel-helpers)

Helper Generator for Laravel

## Installation

Install via composer
```bash
composer require kristories/laravel-helpers
composer require wearedevtical/laravel-helpers
```

#### Optional
Expand All @@ -30,15 +19,29 @@ Publish the config by running the `php artisan vendor:publish` command.
php artisan make:helper <NAME>
```

## Change log

Please see the [changelog](CHANGELOG.md) for more information on what has changed recently.

## Testing

``` bash
$ composer test
```

## Contributing

Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details.

## Security

If you discover any security related issues, please email `w.kristories@gmail.com` instead of using the issue tracker.
If you discover any security related issues, please email author instead of using the issue tracker.

## Credits

- [Wahyu Kristianto](https://github.com/kristories)
- [All contributors](https://github.com/kristories/laravel-helpers/graphs/contributors)
- [Wahyu Kristianto](https://github.com/wearedevtical)
- [All contributors](https://github.com/wearedevtical/laravel-helpers/graphs/contributors)

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
The MIT License (MIT). Please see the [license file](LICENSE.md) for more information.
Loading

0 comments on commit 21ac9b0

Please sign in to comment.