Skip to content

Commit 324ed26

Browse files
author
Gaetano Giunta
committed
update docs, require php ext-json, add .editorconfig and .gitattributes
1 parent a7dc4c2 commit 324ed26

File tree

5 files changed

+20
-1
lines changed

5 files changed

+20
-1
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 4
7+
indent_style = space
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/test export-ignore
2+
.gitattributes export-ignore
3+
.gitignore export-ignore

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
1.99.4:
2+
3+
* fix compatibility with php 7.4 (thanks rlerdorf)
4+
* add json php extension to the requirements
5+
16
1.99.3:
27

38
* `pake_symlink()` will throw `pakeException` if not successful
49

10+
511
1.99.2:
612

713
* Failed `pake_sh()` call will return application's exit-code via `pakeException`
@@ -10,6 +16,7 @@
1016
* `pake help short-taskname` works for tasks defined in methods
1117
* Fixed issue with parsing project's composer.json, while looking for custom `vendor-dir`
1218

19+
1320
1.99.1:
1421

1522
* Added support for custom `vendor-dir` in composer-based project

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ Just create a `composer.json` file and run the `php composer.phar install` comma
1515
"indeyets/pake": "~1.99"
1616
}
1717
}
18-

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
},
2828
"require": {
2929
"php": ">=5.2.1",
30+
"ext-json": "*",
3031
"ext-mbstring": "*"
3132
},
3233
"require-dev": {

0 commit comments

Comments
 (0)