File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
The code styles are enforced via the popular [ ` php_codesniffer ` ] ( https://packagist.org/packages/squizlabs/php_codesniffer )
8
8
and can be installed via Composer by the name ** ` inpsyde/php-coding-standards ` ** .
9
9
10
- It means they can be installed by adding the entry ro composer.json ` require ` :
10
+ It means they can be installed by adding the entry to composer.json ` require-dev ` :
11
11
12
12
``` json
13
13
{
14
- "require" : {
15
- "inpsyde/php-coding-standards" : " ^0.3 "
14
+ "require-dev " : {
15
+ "inpsyde/php-coding-standards" : " ^0.5 "
16
16
}
17
17
}
18
18
```
19
19
20
20
or via command line with:
21
21
22
22
```
23
- $ composer require inpsyde/php-coding-standards
23
+ $ composer require inpsyde/php-coding-standards --dev
24
24
```
25
25
26
26
-------------
You can’t perform that action at this time.
0 commit comments