Ejemplo n.º 1
0
 /**
  * @group medium
  */
 public function testAll()
 {
     $packagist = new Packagist('http://packagist.org');
     $all = $packagist->all();
     $this->assertTrue(in_array('jleagle/packagist-api-client', $all));
     $filtered = $packagist->all('*zend*');
     $this->assertTrue(in_array('zendframework/zend-authentication', $filtered));
     $this->assertFalse(in_array('jleagle/packagist-api-client', $filtered));
 }