Make sure you edit the correct composer file. With your IDE it's easy by mistake to open the frameworks composer file instead of the one belonging to your project.
<?php
namespace App\Http\Controllers;
use function App\Http\array_increase;
class SomeClass
{
function doSometime() {
...
$array = array_increase($array, 'image_url');
...
}
}