├── .github ├── dependabot.yml └── workflows │ └── php.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── COPYING ├── COPYING.LESSER ├── LICENSE ├── README.md ├── VERSION ├── composer.json ├── phpmd.xml.dist ├── phpstan.neon.dist ├── phpunit.xml.dist ├── src └── Common │ ├── Adapter │ └── Zip │ │ ├── PclZipAdapter.php │ │ ├── ZipArchiveAdapter.php │ │ └── ZipInterface.php │ ├── Autoloader.php │ ├── Drawing.php │ ├── File.php │ ├── Font.php │ ├── Microsoft │ ├── OLERead.php │ └── PasswordEncoder.php │ ├── Text.php │ ├── XMLReader.php │ └── XMLWriter.php └── tests ├── Common └── Tests │ ├── Adapter │ └── Zip │ │ ├── AbstractZipAdapter.php │ │ ├── PclZipAdapterTest.php │ │ └── ZipArchiveAdapterTest.php │ ├── AutoloaderTest.php │ ├── DrawingTest.php │ ├── FileTest.php │ ├── FontTest.php │ ├── Microsoft │ └── PasswordEncoderTest.php │ ├── TextTest.php │ ├── XMLReaderTest.php │ ├── XMLWriterTest.php │ └── _includes │ ├── TestHelperZip.php │ └── XmlDocument.php ├── bootstrap.php └── resources ├── files ├── Sample_01_Simple.pptx └── reader.zip └── images └── PHPPowerPointLogo.png /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.5 -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/composer.json -------------------------------------------------------------------------------- /phpmd.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/phpmd.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Common/Adapter/Zip/PclZipAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/Adapter/Zip/PclZipAdapter.php -------------------------------------------------------------------------------- /src/Common/Adapter/Zip/ZipArchiveAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/Adapter/Zip/ZipArchiveAdapter.php -------------------------------------------------------------------------------- /src/Common/Adapter/Zip/ZipInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/Adapter/Zip/ZipInterface.php -------------------------------------------------------------------------------- /src/Common/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/Autoloader.php -------------------------------------------------------------------------------- /src/Common/Drawing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/Drawing.php -------------------------------------------------------------------------------- /src/Common/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/File.php -------------------------------------------------------------------------------- /src/Common/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/Font.php -------------------------------------------------------------------------------- /src/Common/Microsoft/OLERead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/Microsoft/OLERead.php -------------------------------------------------------------------------------- /src/Common/Microsoft/PasswordEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/Microsoft/PasswordEncoder.php -------------------------------------------------------------------------------- /src/Common/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/Text.php -------------------------------------------------------------------------------- /src/Common/XMLReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/XMLReader.php -------------------------------------------------------------------------------- /src/Common/XMLWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/src/Common/XMLWriter.php -------------------------------------------------------------------------------- /tests/Common/Tests/Adapter/Zip/AbstractZipAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/Adapter/Zip/AbstractZipAdapter.php -------------------------------------------------------------------------------- /tests/Common/Tests/Adapter/Zip/PclZipAdapterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/Adapter/Zip/PclZipAdapterTest.php -------------------------------------------------------------------------------- /tests/Common/Tests/Adapter/Zip/ZipArchiveAdapterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/Adapter/Zip/ZipArchiveAdapterTest.php -------------------------------------------------------------------------------- /tests/Common/Tests/AutoloaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/AutoloaderTest.php -------------------------------------------------------------------------------- /tests/Common/Tests/DrawingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/DrawingTest.php -------------------------------------------------------------------------------- /tests/Common/Tests/FileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/FileTest.php -------------------------------------------------------------------------------- /tests/Common/Tests/FontTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/FontTest.php -------------------------------------------------------------------------------- /tests/Common/Tests/Microsoft/PasswordEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/Microsoft/PasswordEncoderTest.php -------------------------------------------------------------------------------- /tests/Common/Tests/TextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/TextTest.php -------------------------------------------------------------------------------- /tests/Common/Tests/XMLReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/XMLReaderTest.php -------------------------------------------------------------------------------- /tests/Common/Tests/XMLWriterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/XMLWriterTest.php -------------------------------------------------------------------------------- /tests/Common/Tests/_includes/TestHelperZip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/_includes/TestHelperZip.php -------------------------------------------------------------------------------- /tests/Common/Tests/_includes/XmlDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/Common/Tests/_includes/XmlDocument.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/resources/files/Sample_01_Simple.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/resources/files/Sample_01_Simple.pptx -------------------------------------------------------------------------------- /tests/resources/files/reader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/resources/files/reader.zip -------------------------------------------------------------------------------- /tests/resources/images/PHPPowerPointLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPOffice/Common/HEAD/tests/resources/images/PHPPowerPointLogo.png --------------------------------------------------------------------------------