Skip to content

Commit abe09a2

Browse files
committed
feat: Renovate check
1 parent 240a67d commit abe09a2

File tree

3 files changed

+2849
-0
lines changed

3 files changed

+2849
-0
lines changed

.github/renovate.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["config:base"],
4+
"packageRules": [
5+
{
6+
"matchPackagePatterns": [".*"],
7+
"matchManagers": ["composer"],
8+
"groupName": "All Dependencies",
9+
"groupSlug": "all-dependencies",
10+
"schedule": ["at any time"]
11+
},
12+
{
13+
"matchPackagePatterns": ["^php"],
14+
"groupName": "PHP Version",
15+
"separateMinorPatch": true
16+
},
17+
{
18+
"matchPackageNames": ["oblak/transliterator", "symfony/polyfill-php84"],
19+
"groupName": "Core Dependencies",
20+
"separateMinorPatch": true
21+
},
22+
{
23+
"matchPackagePatterns": [
24+
"phpstan/*",
25+
"phpunit/*",
26+
"oblak/wordpress-coding-standard"
27+
],
28+
"groupName": "Development Dependencies",
29+
"separateMinorPatch": true,
30+
"automerge": true,
31+
"schedule": ["before 8am on Monday"]
32+
}
33+
],
34+
"automerge": false,
35+
"prConcurrentLimit": 5,
36+
"prHourlyLimit": 2,
37+
"rebaseWhen": "auto",
38+
"stabilityDays": 3
39+
}

composer.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "oblak/vocative",
3+
"description": "Transforms Serbian names from nominative case to vocative case",
4+
"license": "MIT",
5+
"type": "library",
6+
"authors": [
7+
{
8+
"name": "Sibin Grasic",
9+
"email": "i.am@sib.ing"
10+
}
11+
],
12+
"require": {
13+
"php": ">= 8.0",
14+
"ext-mbstring": "*",
15+
"oblak/transliterator": "^3.0",
16+
"symfony/polyfill-php84": "^1.31"
17+
},
18+
"require-dev": {
19+
"oblak/wordpress-coding-standard": "^1.1",
20+
"phpstan/extension-installer": "^1.3",
21+
"phpstan/phpstan": "^1.10",
22+
"phpunit/phpunit": "^9"
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"Oblak\\Vocative\\": "src/"
27+
}
28+
},
29+
"config": {
30+
"allow-plugins": {
31+
"dealerdirect/phpcodesniffer-composer-installer": true,
32+
"phpstan/extension-installer": true
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)