Skip to content

Commit 5b728fb

Browse files
authored
WEB-434: Fix local project setup. (#62)
1 parent 6671fb8 commit 5b728fb

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

README.md.dist

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ To setup the project, ensure you have all prerequesites fullfilled and follow ne
3333
* Initialize setup and run docker compose
3434

3535
phapp setup localdev
36-
phapp build
3736
docker-compose up -d --build
3837

3938
* Build the app:
@@ -71,7 +70,7 @@ During development it's convenient to permanently switch to the docker cli conta
7170
## Command line tools
7271

7372
### Phapp
74-
Version 0.6.7 or later is required. Either install it globally and run `phapp`
73+
Version 0.7.0 or later is required. Either install it globally and run `phapp`
7574
or execute the embedded phapp version from the root repository directory:
7675

7776
```./vendor/bin/phapp ```

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
"tools": {
122122
"phapp": {
123123
"url": "https://github.com/drunomics/phapp-cli/releases/download/0.7.0/phapp.phar",
124-
"version": "0.6.7"
124+
"version": "0.7.0"
125125
},
126126
"local-php-security-checker": {
127127
"url": "https://github.com/fabpot/local-php-security-checker/releases/download/v2.0.5/local-php-security-checker_2.0.5_linux_amd64",

phapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ commands:
1818
source dotenv/loader.sh
1919
build: |
2020
EXTRA_ARGS=$([[ $PHAPP_ENV_MODE = 'production' ]] && echo '--no-dev' || echo '');
21-
composer install --no-interaction $EXTRA_ARGS
21+
composer install --ignore-platform-reqs --no-interaction $EXTRA_ARGS
2222
clean: |
2323
# Clean composer vendor via the provided script.
2424
composer clean

0 commit comments

Comments
 (0)