summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Schlesser <alain.schlesser@gmail.com>2020-06-21 11:52:33 +0200
committerAlain Schlesser <alain.schlesser@gmail.com>2020-06-21 11:52:33 +0200
commit2ccc8fa09337d39acc2ef5ca0bae192e12e922f6 (patch)
tree1a704d67e5e79a5ecee8e86e277fd01db864f66a
parent78ba0b8973cbfbb48b85b8beae6f7de412064d11 (diff)
Add immediate file types for PHP ecosystem
Added the following imemdiate file types for PHP: - `composer.json` for [Composer](https://getcomposer.org/), the defactor standard package manager for PHP; - `RoboFile.php`, for [Robo](https://robo.li/), the PHP task runner. Note: [Phing]() uses `build.xml`, which was already included in the list.
-rw-r--r--src/info/filetype.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/info/filetype.rs b/src/info/filetype.rs
index 0dc758f..2af5da5 100644
--- a/src/info/filetype.rs
+++ b/src/info/filetype.rs
@@ -26,7 +26,7 @@ impl FileExtensions {
"Makefile", "Cargo.toml", "SConstruct", "CMakeLists.txt",
"build.gradle", "pom.xml", "Rakefile", "package.json", "Gruntfile.js",
"Gruntfile.coffee", "BUILD", "BUILD.bazel", "WORKSPACE", "build.xml",
- "webpack.config.js", "meson.build",
+ "webpack.config.js", "meson.build", "composer.json", "RoboFile.php",
])
}