Skip to content

Commit 21ac9b0

Browse files
committed
Merge branch 'develop'
2 parents ca589a0 + 23aa633 commit 21ac9b0

18 files changed

+150
-296
lines changed

.coveralls.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.editorconfig

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
root = true
22

33
[*]
4+
charset = utf-8
45
indent_style = space
56
indent_size = 4
67
end_of_line = lf
7-
charset = utf-8
88
trim_trailing_whitespace = true
99
insert_final_newline = true
10-
11-
[Makefile]
12-
indent_style = tab
13-
14-
[*.php]
15-
indent_size = 4

.gitattributes

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
* text=auto
2-
/.github export-ignore
3-
/tests export-ignore
4-
/.editorconfig export-ignore
5-
/.gitattributes export-ignore
6-
/.gitignore export-ignore
7-
/.travis.yml export-ignore
8-
/.styleci.yml export-ignore
9-
/.sensiolabs.yml export-ignore
10-
/.coveralls.yml export-ignore
11-
/phpunit.xml export-ignore
12-
/CHANGELOG-* export-ignore
13-
/CONTRIBUTING.md export-ignore
14-
/CODE_OF_CONDUCT.md export-ignore
1+
# Path-based git attributes
2+
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
3+
4+
# Ignore all test and documentation with "export-ignore".
5+
/.gitattributes export-ignore
6+
/.gitignore export-ignore
7+
/.travis.yml export-ignore
8+
/phpunit.xml.dist export-ignore
9+
/.scrutinizer.yml export-ignore
10+
/tests export-ignore

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 7 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,8 @@
1-
### Laravel ###
2-
/node_modules
3-
/public/hot
4-
/public/storage
5-
/storage/*.key
6-
/vendor
7-
.env
8-
.env.backup
1+
build
2+
composer.lock
3+
docs
4+
vendor
5+
tests/Integration/temp
96
.phpunit.result.cache
10-
Homestead.json
11-
Homestead.yaml
12-
npm-debug.log
13-
yarn-error.log
14-
15-
### Linux ###
16-
*~
17-
18-
# temporary files which can be created if a process still has a handle open of a deleted file
19-
.fuse_hidden*
20-
21-
# KDE directory preferences
22-
.directory
23-
24-
# Linux trash folder which might appear on any partition or disk
25-
.Trash-*
26-
27-
# .nfs files are created when an open file is removed but is still being accessed
28-
.nfs*
29-
30-
### macOS ###
31-
# General
32-
.DS_Store
33-
.AppleDouble
34-
.LSOverride
35-
36-
# Icon must end with two \r
37-
Icon
38-
39-
# Thumbnails
40-
._*
41-
42-
# Files that might appear in the root of a volume
43-
.DocumentRevisions-V100
44-
.fseventsd
45-
.Spotlight-V100
46-
.TemporaryItems
47-
.Trashes
48-
.VolumeIcon.icns
49-
.com.apple.timemachine.donotpresent
50-
51-
# Directories potentially created on remote AFP share
52-
.AppleDB
53-
.AppleDesktop
54-
Network Trash Folder
55-
Temporary Items
56-
.apdisk
57-
58-
### Windows ###
59-
# Windows thumbnail cache files
60-
Thumbs.db
61-
Thumbs.db:encryptable
62-
ehthumbs.db
63-
ehthumbs_vista.db
64-
65-
# Dump file
66-
*.stackdump
67-
68-
# Folder config file
69-
[Dd]esktop.ini
70-
71-
# Recycle Bin used on file shares
72-
$RECYCLE.BIN/
73-
74-
# Windows Installer files
75-
*.cab
76-
*.msi
77-
*.msix
78-
*.msm
79-
*.msp
80-
81-
# Windows shortcuts
82-
*.lnk
7+
.php-cs-fixer.cache
8+
tests/temp/database.sqlite

.styleci.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.travis.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
All notable changes to `laravel-helpers` will be documented in this file.
4+
5+
## Version 1.1.0
6+
### Changed
7+
- Transfer owner
8+
- Improve tests
9+
10+
## Version 1.0.3
11+
### Added
12+
- Support Laravel 8
13+
14+
## Version 1.0.2
15+
### Added
16+
- Code of Conduct
17+
- Support Laravel 7
18+
19+
## Version 1.0.0
20+
- Initial release

CONTRIBUTING.md

Lines changed: 9 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,22 @@
11
# Contributing
22

3-
Contributions are **welcome** and will be fully **credited**.
3+
Contributions are welcome and will be fully credited.
44

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

7-
## Etiquette
8-
9-
This project is open source, and as such, the maintainers give their free time to build and maintain the source code
10-
held within. They make the code freely available in the hope that it will be of use to other developers. It would be
11-
extremely unfair for them to suffer abuse or anger for their hard work.
12-
13-
Please be considerate towards maintainers when raising issues or presenting pull requests. Let's show the
14-
world that developers are civilized and selfless people.
15-
16-
It's the duty of the maintainer to ensure that all submissions to the project are of sufficient
17-
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.
18-
19-
## Viability
20-
21-
When requesting or submitting new features, first consider whether it might be useful to others. Open
22-
source projects are used by many developers, who may have entirely different needs to your own. Think about
23-
whether or not your feature is likely to be used by other users of the project.
24-
25-
## Procedure
26-
27-
Before filing an issue:
28-
29-
- Attempt to replicate the problem, to ensure that it wasn't a coincidental incident.
30-
- Check to make sure your feature suggestion isn't already present within the project.
31-
- Check the pull requests tab to ensure that the bug doesn't have a fix in progress.
32-
- Check the pull requests tab to ensure that the feature isn't already in progress.
33-
34-
Before submitting a pull request:
35-
36-
- Check the codebase to ensure that your feature doesn't already exist.
37-
- Check the pull requests to ensure that another person hasn't already submitted the feature or fix.
38-
39-
## Requirements
40-
41-
If the project maintainer has any additional requirements, you will find them listed here.
7+
## Pull Requests
428

439
- **[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).
44-
4510
- **Add tests!** - Your patch won't be accepted if it doesn't have tests.
46-
4711
- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
48-
4912
- **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.
50-
5113
- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.
52-
5314
- **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.
5415

16+
## Running Tests
17+
18+
``` bash
19+
$ phpunit
20+
```
21+
5522
**Happy coding**!

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) Wahyu Kristianto <[email protected]>
3+
Copyright (c) Devtical
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)