{"id":27951040,"url":"https://github.com/matheusjohannaraujo/data-manager","last_synced_at":"2026-02-20T17:31:38.182Z","repository":{"id":68815349,"uuid":"174059348","full_name":"matheusjohannaraujo/data-manager","owner":"matheusjohannaraujo","description":"DataManager is a PHP library developed to simplify file and directory manipulation, offering an intuitive class for common filesystem operations.","archived":false,"fork":false,"pushed_at":"2025-04-15T13:14:41.000Z","size":74,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-23T01:08:41.213Z","etag":null,"topics":["data-structures","filestorage","filesystem","filesystem-library","php","php-library","php7","php8"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/matheusjohannaraujo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-03-06T02:52:52.000Z","updated_at":"2025-04-20T18:57:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"e7bae986-69d2-4f6b-8d7a-27c1dc78f4cb","html_url":"https://github.com/matheusjohannaraujo/data-manager","commit_stats":null,"previous_names":["matheusjohannaraujo/data-manager","matheusjohannaraujo/data_manager"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/matheusjohannaraujo/data-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matheusjohannaraujo%2Fdata-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matheusjohannaraujo%2Fdata-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matheusjohannaraujo%2Fdata-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matheusjohannaraujo%2Fdata-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matheusjohannaraujo","download_url":"https://codeload.github.com/matheusjohannaraujo/data-manager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matheusjohannaraujo%2Fdata-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29658372,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T16:33:43.953Z","status":"ssl_error","status_checked_at":"2026-02-20T16:33:43.598Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-structures","filestorage","filesystem","filesystem-library","php","php-library","php7","php8"],"created_at":"2025-05-07T16:16:37.342Z","updated_at":"2026-02-20T17:31:38.152Z","avatar_url":"https://github.com/matheusjohannaraujo.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# DataManager\n\n**DataManager** is a PHP library developed to simplify file and directory manipulation, offering an intuitive class for common filesystem operations.\n\n## 📦 Installation\n\nYou can install the library via [Packagist/Composer](https://packagist.org/packages/mjohann/data-manager):\n\n```bash\ncomposer require mjohann/data-manager\n```\n\n## ⚙️ Requirements\n\n- PHP 7.0 or higher\n\n## 🚀 Features\n\n- Create, read, update, and delete files  \n- Create and delete directories  \n- List files and directories  \n- Check for the existence of files or directories  \n- Read and write content to files  \n- Rename files and directories  \n- Get detailed information about files\n\n## 🧪 Usage Example\n\n```php\n\u003c?php\nrequire_once \"vendor/autoload.php\";\n\nuse MJohann\\Packlib\\DataManager;\n\n// Create a new folder named \"my_dir\"\nDataManager::folderCreate(\"my_dir\");\n\n// Create a new file \"file.txt\" inside \"my_dir\" and write \"Test DataManager\" to it\nDataManager::fileCreate(\"my_dir/file.txt\", \"Test DataManager\");\n\n// Read the contents of \"my_dir/file.txt\" and print it\necho DataManager::fileRead(\"my_dir/file.txt\"), PHP_EOL;\n\n// Get and print the size of the \"my_dir\" folder\necho DataManager::size(\"my_dir/\"), PHP_EOL;\n\n// Scan the \"my_dir\" folder and print its contents as an array\nvar_export(DataManager::folderScan(\"my_dir/\"));\n```\n\nFor more examples, see the [`example/script.php`](example/script.php) file in the repository.\n\n## 📁 Project Structure\n\n```\ndata-manager/\n├── src/\n│   └── DataManager.php\n├── example/\n│   └── script.php\n├── composer.json\n├── .gitignore\n├── LICENSE\n└── README.md\n```\n\n## 📄 License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.\n\n## 👨‍💻 Author\n\nDeveloped by [Matheus Johann Araújo](https://github.com/matheusjohannaraujo) – Pernambuco, Brazil.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatheusjohannaraujo%2Fdata-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatheusjohannaraujo%2Fdata-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatheusjohannaraujo%2Fdata-manager/lists"}