Skip to content

Commit

Permalink
Merge pull request #9 from smartbooster/add_dev_makefile
Browse files Browse the repository at this point in the history
Add dev makefile and release tag v1
  • Loading branch information
mathieu-ducrot committed Jan 4, 2024
2 parents 4d317d3 + 16c0fe8 commit c5df969
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
"dev-master": "1.0.x-dev"
}
}
}
11 changes: 11 additions & 0 deletions make/dev.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
##
## Development
## -----------
.PHONY: debug-env
debug-env: ## Display the Symfony Container Environment Variables
$(CONSOLE) debug:container --env-vars --env=$(ENV)

.PHONY: cc
cc: ## Cache clear symfony
$(CONSOLE) cache:clear --no-warmup --env=$(ENV)
$(CONSOLE) cache:warmup --env=$(ENV)
3 changes: 2 additions & 1 deletion recipes.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"smartbooster/standard-bundle": [
"0.1",
"0.2",
"0.4"
"0.4",
"1.0"
]
},
"branch": "main",
Expand Down
27 changes: 27 additions & 0 deletions smartbooster.standard-bundle.1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"manifests": {
"smartbooster/standard-bundle": {
"manifest": {
"bundles": {
"DAMA\\DoctrineTestBundle\\DAMADoctrineTestBundle": ["test"],
"Liip\\TestFixturesBundle\\LiipTestFixturesBundle": ["test"],
"Smart\\StandardBundle\\SmartStandardBundle": ["dev", "test"]
},
"copy-from-package": {
"config/packages/dama_doctrine_test_bundle.yaml": "%CONFIG_DIR%/packages/test/dama_doctrine_test_bundle.yaml",
"config/packages/liip_test_fixtures.yaml": "%CONFIG_DIR%/packages/test/liip_test_fixtures.yaml",
"make/dev.mk": "make/dev.mk",
"make/qualimetry.mk": "make/qualimetry.mk",
"make/test.mk": "make/test.mk",
"phpcs.xml": "phpcs.xml",
"phpstan.neon": "phpstan.neon",
"phpunit.xml.dist": "phpunit.xml.dist"
},
"gitignore": [
"/.phpcs-cache"
]
},
"ref": "936ed2d0f743b91c107fe0ad98dc866f00172094"
}
}
}

0 comments on commit c5df969

Please sign in to comment.