{"id":15287433,"url":"https://github.com/monogramm/monogrammproxmoxbundle","last_synced_at":"2026-02-11T16:01:46.501Z","repository":{"id":57019403,"uuid":"128634842","full_name":"Monogramm/MonogrammProxmoxBundle","owner":"Monogramm","description":":elephant: :alembic: ProxmoxVE API integration in Symfony","archived":false,"fork":false,"pushed_at":"2019-02-14T19:31:54.000Z","size":30,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-27T15:30:16.613Z","etag":null,"topics":["api","php","proxmox","symfony","symfony-bundle"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Monogramm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-04-08T11:39:35.000Z","updated_at":"2020-08-02T22:25:21.000Z","dependencies_parsed_at":"2022-08-22T11:10:07.625Z","dependency_job_id":null,"html_url":"https://github.com/Monogramm/MonogrammProxmoxBundle","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Monogramm/MonogrammProxmoxBundle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monogramm%2FMonogrammProxmoxBundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monogramm%2FMonogrammProxmoxBundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monogramm%2FMonogrammProxmoxBundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monogramm%2FMonogrammProxmoxBundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Monogramm","download_url":"https://codeload.github.com/Monogramm/MonogrammProxmoxBundle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monogramm%2FMonogrammProxmoxBundle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29337000,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T16:00:30.228Z","status":"ssl_error","status_checked_at":"2026-02-11T16:00:25.398Z","response_time":97,"last_error":"SSL_read: 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":["api","php","proxmox","symfony","symfony-bundle"],"created_at":"2024-09-30T15:28:08.448Z","updated_at":"2026-02-11T16:01:46.484Z","avatar_url":"https://github.com/Monogramm.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MonogrammProxmoxBundle: Proxmox VE API integration in Symfony\n\nThis bundle integrates [ZzAntares Proxmox's unoffical PHP client](https://github.com/ZzAntares/ProxmoxVE) in [the Symfony framework](http://symfony.com).\n\n[![Build Status](https://travis-ci.org/Monogramm/MonogrammProxmoxBundle.svg)](https://travis-ci.org/Monogramm/MonogrammProxmoxBundle)\n[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Monogramm/MonogrammProxmoxBundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/Monogramm/MonogrammProxmoxBundle/?branch=master) \n[![Latest version](https://img.shields.io/packagist/v/monogramm/proxmox-bundle.svg?style=flat)](https://packagist.org/packages/monogramm/proxmox-bundle)\n\n## Installation\n\nUse [Composer](http://getcomposer.org) to install the bundle:\n\n`composer require monogramm/proxmox-bundle`\n\nThen, update your `app/config/AppKernel.php` file:\n\n```php\n    public function registerBundles()\n    {\n        $bundles = array(\n            // ...\n            new Monogramm\\ProxmoxBundle\\MonogrammProxmoxBundle(),\n            // ...\n        );\n\n        return $bundles;\n    }\n```\n\nConfigure the bundle in `app/config/config.yml`:\n\n```yaml\nmonogramm_proxmox:\n    hostname: \"%proxmox_hostname%\"\n    username: \"%proxmox_username%\"\n    password: \"%proxmox_password%\"\n    realm:    \"%proxmox_realm%\"\n    port:     \"%proxmox_port%\"\n```\n\nFinally, update your `app/config/parameters.yml` file to store your Proxmox VE API credentials:\n\n```yaml\nparameters:\n    # ...\n    proxmox_hostname: \"proxmox.company.com\"\n    proxmox_username: \"root\"\n    proxmox_password: \"mysupersecretpassword\"\n    proxmox_realm:    \"pam\"\n    proxmox_port:     \"8006\"\n```\n\n## Usage\n\nThe bundle automatically registers a `proxmox` service in the Dependency Injection Container. That service is an instance of `\\ProxmoxVE\\Proxmox`.\n\nExample usage in a controller:\n\n```php\n// ...\n\n    public function nodesAction()\n    {\n        // Get all nodes\n        $this\n            -\u003eget('proxmox')\n            -\u003egetNodes()\n        ;\n\n        // ...\n    }\n\n    public function createVmAction($targetnode, $id)\n    {\n        // Create an lxc container\n        $this\n            -\u003eget('proxmox')\n            -\u003ecreate(\n                \"/nodes/$targetnode/lxc\",\n                [\n                    'net0' =\u003e 'name=myct0,bridge=vmbr0',\n                    'ostemplate' =\u003e 'local:vztmpl/debian-8.0-standard_8.0-1_amd64.tar.gz',\n                    'vmid' =\u003e \"$id\",\n                ]\n            )\n        ;\n\n        // ...\n    }\n\n\n// ...\n```\n\nContributing\n------------\n\nSee [CONTRIBUTING](CONTRIBUTING.md) file.\n\n\nLicense\n-------\n\nSee [LICENSE](LICENSE) file.\n\nAuthor(s)\n------------\n\n* [Monogramm](https://github.com/Monogramm)\n\nAwesome Contributors\n------------\n\n* [GothShoot](https://github.com/GothShoot)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonogramm%2Fmonogrammproxmoxbundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmonogramm%2Fmonogrammproxmoxbundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonogramm%2Fmonogrammproxmoxbundle/lists"}