Browse Source

Merge remote-tracking branch 'rdohms/abandon-in-json'

Jordi Boggiano 10 years ago
parent
commit
df49d98fba
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Packagist/WebBundle/Entity/Package.php

+ 2 - 1
src/Packagist/WebBundle/Entity/Package.php

@@ -168,7 +168,8 @@ class Package
             'maintainers' => $maintainers,
             'versions' => $versions,
             'type' => $this->getType(),
-            'repository' => $this->getRepository()
+            'repository' => $this->getRepository(),
+            'abandoned' => $this->isAbandoned()
         );
         return $data;
     }