O Find tem uma ação interna "-ls" que deve fazer o que você precisa (veja abaixo). Se essa não for a informação que você procura, você também pode usar -printf e diretivas de formato para controlar exatamente o que é impresso.
james@Brindle:/tmp/blah$ time /usr/bin/find . -name "*.php" -exec ls -l \{} \;
-rw-r--r-- 1 james wheel 0 8 Jul 08:50 ./other.php
-rw-r--r-- 1 james wheel 0 8 Jul 08:50 ./thing.php
real 0m0.015s
user 0m0.005s
sys 0m0.008s
james@Brindle:/tmp/blah$ time find . -ls
1631212 0 drwxr-xr-x 4 james wheel 136 8 Jul 08:50 .
1631215 0 -rw-r--r-- 1 james wheel 0 8 Jul 08:50 ./other.php
1631213 0 -rw-r--r-- 1 james wheel 0 8 Jul 08:50 ./thing.php
real 0m0.006s
user 0m0.002s
sys 0m0.003s