Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
From the plugin root directory, run the following commands:

```bash
$ make install -e SYLIUS_VERSION=XX SYMFONY_VERSION=YY PHP_VERSION=ZZ
$ make install -e SYLIUS_VERSION=XX SYMFONY_VERSION=YY
```

Default values : XX=2.0 and YY=7.2 and ZZ=8.2
Default values : XX=2.1 and YY=6.4

To be able to setup the plugin database, remember to configure you database credentials
in `install/Application/.env.local` and `install/Application/.env.test.local`.
in `tests/TestApplication/.env.local` and `tests/TestApplication/.env.test.local`.

To reset test environment:
```bash
Expand Down Expand Up @@ -39,11 +39,11 @@ $ make reset
- Using `test` environment:

```bash
$ (cd tests/Application && bin/console server:run -d public -e test)
$ symfony server:start -d -e test
```

- Using `dev` environment:

```bash
$ (cd tests/Application && bin/console server:run -d public -e dev)
$ symfony server:start -d -e dev
```
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"license": "MIT",
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-intl": "*",
"ext-json": "*",
"dragonmantank/cron-expression": "^3.4",
"sylius/sylius": "^2.0",
"symfony/framework-bundle": "^5.4|^6.4|^7.0|^8.0",
Expand Down