You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tools/chorale.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,16 +15,16 @@ Run the commands from the project root:
15
15
16
16
```bash
17
17
# create chorale.yaml by scanning packages
18
-
php bin/chorale setup
18
+
chorale setup
19
19
20
20
# preview changes without modifying files
21
-
php bin/chorale plan --json > plan.json
21
+
chorale plan --json > plan.json
22
22
23
23
# apply an exported plan
24
-
php bin/chorale apply --file plan.json
24
+
chorale apply --file plan.json
25
25
26
26
# build and apply a plan in one go
27
-
php bin/chorale run
27
+
chorale run
28
28
```
29
29
30
30
Chorale automatically merges all package `composer.json` files into the root `composer.json` so the monorepo can be installed as a single package. Any dependency conflicts are recorded under the `extra.chorale.dependency-conflicts` section for review.
0 commit comments