Vendor lock
This commit is contained in:
10
vendor/phar-io/manifest/tests/_fixture/custom.xml
vendored
Normal file
10
vendor/phar-io/manifest/tests/_fixture/custom.xml
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phar xmlns="https://phar.io/xml/manifest/1.0">
|
||||
<contains name="testvendor/testname" version="1.0.0" type="custom"/>
|
||||
<copyright>
|
||||
<license type="bsd-3" url="https://some/uri"/>
|
||||
</copyright>
|
||||
<requires>
|
||||
<php version="*"/>
|
||||
</requires>
|
||||
</phar>
|
13
vendor/phar-io/manifest/tests/_fixture/extension-invalidcompatible.xml
vendored
Normal file
13
vendor/phar-io/manifest/tests/_fixture/extension-invalidcompatible.xml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phar xmlns="https://phar.io/xml/manifest/1.0">
|
||||
<contains name="phpunit/phpunit-example-extension" version="1.0.0" type="extension">
|
||||
<extension for="phpunit/phpunit" compatible="invalid"/>
|
||||
</contains>
|
||||
<copyright>
|
||||
<author name="Sebastian Bergmann" email="sebastian@phpunit.de"/>
|
||||
<license type="BSD-3-Clause" url="https://github.com/sebastianbergmann/phpunit-example-extension/blob/master/LICENSE"/>
|
||||
</copyright>
|
||||
<requires>
|
||||
<php version="^7.0"/>
|
||||
</requires>
|
||||
</phar>
|
13
vendor/phar-io/manifest/tests/_fixture/extension.xml
vendored
Normal file
13
vendor/phar-io/manifest/tests/_fixture/extension.xml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phar xmlns="https://phar.io/xml/manifest/1.0">
|
||||
<contains name="phpunit/phpunit-example-extension" version="1.0.0" type="extension">
|
||||
<extension for="phpunit/phpunit" compatible="^5.7"/>
|
||||
</contains>
|
||||
<copyright>
|
||||
<author name="Sebastian Bergmann" email="sebastian@phpunit.de"/>
|
||||
<license type="BSD-3-Clause" url="https://github.com/sebastianbergmann/phpunit-example-extension/blob/master/LICENSE"/>
|
||||
</copyright>
|
||||
<requires>
|
||||
<php version="^7.0"/>
|
||||
</requires>
|
||||
</phar>
|
11
vendor/phar-io/manifest/tests/_fixture/invalidversion.xml
vendored
Normal file
11
vendor/phar-io/manifest/tests/_fixture/invalidversion.xml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phar xmlns="https://phar.io/xml/manifest/1.0">
|
||||
<contains name="some/library" version="abc" type="library" />
|
||||
<copyright>
|
||||
<author name="Reiner Zufall" email="reiner@zufall.de"/>
|
||||
<license type="BSD-3-Clause" url="https://domain.tld/LICENSE"/>
|
||||
</copyright>
|
||||
<requires>
|
||||
<php version="7.0"/>
|
||||
</requires>
|
||||
</phar>
|
11
vendor/phar-io/manifest/tests/_fixture/invalidversionconstraint.xml
vendored
Normal file
11
vendor/phar-io/manifest/tests/_fixture/invalidversionconstraint.xml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phar xmlns="https://phar.io/xml/manifest/1.0">
|
||||
<contains name="some/library" version="1.0.0" type="library" />
|
||||
<copyright>
|
||||
<author name="Reiner Zufall" email="reiner@zufall.de"/>
|
||||
<license type="BSD-3-Clause" url="https://domain.tld/LICENSE"/>
|
||||
</copyright>
|
||||
<requires>
|
||||
<php version="invalid"/>
|
||||
</requires>
|
||||
</phar>
|
11
vendor/phar-io/manifest/tests/_fixture/library.xml
vendored
Normal file
11
vendor/phar-io/manifest/tests/_fixture/library.xml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phar xmlns="https://phar.io/xml/manifest/1.0">
|
||||
<contains name="some/library" version="1.0.0" type="library" />
|
||||
<copyright>
|
||||
<author name="Reiner Zufall" email="reiner@zufall.de"/>
|
||||
<license type="BSD-3-Clause" url="https://domain.tld/LICENSE"/>
|
||||
</copyright>
|
||||
<requires>
|
||||
<php version="7.0"/>
|
||||
</requires>
|
||||
</phar>
|
11
vendor/phar-io/manifest/tests/_fixture/manifest.xml
vendored
Normal file
11
vendor/phar-io/manifest/tests/_fixture/manifest.xml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phar xmlns="https://phar.io/xml/manifest/1.0">
|
||||
<contains name="some/library" version="1.0.0" type="library" />
|
||||
<copyright>
|
||||
<author name="Reiner Zufall" email="reiner@zufall.de"/>
|
||||
<license type="BSD-3-Clause" url="https://domain.tld/LICENSE"/>
|
||||
</copyright>
|
||||
<requires>
|
||||
<php version="7.0"/>
|
||||
</requires>
|
||||
</phar>
|
46
vendor/phar-io/manifest/tests/_fixture/phpunit-5.6.5.xml
vendored
Normal file
46
vendor/phar-io/manifest/tests/_fixture/phpunit-5.6.5.xml
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phar xmlns="https://phar.io/xml/manifest/1.0">
|
||||
<contains name="phpunit/phpunit" version="5.6.5" type="application"/>
|
||||
<copyright>
|
||||
<author name="Sebastian Bergmann" email="sebastian@phpunit.de"/>
|
||||
<license type="BSD-3-Clause" url="https://github.com/sebastianbergmann/phpunit/blob/master/LICENSE"/>
|
||||
</copyright>
|
||||
<requires>
|
||||
<!-- constraint on next line should be ^5.6 || ^7.0 -->
|
||||
<php version="^7.0">
|
||||
<ext name="dom"/>
|
||||
<ext name="json"/>
|
||||
<ext name="mbstring"/>
|
||||
<ext name="xml"/>
|
||||
<ext name="libxml"/>
|
||||
</php>
|
||||
</requires>
|
||||
<bundles>
|
||||
<component name="doctrine/instantiator" version="1.0.5"/>
|
||||
<component name="myclabs/deep-copy" version="1.5.5"/>
|
||||
<component name="phpdocumentor/reflection-common" version="1.0"/>
|
||||
<component name="phpdocumentor/reflection-docblock" version="3.1.1"/>
|
||||
<component name="phpdocumentor/type-resolver" version="0.2"/>
|
||||
<component name="phpspec/prophecy" version="v1.6.2"/>
|
||||
<component name="phpunit/dbunit" version="2.0.2"/>
|
||||
<component name="phpunit/php-code-coverage" version="4.0.2"/>
|
||||
<component name="phpunit/php-file-iterator" version="1.4.1"/>
|
||||
<component name="phpunit/php-invoker" version="1.1.4"/>
|
||||
<component name="phpunit/php-text-template" version="1.2.1"/>
|
||||
<component name="phpunit/php-timer" version="1.0.8"/>
|
||||
<component name="phpunit/php-token-stream" version="1.4.9"/>
|
||||
<component name="phpunit/phpunit-mock-objects" version="3.4.1"/>
|
||||
<component name="sebastian/code-unit-reverse-lookup" version="1.0.0"/>
|
||||
<component name="sebastian/comparator" version="1.2.2"/>
|
||||
<component name="sebastian/diff" version="1.4.1"/>
|
||||
<component name="sebastian/environment" version="1.3.8"/>
|
||||
<component name="sebastian/exporter" version="2.0.0"/>
|
||||
<component name="sebastian/global-state" version="1.1.1"/>
|
||||
<component name="sebastian/object-enumerator" version="2.0.0"/>
|
||||
<component name="sebastian/recursion-context" version="2.0.0"/>
|
||||
<component name="sebastian/resource-operations" version="1.0.0"/>
|
||||
<component name="sebastian/version" version="2.0.0"/>
|
||||
<component name="symfony/yaml" version="v3.1.7"/>
|
||||
<component name="webmozart/assert" version="1.1.0"/>
|
||||
</bundles>
|
||||
</phar>
|
BIN
vendor/phar-io/manifest/tests/_fixture/test.phar
vendored
Normal file
BIN
vendor/phar-io/manifest/tests/_fixture/test.phar
vendored
Normal file
Binary file not shown.
Reference in New Issue
Block a user