We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21ccfbf commit e2d7458Copy full SHA for e2d7458
.github/dependabot.yml
@@ -0,0 +1,21 @@
1
+# Dependabot config.
2
+# Keep NPM and Composer packages up-to-date.
3
+# Let's start out with daily updates and then drop back to less frequent intervals after everything is up-to-date.
4
+
5
+version: 2
6
+updates:
7
+ # Enable version updates for npm
8
+ - package-ecosystem: 'npm'
9
+ # Look for `package.json` and `lock` files in the `root` directory
10
+ directory: '/'
11
+ # Check the npm registry for updates every day (weekdays)
12
+ schedule:
13
+ interval: 'daily'
14
15
+ # Enable version updates for Composer
16
+ - package-ecosystem: 'composer'
17
+ # Look for a `composer.lock` in the `root` directory
18
19
+ # Check for updates every day (weekdays)
20
21
0 commit comments