I have this array and I need merge by key "name", also sum key "price", more in code example. Keys are static.
Array
(
    [0] => Array
        (
            [name] => Sapiente quo incidunt nostrum dolore
            [price] => 50
        )
    [1] => Array
        (
            [name] => Global Donation
            [price] => 10
        )
    [2] => Array
        (
            [name] => Global Donation
            [price] => 10
        )
)
Desired result :
Array
(
    [0] => Array
        (
            [name] => Sapiente quo incidunt nostrum dolore
            [price] => 50
        )
    [1] => Array
        (
            [name] => Global Donation
            [price] => 20
        )
)
Thank you very much
