├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── docs ├── creating.md ├── deleting.md ├── downloading.md ├── fetching_files_and_directories.md ├── installation.md ├── setup.md └── uploading.md ├── lib └── Touki │ └── FTP │ ├── Connection │ ├── AnonymousConnection.php │ ├── Connection.php │ └── SSLConnection.php │ ├── ConnectionInterface.php │ ├── Creator │ └── RecursiveDirectoryCreator.php │ ├── CreatorInterface.php │ ├── CreatorVotableInterface.php │ ├── CreatorVoter.php │ ├── CreatorVoterInterface.php │ ├── Deleter │ ├── FileDeleter.php │ └── RecursiveDirectoryDeleter.php │ ├── DeleterInterface.php │ ├── DeleterVotableInterface.php │ ├── DeleterVoter.php │ ├── DeleterVoterInterface.php │ ├── Downloader │ ├── FileDownloader.php │ ├── NbFileDownloader.php │ ├── NbResourceDownloader.php │ └── ResourceDownloader.php │ ├── DownloaderInterface.php │ ├── DownloaderVotableInterface.php │ ├── DownloaderVoter.php │ ├── DownloaderVoterInterface.php │ ├── Exception │ ├── ConnectionEstablishedException.php │ ├── ConnectionException.php │ ├── ConnectionUnestablishedException.php │ ├── DirectoryException.php │ ├── DownloadException.php │ ├── FTPException.php │ └── UploadException.php │ ├── FTP.php │ ├── FTPFactory.php │ ├── FTPInterface.php │ ├── FTPWrapper.php │ ├── FilesystemFactory.php │ ├── FilesystemFactoryInterface.php │ ├── Manager │ └── FTPFilesystemManager.php │ ├── Model │ ├── Directory.php │ ├── File.php │ ├── Filesystem.php │ └── Permissions.php │ ├── PermissionsFactory.php │ ├── Uploader │ ├── FileUploader.php │ ├── NbFileUploader.php │ ├── NbResourceUploader.php │ └── ResourceUploader.php │ ├── UploaderInterface.php │ ├── UploaderVotableInterface.php │ ├── UploaderVoter.php │ ├── UploaderVoterInterface.php │ └── WindowsFilesystemFactory.php ├── phpunit.xml.dist └── tests ├── Touki └── FTP │ └── Tests │ ├── Connection │ └── ConnectionTest.php │ ├── ConnectionAwareTestCase.php │ ├── Creator │ └── RecursiveDirectoryCreatorTest.php │ ├── CreatorVoterTest.php │ ├── Deleter │ └── RecursiveDirectoryDeleterTest.php │ ├── Downloader │ ├── FileDownloaderTest.php │ ├── NbFileDownloaderTest.php │ ├── NbResourceDownloaderTest.php │ └── ResourceDownloaderTest.php │ ├── DownloaderVoterFTPTest.php │ ├── DownloaderVoterTest.php │ ├── FTPFactoryTest.php │ ├── FTPTest.php │ ├── FilesystemFactoryTest.php │ ├── Manager │ └── FTPFilesystemManagerTest.php │ ├── PermissionsFactoryTest.php │ ├── Uploader │ ├── FileUploaderTest.php │ ├── NbFileUploaderTest.php │ ├── NbResourceUploaderTest.php │ └── ResourceUploaderTest.php │ ├── UploaderVoterFTPTest.php │ ├── UploaderVoterTest.php │ └── WindowsFilesystemFactoryTest.php └── content ├── file1.txt ├── file2.txt └── folder └── file3.txt /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | phpunit.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/composer.json -------------------------------------------------------------------------------- /docs/creating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/docs/creating.md -------------------------------------------------------------------------------- /docs/deleting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/docs/deleting.md -------------------------------------------------------------------------------- /docs/downloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/docs/downloading.md -------------------------------------------------------------------------------- /docs/fetching_files_and_directories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/docs/fetching_files_and_directories.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/uploading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/docs/uploading.md -------------------------------------------------------------------------------- /lib/Touki/FTP/Connection/AnonymousConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Connection/AnonymousConnection.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Connection/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Connection/Connection.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Connection/SSLConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Connection/SSLConnection.php -------------------------------------------------------------------------------- /lib/Touki/FTP/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/ConnectionInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Creator/RecursiveDirectoryCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Creator/RecursiveDirectoryCreator.php -------------------------------------------------------------------------------- /lib/Touki/FTP/CreatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/CreatorInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/CreatorVotableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/CreatorVotableInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/CreatorVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/CreatorVoter.php -------------------------------------------------------------------------------- /lib/Touki/FTP/CreatorVoterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/CreatorVoterInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Deleter/FileDeleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Deleter/FileDeleter.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Deleter/RecursiveDirectoryDeleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Deleter/RecursiveDirectoryDeleter.php -------------------------------------------------------------------------------- /lib/Touki/FTP/DeleterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/DeleterInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/DeleterVotableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/DeleterVotableInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/DeleterVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/DeleterVoter.php -------------------------------------------------------------------------------- /lib/Touki/FTP/DeleterVoterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/DeleterVoterInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Downloader/FileDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Downloader/FileDownloader.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Downloader/NbFileDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Downloader/NbFileDownloader.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Downloader/NbResourceDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Downloader/NbResourceDownloader.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Downloader/ResourceDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Downloader/ResourceDownloader.php -------------------------------------------------------------------------------- /lib/Touki/FTP/DownloaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/DownloaderInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/DownloaderVotableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/DownloaderVotableInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/DownloaderVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/DownloaderVoter.php -------------------------------------------------------------------------------- /lib/Touki/FTP/DownloaderVoterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/DownloaderVoterInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Exception/ConnectionEstablishedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Exception/ConnectionEstablishedException.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Exception/ConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Exception/ConnectionException.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Exception/ConnectionUnestablishedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Exception/ConnectionUnestablishedException.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Exception/DirectoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Exception/DirectoryException.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Exception/DownloadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Exception/DownloadException.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Exception/FTPException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Exception/FTPException.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Exception/UploadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Exception/UploadException.php -------------------------------------------------------------------------------- /lib/Touki/FTP/FTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/FTP.php -------------------------------------------------------------------------------- /lib/Touki/FTP/FTPFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/FTPFactory.php -------------------------------------------------------------------------------- /lib/Touki/FTP/FTPInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/FTPInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/FTPWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/FTPWrapper.php -------------------------------------------------------------------------------- /lib/Touki/FTP/FilesystemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/FilesystemFactory.php -------------------------------------------------------------------------------- /lib/Touki/FTP/FilesystemFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/FilesystemFactoryInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Manager/FTPFilesystemManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Manager/FTPFilesystemManager.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Model/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Model/Directory.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Model/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Model/File.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Model/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Model/Filesystem.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Model/Permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Model/Permissions.php -------------------------------------------------------------------------------- /lib/Touki/FTP/PermissionsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/PermissionsFactory.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Uploader/FileUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Uploader/FileUploader.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Uploader/NbFileUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Uploader/NbFileUploader.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Uploader/NbResourceUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Uploader/NbResourceUploader.php -------------------------------------------------------------------------------- /lib/Touki/FTP/Uploader/ResourceUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/Uploader/ResourceUploader.php -------------------------------------------------------------------------------- /lib/Touki/FTP/UploaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/UploaderInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/UploaderVotableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/UploaderVotableInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/UploaderVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/UploaderVoter.php -------------------------------------------------------------------------------- /lib/Touki/FTP/UploaderVoterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/UploaderVoterInterface.php -------------------------------------------------------------------------------- /lib/Touki/FTP/WindowsFilesystemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/lib/Touki/FTP/WindowsFilesystemFactory.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Connection/ConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Connection/ConnectionTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/ConnectionAwareTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/ConnectionAwareTestCase.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Creator/RecursiveDirectoryCreatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Creator/RecursiveDirectoryCreatorTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/CreatorVoterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/CreatorVoterTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Deleter/RecursiveDirectoryDeleterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Deleter/RecursiveDirectoryDeleterTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Downloader/FileDownloaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Downloader/FileDownloaderTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Downloader/NbFileDownloaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Downloader/NbFileDownloaderTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Downloader/NbResourceDownloaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Downloader/NbResourceDownloaderTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Downloader/ResourceDownloaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Downloader/ResourceDownloaderTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/DownloaderVoterFTPTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/DownloaderVoterFTPTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/DownloaderVoterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/DownloaderVoterTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/FTPFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/FTPFactoryTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/FTPTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/FTPTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/FilesystemFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/FilesystemFactoryTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Manager/FTPFilesystemManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Manager/FTPFilesystemManagerTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/PermissionsFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/PermissionsFactoryTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Uploader/FileUploaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Uploader/FileUploaderTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Uploader/NbFileUploaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Uploader/NbFileUploaderTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Uploader/NbResourceUploaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Uploader/NbResourceUploaderTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/Uploader/ResourceUploaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/Uploader/ResourceUploaderTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/UploaderVoterFTPTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/UploaderVoterFTPTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/UploaderVoterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/UploaderVoterTest.php -------------------------------------------------------------------------------- /tests/Touki/FTP/Tests/WindowsFilesystemFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touki653/php-ftp-wrapper/HEAD/tests/Touki/FTP/Tests/WindowsFilesystemFactoryTest.php -------------------------------------------------------------------------------- /tests/content/file1.txt: -------------------------------------------------------------------------------- 1 | file1 -------------------------------------------------------------------------------- /tests/content/file2.txt: -------------------------------------------------------------------------------- 1 | file2 -------------------------------------------------------------------------------- /tests/content/folder/file3.txt: -------------------------------------------------------------------------------- 1 | file3 2 | --------------------------------------------------------------------------------