Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | function process( string $in, array $params ) { |
||
33 | $json = json_decode( $in, true ); |
||
34 | |||
35 | $json[ 'require' ][ $params[ 1 ] ] = $params[ 2 ]; |
||
36 | |||
37 | $json[ 'repositories' ] = [ |
||
38 | [ |
||
39 | 'type' => 'vcs', |
||
40 | 'url' => 'https://github.com' . substr( $params[ 3 ], 1 ) . '.git', |
||
41 | ], |
||
42 | ]; |
||
43 | |||
44 | return $json; |
||
45 | } |
||
57 | write( $out ); |