@@ -13,7 +13,7 @@ setup: ## Setup the project
1313
1414bash : # # Start nginx bash
1515 @make up
16- @$(COMPOSE_RUNNER ) exec morph bash
16+ @$(COMPOSE_RUNNER ) exec constructo bash
1717
1818up : # # Start the project
1919 @$(COMPOSE_RUNNER ) up -d
@@ -28,51 +28,51 @@ prune: ## Prune the project
2828# #@ Composer
2929
3030install : # # Composer install dependencies
31- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph install
31+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo install
3232
3333dump : # # Run the composer dump
34- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph dump-autoload
34+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo dump-autoload
3535
3636
3737# #@ Code analysis
3838
3939lint : # # Perform code style lint
40- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph lint
40+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo lint
4141
4242lint-phpcs : # # Perform code style list using phpcs
43- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph lint:phpcs
43+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo lint:phpcs
4444
4545lint-phpstan : # # Perform code style list using phpstan
46- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph lint:phpstan
46+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo lint:phpstan
4747
4848lint-phpmd : # # Perform code style list using phpmd
49- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph lint:phpmd
49+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo lint:phpmd
5050
5151lint-rector : # # Perform code style list using rector
52- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph lint:rector
52+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo lint:rector
5353
5454lint-psalm : # # Perform code style list using psalm
55- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph lint:psalm
55+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo lint:psalm
5656
5757fix : # # Perform code style fix
58- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph fix
58+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo fix
5959
6060# #@ Tests
6161
6262test : # # Execute the tests
63- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph test -- --coverage-html tests/.phpunit/html
63+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo test -- --coverage-html tests/.phpunit/html
6464
6565
6666# #@ CI
6767
6868ci : # # Execute all analysis as CI does
69- @$(COMPOSE_RUNNER ) run --rm --entrypoint composer morph ci
69+ @$(COMPOSE_RUNNER ) run --rm --entrypoint composer constructo ci
7070
7171
7272# # Quality
7373
7474sonar : # # Run the sonar analysis
75- @$(COMPOSE_RUNNER ) run --rm --entrypoint " /bin/sonar-scanner" morph -Dsonar.host.url=https://sonarcloud.io -X
75+ @$(COMPOSE_RUNNER ) run --rm --entrypoint " /bin/sonar-scanner" constructo -Dsonar.host.url=https://sonarcloud.io -X
7676
7777
7878# #@ Docs
0 commit comments