Skip to content

Commit

Permalink
Fix few stuffs in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
maximehuran committed Jul 29, 2024
1 parent d3fc154 commit 8f681f2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ test.container: ## Lint the symfony container
${CONSOLE} lint:container

test.yaml: ## Lint the symfony Yaml files
${CONSOLE} lint:yaml ../../recipes ../../src/Resources/config
${CONSOLE} lint:yaml ../../src/Resources/config

test.schema: ## Validate MySQL Schema
${CONSOLE} doctrine:schema:validate

test.twig: ## Validate Twig templates
${CONSOLE} lint:twig --no-debug templates/ ../../src/Resources/views/
${CONSOLE} lint:twig --no-debug templates/

###
### MIGRATIONS
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ composer config --no-plugins --json extra.symfony.endpoint '["https://api.github
composer require monsieurbiz/sylius-robots-txt-plugin
```

Then remove your `robots.txt` file from your public directory.
```
rm public/robots.txt
```

## Contributing

You can open an issue or a Pull Request if you want! 😘
Expand Down
3 changes: 1 addition & 2 deletions docker-compose.yaml.dist
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.8'
services:
database:
image: mysql:8.0
Expand All @@ -18,4 +17,4 @@ services:
- 1080

volumes:
database: {}
database: {}
6 changes: 0 additions & 6 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ parameters:
paths:
- %rootDir%/src/

checkMissingIterableValueType: false
checkGenericClassInNonGenericObjectType: false

excludePaths:
# Makes PHPStan crash
- 'src/DependencyInjection/SyliusRobotsTxtExtension.php'

# Test dependencies
- 'tests/Application/**/*'

0 comments on commit 8f681f2

Please sign in to comment.