[增添]添加了datasource的setting数据库以及默认值
This commit is contained in:
1
vendor/danharrin/livewire-rate-limiting/.github/FUNDING.yml
vendored
Normal file
1
vendor/danharrin/livewire-rate-limiting/.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1 @@
|
||||
github: [danharrin]
|
||||
25
vendor/danharrin/livewire-rate-limiting/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
25
vendor/danharrin/livewire-rate-limiting/.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
labels: bug
|
||||
assignees: DanHarrin
|
||||
---
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To reproduce**
|
||||
A simplified code example to demonstrate the issue you are facing.
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Context**
|
||||
- Package version: [e.g. 0.1.0]
|
||||
- Livewire version: [e.g. 2.0.0]
|
||||
- Laravel version: [e.g. 8.0.0]
|
||||
- Server OS: [e.g. Ubuntu 18.04.4]
|
||||
- PHP version: [e.g. 7.4]
|
||||
|
||||
**Additional details**
|
||||
Add any other details about the problem here.
|
||||
8
vendor/danharrin/livewire-rate-limiting/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
8
vendor/danharrin/livewire-rate-limiting/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Feature request
|
||||
url: https://github.com/danharrin/livewire-rate-limiting/discussions/new
|
||||
about: For ideas or feature requests
|
||||
- name: Support questions & other
|
||||
url: https://github.com/danharrin/livewire-rate-limiting/discussions/new
|
||||
about: If you have a question or need help installing using the package
|
||||
40
vendor/danharrin/livewire-rate-limiting/.github/workflows/tests.yml
vendored
Normal file
40
vendor/danharrin/livewire-rate-limiting/.github/workflows/tests.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
name: tests
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
run-tests:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
php: [ 8.3, 8.2 ]
|
||||
laravel: [ 11.*, 10.* ]
|
||||
dependency-version: [ prefer-stable ]
|
||||
include:
|
||||
- laravel: 11.*
|
||||
testbench: 9.*
|
||||
- laravel: 10.*
|
||||
testbench: 8.*
|
||||
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.composer/cache/files
|
||||
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
extensions: mbstring, pdo, pdo_sqlite
|
||||
coverage: none
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
|
||||
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
|
||||
- name: Execute tests
|
||||
run: vendor/bin/phpunit
|
||||
Reference in New Issue
Block a user