Thiago Carvalho 9 éve
szülő
commit
320533bcf9

+ 4 - 0
res/composer-schema.json

@@ -442,6 +442,10 @@
             "items": {
                 "type": "string"
             }
+        },
+        "abandoned": {
+            "type": ["boolean"],
+            "description": "Indicates whether this package has been abandoned. Defaults to false."
         }
     }
 }

+ 6 - 0
tests/Composer/Test/Json/ComposerSchemaTest.php

@@ -38,6 +38,12 @@ class ComposerSchemaTest extends \PHPUnit_Framework_TestCase
         ), $this->check($json));
     }
 
+    public function testOptionalAbandonedProperty()
+    {
+        $json = '{"name": "name", "description": "description", "abandoned": true}';
+        $this->assertTrue($this->check($json));
+    }
+
     public function testMinimumStabilityValues()
     {
         $json = '{ "name": "vendor/package", "description": "generic description", "minimum-stability": "" }';