aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-23 16:27:01 +0900
committernsfisis <nsfisis@gmail.com>2026-05-23 16:27:10 +0900
commit106e01f36fa8dd9bc3eb3a1411bd011a618a2836 (patch)
treee718e5f62d143060095d71de6a40dbe06866db04
parentbd6d0186d2c01a3e1d6324ad5a0bcdd71de53098 (diff)
downloadphp-shirabe-106e01f36fa8dd9bc3eb3a1411bd011a618a2836.tar.gz
php-shirabe-106e01f36fa8dd9bc3eb3a1411bd011a618a2836.tar.zst
php-shirabe-106e01f36fa8dd9bc3eb3a1411bd011a618a2836.zip
chore: add editor/toolchain config
-rw-r--r--.editorconfig12
-rw-r--r--LICENSE.md2
-rw-r--r--README.md1
-rw-r--r--rust-toolchain.toml3
-rw-r--r--rustfmt.toml1
5 files changed, 19 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..6646a90
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,12 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+insert_final_newline = true
+trim_trailing_whitespace = true
+indent_style = space
+indent_size = 4
+
+[*.md]
+trim_trailing_whitespace = false
diff --git a/LICENSE.md b/LICENSE.md
index 184bf41..fed39f5 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -20,4 +20,6 @@ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR I
## Composer
+Shirabe is a port of Composer v2.9.7.
+
See [composer/LICENSE](composer/LICENSE) for the original Composer license.
diff --git a/README.md b/README.md
index 1e52dc7..865df00 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,7 @@
Yet another dependency manager for PHP.
+*WORK IN PROGRESS*
## License
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
new file mode 100644
index 0000000..386fc3c
--- /dev/null
+++ b/rust-toolchain.toml
@@ -0,0 +1,3 @@
+[toolchain]
+channel = "1.94"
+components = ["rust-analyzer", "rust-src"]
diff --git a/rustfmt.toml b/rustfmt.toml
new file mode 100644
index 0000000..3501136
--- /dev/null
+++ b/rustfmt.toml
@@ -0,0 +1 @@
+style_edition = "2024"