Skip to content

Commit 3e31ce7

Browse files
authored
Removed references to package laravel/pint (#259)
1 parent 116713a commit 3e31ce7

File tree

6 files changed

+64
-84
lines changed

6 files changed

+64
-84
lines changed
File renamed without changes.

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ help: ## Show this help
1212
build: ## Build docker image for local development
1313
docker compose build
1414

15-
install: clean ## Install regular PHP dependencies
16-
docker compose run app composer update --no-interaction --prefer-dist
15+
install: ## Install regular PHP dependencies
16+
docker compose run --rm app composer install --no-interaction --prefer-dist
1717

1818
test: ## Execute php tests and linters
1919
docker compose run app composer test
@@ -25,5 +25,5 @@ shell: ## Start shell into container with php
2525
docker compose run app sh
2626

2727
clean: ## Remove all dependencies and unimportant files
28-
-rm -Rf ./composer.lock ./vendor
28+
-rm -Rf ./vendor
2929

PINT.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ And then completely fix them all with:
5454
You must pass a set of routes to the `Finder::createWithRoutes()` call. For example, for [Laravel](https://laravel.com) projects, this would be:
5555

5656
```php
57-
Finder::createWithRoutes(['./app', './config', './database', './resources', './routes', './tests'])
57+
Finder::createWithRoutes(['./app', './config', './database', './routes', './tests'])
5858
```
5959

6060
Also, you can pass a custom set of rules to the `Config::createWithFinder()` call:
@@ -66,10 +66,6 @@ Config::createWithFinder($finder, [
6666
])
6767
```
6868

69-
## Laravel Pint
70-
71-
The following describes the use of styles in conjunction with `friendsofphp/php-cs-fixer`. Also you can use these style settings for [Laravel Pint](PINT.md).
72-
7369
## Support
7470

7571
If you find any package errors, please, [make an issue](https://github.com/gomzyakov/php-cs-fixer-config/issues) in current repository.

0 commit comments

Comments
 (0)