Skip to content

Commit 595429a

Browse files
authored
Updated dependencies, removed phive (#53)
* Updated dependencies, removed phive * Updated calendar dependency constraint
1 parent 74693af commit 595429a

File tree

15 files changed

+5730
-42
lines changed

15 files changed

+5730
-42
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
/composer.lock export-ignore
44
/.github/ export-ignore
55
/docs export-ignore
6+
/tools export-ignore
67
/tests export-ignore
78
/.gitattributes export-ignore
89
/.gitignore export-ignore
910
/.php_cs export-ignore
10-
/.phive export-ignore
1111
/psalm.xml export-ignore
1212
/phpstan.neon export-ignore
1313
/phpunit.xml export-ignore

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "daily"
7+
- package-ecosystem: "composer"
8+
directory: "/tools"
9+
schedule:
10+
interval: "daily"

.github/workflows/mutation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- "1.x"
88
schedule:
9-
- cron: '* 8 * * *'
9+
- cron: '0 8 * * *'
1010

1111
jobs:
1212
mutation:

.github/workflows/static-analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- "1.x"
88
schedule:
9-
- cron: '* 8 * * *'
9+
- cron: '0 8 * * *'
1010

1111
jobs:
1212
static-analyze:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- "1.x"
88
schedule:
9-
- cron: '* 8 * * *'
9+
- cron: '0 8 * * *'
1010

1111
jobs:
1212
tests:

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
vendor
2-
tools
32
*.cache
43
var

.phive/phars.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

composer.json

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"minimum-stability": "dev",
88
"require": {
99
"php": ">=7.4.2",
10-
"aeon-php/calendar": ">=0.14.0",
10+
"aeon-php/calendar": ">=0.18.0",
1111
"twig/twig": "^1.43|^2.10|^3"
1212
},
1313
"license": "MIT",
@@ -34,21 +34,23 @@
3434
"@test:mutation"
3535
],
3636
"test": [
37-
"tools/phpunit.phar"
37+
"tools\/vendor\/bin\/phpunit"
3838
],
3939
"test:mutation": [
40-
"tools/infection -j2"
40+
"tools\/vendor\/bin\/infection -j2"
4141
],
4242
"static:analyze": [
43-
"tools/psalm --output-format=compact",
44-
"tools/phpstan analyze -c phpstan.neon",
45-
"tools/php-cs-fixer fix --dry-run"
43+
"tools\/vendor\/bin\/psalm --output-format=compact",
44+
"tools\/vendor\/bin\/phpstan analyze -c phpstan.neon",
45+
"tools\/vendor\/bin\/php-cs-fixer fix --dry-run"
4646
],
47-
"cs:php:fix": "tools/php-cs-fixer fix"
48-
},
49-
"extra": {
50-
"branch-alias": {
51-
"dev-latest": "1.0-dev"
52-
}
47+
"cs:php:fix": "tools\/vendor\/bin\/php-cs-fixer fix",
48+
"tools:install": "composer install --working-dir=./tools",
49+
"post-install-cmd": [
50+
"@tools:install"
51+
],
52+
"post-update-cmd": [
53+
"@tools:install"
54+
]
5355
}
5456
}

composer.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"testFramework": "phpunit",
3131
"phpUnit": {
32-
"customPath": "tools\/phpunit.phar"
32+
"customPath": "tools\/vendor\/bin\/phpunit"
3333
},
3434
"bootstrap": "./vendor/autoload.php",
3535
"minMsi": 100,

0 commit comments

Comments
 (0)