Skip to content

Commit e08173a

Browse files
authored
Merge pull request #7 from Thavarshan/feature/custom-async
PHP Fiber based async opreations and API docs
2 parents 1f69979 + cc3173b commit e08173a

34 files changed

+6061
-747
lines changed

.gitattributes

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,32 @@
11
# Path-based git attributes
22
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
3+
4+
# Automatically normalize line endings
35
* text=auto
46
* text eol=lf
57

8+
# Mark binary files to avoid any line-ending conversions
9+
*.jpg binary
10+
*.png binary
11+
*.gif binary
12+
*.ico binary
13+
*.pdf binary
14+
*.zip binary
15+
616
# Ignore all test and documentation with "export-ignore".
7-
/.gitattributes export-ignore
8-
/.gitignore export-ignore
9-
/.travis.yml export-ignore
10-
/phpunit.xml.dist export-ignore
11-
/.scrutinizer.yml export-ignore
12-
/tests export-ignore
13-
/.editorconfig export-ignore
17+
/.gitattributes export-ignore
18+
/.gitignore export-ignore
19+
/.travis.yml export-ignore
20+
/phpunit.xml.dist export-ignore
21+
/.scrutinizer.yml export-ignore
22+
/tests export-ignore
23+
/.editorconfig export-ignore
24+
25+
# Composer files
26+
/composer.json export-ignore
27+
/composer.lock export-ignore
28+
29+
# Other common configuration files
30+
/.env export-ignore
31+
/.php_cs export-ignore
32+
/.php_cs.dist export-ignore

.github/ISSUE_TEMPLATE/BUG_REPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ about: "Report something that's broken."
66
<!-- DO NOT THROW THIS AWAY -->
77
<!-- Fill out the FULL versions with patch versions -->
88

9-
- App Version: 1.1.0
9+
- Library Version: 1.1.0
1010
- PHP Version: 8.2.0 / 8.3.4
1111

1212
### Description

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,5 @@ coverage
3131
/.idea
3232
.php-cs-fixer.cache
3333
notes.md
34+
docs/.vitepress/dist
35+
docs/.vitepress/cache

0 commit comments

Comments
 (0)