Skip to content

Commit e191e8a

Browse files
committed
chore: Update metafiles
1 parent cdcabd9 commit e191e8a

File tree

5 files changed

+41
-39
lines changed

5 files changed

+41
-39
lines changed

.editorconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.yaml]
12+
indent_size = 2
13+
14+
[*.yml]
15+
indent_size = 2
16+
17+
[*.md]
18+
trim_trailing_whitespace = false
19+
20+
[Makefile]
21+
indent_style = tab

.gitattributes

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
/.gitattributes export-ignore
2-
/.github/ export-ignore
3-
/.gitignore export-ignore
4-
/phpunit.xml.dist export-ignore
5-
/phpunit.xml.legacy export-ignore
6-
/tests/ export-ignore
1+
* text=auto
2+
3+
/.* export-ignore
4+
/tests export-ignore
5+
/phpunit.xml* export-ignore
6+
/psalm.* export-ignore
7+
/psalm-baseline.xml export-ignore
8+
/infection.* export-ignore

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1-
/composer.lock
1+
/.*
2+
!/.github/
3+
/runtime/
24
/vendor/
5+
/.env
6+
/composer.lock
7+
*.log

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "react/promise",
2+
"name": "internal/promise",
33
"description": "A lightweight implementation of CommonJS Promises/A for PHP",
44
"license": "MIT",
55
"authors": [
@@ -25,10 +25,13 @@
2525
}
2626
],
2727
"require": {
28-
"php": ">=5.4.0"
28+
"php": ">=8.1"
2929
},
3030
"require-dev": {
31-
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
31+
"phpunit/phpunit": "^9.6"
32+
},
33+
"replace": {
34+
"react/promise": "^2.0"
3235
},
3336
"autoload": {
3437
"psr-4": {

phpunit.xml.legacy

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

0 commit comments

Comments
 (0)