Skip to content

Commit 0f61931

Browse files
authored
Workflow update (#21)
* Update license info * Minor workflow tweak * Fix documentation error
1 parent 6f4257f commit 0f61931

File tree

4 files changed

+9
-12
lines changed

4 files changed

+9
-12
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Run tests
22

3-
on:
4-
push:
5-
schedule:
6-
- cron: '10 6 * * 1'
3+
on: [push, pull_request]
74

85
jobs:
96
php-tests:
@@ -39,6 +36,6 @@ jobs:
3936

4037
- name: Install dependencies
4138
run: composer require "illuminate/support:${{ matrix.illuminate }}" --no-interaction --no-progress --no-suggest
42-
39+
4340
- name: Execute tests
44-
run: vendor/bin/phpunit
41+
run: vendor/bin/phpunit

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License (MIT)
22

3-
Copyright (c) 2020 Marcus Olsson <contact@marcusolsson.me>
3+
Copyright (c) 2021 Marcus Olsson <contact@marcusolsson.me>
44

55
> Permission is hereby granted, free of charge, to any person obtaining a copy
66
> of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Backup Shield simply listens for when the .zip-file generated by Laravel-backup
1717

1818
## Requirements
1919

20-
`php: 7.3|^8.0`
20+
`php: ^7.3|^8.0`
2121
`ext-zip: ^1.14`
2222
`laravel: ^6|^7|^8`
2323

@@ -56,7 +56,7 @@ Set your type of encryption. Available options are:
5656
`\Olssonm\BackupShield\Encryption::ENCRYPTION_DEFAULT` (AES 128)
5757
`\Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_128` (AES 128)
5858
`\Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_192` (AES 192)
59-
`\Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_256` (AES 256)
59+
`\Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_256` (AES 256)
6060

6161
#### Regarding the layered archive
6262

@@ -78,7 +78,7 @@ $ phpunit
7878

7979
The MIT License (MIT). Please see the [LICENSE.md](LICENSE.md) for more information.
8080

81-
© 2020 [Marcus Olsson](https://marcusolsson.me).
81+
© 2021 [Marcus Olsson](https://marcusolsson.me).
8282

8383
[ico-version]: https://img.shields.io/packagist/v/olssonm/laravel-backup-shield.svg?style=flat-square
8484
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Protection for your laravel backups",
44
"keywords": [
55
"olssonm",
6-
"Laravel 5",
6+
"laravel",
77
"backup",
88
"password",
99
"security"
@@ -42,7 +42,7 @@
4242
},
4343
"extra": {
4444
"branch-alias": {
45-
"dev-master": "2.x-dev"
45+
"dev-master": "3.x-dev"
4646
},
4747
"laravel": {
4848
"providers": [

0 commit comments

Comments
 (0)