How to get df and t-values from pairwise.t.test?

Is there a way to get the t-values and the df out of a pairwise.t.test for dependent data? Example: data<-c(2,3,2,2,5,2,4,2,4,3,4,2) time<-c(1,1,1,1,2,2,2,2,3,3,3,3) pairwise.t.test(data...