Skip to content

Commit e1b10ef

Browse files
authored
Fixes outdated command
`composer property-set minimum-stability "alpha"` ``` $ composer property-set minimum-stability "alpha" [Symfony\Component\Console\Exception\CommandNotFoundException] Command "property-set" is not defined. ``` `composer config minimum-stability "alpha"` did the job.
1 parent ff3ed5f commit e1b10ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ composer require joomla/coding-standards "~3.0"
3535
As stability of joomla/coding-standards 3.0.0 is currently alpha, make sure you allow usage of alpha software in Composer:
3636

3737
```bash
38-
composer property-set minimum-stability "alpha"
38+
composer config minimum-stability "alpha"
3939
```
4040

4141
If you want to install the coding-standards globally, edit your Composer global configuration by running:

0 commit comments

Comments
 (0)