Skip to content

Commit

Permalink
Merge pull request #63 from akeneo/addPhpCsFixer3Support
Browse files Browse the repository at this point in the history
Allow phpcsfixer 3.x dependency
  • Loading branch information
AymericPlanche authored Jun 16, 2021
2 parents 662d4b6 + b05e9d4 commit 113f584
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 25 deletions.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2.1

jobs:
build:
docker:
- image: circleci/php:8.0.7-cli
steps:
- checkout
- run: composer install --dev
- run: ./vendor/bin/phpspec run
- run: ./vendor/bin/phpstan analyse src -l 5

22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# PHP Coupling Detector

[![Build Status](https://travis-ci.org/akeneo/php-coupling-detector.png)](https://travis-ci.org/akeneo/php-coupling-detector)

The PHP Coupling Detector tool detects all the coupling issues of your project with respect to the coupling
rules you have defined.

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"require": {
"php": ">=7.2",
"friendsofphp/php-cs-fixer": "^2.1",
"friendsofphp/php-cs-fixer": "^2.1||^3.0",
"symfony/event-dispatcher": "^4.4||^5.0",
"symfony/finder": "^4.4||^5.0",
"symfony/console": "^4.4||^5.0",
Expand Down

0 comments on commit 113f584

Please sign in to comment.