Skip to content

Commit 1dc5b6f

Browse files
Merge v1.20 into master (#1640)
2 parents 2509ae3 + f9fdbc4 commit 1dc5b6f

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: "Check validity of composer.json"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- "v*.*"
7+
- "master"
8+
- "feature/*"
9+
push:
10+
branches:
11+
- "v*.*"
12+
- "master"
13+
- "feature/*"
14+
15+
jobs:
16+
composer-validate:
17+
name: "Check validity of composer.json"
18+
runs-on: "ubuntu-24.04"
19+
20+
steps:
21+
- name: "Checkout"
22+
uses: "actions/checkout@v4"
23+
with:
24+
submodules: true
25+
26+
- name: "Install PHP"
27+
uses: "shivammathur/setup-php@v2"
28+
29+
- name: "Run composer validate"
30+
run: "composer validate --strict"

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "mongodb/mongodb-extension",
3+
"description": "MongoDB driver extension",
34
"type": "php-ext",
45
"keywords": ["database", "driver", "mongodb", "persistence"],
56
"homepage": "https://jira.mongodb.org/browse/PHPC",
@@ -69,4 +70,4 @@
6970
}
7071
]
7172
}
72-
}
73+
}

0 commit comments

Comments
 (0)