Skip to content

Commit

Permalink
Release 7.0.0 (#18)
Browse files Browse the repository at this point in the history
* Laravel 11.x support

- update dependencies, to work with Laravel version 11.x
- update README.md file
- migrate from TravisCI to CircleCI
  • Loading branch information
WiktorPacer authored May 5, 2024
1 parent 51c9f55 commit 4a94744
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 15 deletions.
32 changes: 32 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This config was automatically generated from your source code
# Stacks detected: deps:php:.
version: 2.1
orbs:
php: circleci/php@1
jobs:
test-php:
# Install php packages and run tests
docker:
- image: cimg/php:8.2-node
steps:
- checkout
- php/install-packages
- run:
name: run tests
command: ./vendor/bin/phpunit
deploy:
# This is an example deploy job, not actually used by the workflow
docker:
- image: cimg/base:stable
steps:
# Replace this with steps to deploy to users
- run:
name: deploy
command: '#e.g. ./deploy.sh'
workflows:
build-and-test:
jobs:
- test-php
# - deploy:
# requires:
# - test-php
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
![Packagist](https://img.shields.io/packagist/dt/pacerit/laravel-polish-validation-rules?label=Downloads)
![PHP from Packagist](https://img.shields.io/packagist/php-v/pacerit/laravel-polish-validation-rules?label=PHP)
[![StyleCI](https://github.styleci.io/repos/201912664/shield?branch=master)](https://github.styleci.io/repos/201912664)
[![Build Status](https://travis-ci.com/pacerit/laravel-polish-validation-rules.svg?branch=master)](https://travis-ci.com/pacerit/laravel-polish-validation-rules)
[![<PacerIT>](https://circleci.com/gh/pacerit/laravel-polish-validation-rules.svg?style=svg)](https://circleci.com/gh/pacerit/laravel-polish-validation-rules)

Simple Polish Validation rules for Laravel and Lumen framework

Expand All @@ -24,9 +24,10 @@ Framework | Package | Note
5.8.x | ^1.x.x | No longer maintained.
6.0.x | ^2.x.x | No longer maintained.
7.x.x | ^3.x.x | No longer maintained.
8.x.x | ^4.x.x | PHP ^8.0 Supported from 4.0.3, Bug fixes only.
8.x.x | ^4.x.x | PHP ^8.0 Supported from 4.0.3, Bug fixes only. No longer maintained.
9.x.x | ^5.x.x |
10.x.x | ^6.x.x |
11.x.x | ^7.x.x |

## Rules

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
"REGON"
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0",
"php": "^8.2",
"illuminate/support": "^11.0",
"ext-calendar": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.1"
"phpunit/phpunit": "^11.0",
"orchestra/testbench": "^9.0"
},
"license": "MIT",
"authors": [
Expand Down

0 comments on commit 4a94744

Please sign in to comment.