Skip to content

Workflow update #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Run tests

on:
push:
schedule:
- cron: '10 6 * * 1'
on: [push, pull_request]

jobs:
php-tests:
Expand Down Expand Up @@ -39,6 +36,6 @@ jobs:

- name: Install dependencies
run: composer require "illuminate/support:${{ matrix.illuminate }}" --no-interaction --no-progress --no-suggest

- name: Execute tests
run: vendor/bin/phpunit
run: vendor/bin/phpunit
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The MIT License (MIT)

Copyright (c) 2020 Marcus Olsson <contact@marcusolsson.me>
Copyright (c) 2021 Marcus Olsson <contact@marcusolsson.me>

> Permission is hereby granted, free of charge, to any person obtaining a copy
> of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Backup Shield simply listens for when the .zip-file generated by Laravel-backup

## Requirements

`php: 7.3|^8.0`
`php: ^7.3|^8.0`
`ext-zip: ^1.14`
`laravel: ^6|^7|^8`

Expand Down Expand Up @@ -56,7 +56,7 @@ Set your type of encryption. Available options are:
`\Olssonm\BackupShield\Encryption::ENCRYPTION_DEFAULT` (AES 128)
`\Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_128` (AES 128)
`\Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_192` (AES 192)
`\Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_256` (AES 256)
`\Olssonm\BackupShield\Encryption::ENCRYPTION_WINZIP_AES_256` (AES 256)

#### Regarding the layered archive

Expand All @@ -78,7 +78,7 @@ $ phpunit

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

© 2020 [Marcus Olsson](https://marcusolsson.me).
© 2021 [Marcus Olsson](https://marcusolsson.me).

[ico-version]: https://img.shields.io/packagist/v/olssonm/laravel-backup-shield.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Protection for your laravel backups",
"keywords": [
"olssonm",
"Laravel 5",
"laravel",
"backup",
"password",
"security"
Expand Down Expand Up @@ -42,7 +42,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
"dev-master": "3.x-dev"
},
"laravel": {
"providers": [
Expand Down