{"id":19521136,"url":"https://github.com/projectista/projectista","last_synced_at":"2026-05-12T20:20:37.747Z","repository":{"id":215648322,"uuid":"738132289","full_name":"projectista/projectista","owner":"projectista","description":"The command line tool to scaffold them all","archived":false,"fork":false,"pushed_at":"2024-02-05T11:37:04.000Z","size":70,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"1.x","last_synced_at":"2025-01-08T13:52:55.173Z","etag":null,"topics":["cli","command-line","command-line-tool","go","golang","php","php-package","projectista","scaffold","scaffolding"],"latest_commit_sha":null,"homepage":"","language":"Go","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/projectista.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-01-02T13:57:22.000Z","updated_at":"2024-01-08T19:07:33.000Z","dependencies_parsed_at":"2024-01-19T14:29:51.089Z","dependency_job_id":"1c2526c8-e8b8-4275-b91a-8f91bc75ee57","html_url":"https://github.com/projectista/projectista","commit_stats":null,"previous_names":["projectista/projectista"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projectista%2Fprojectista","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projectista%2Fprojectista/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projectista%2Fprojectista/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projectista%2Fprojectista/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/projectista","download_url":"https://codeload.github.com/projectista/projectista/tar.gz/refs/heads/1.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240769459,"owners_count":19854656,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cli","command-line","command-line-tool","go","golang","php","php-package","projectista","scaffold","scaffolding"],"created_at":"2024-11-11T00:29:32.473Z","updated_at":"2026-05-12T20:20:37.710Z","avatar_url":"https://github.com/projectista.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/projectista/static/blob/main/logo/projectista@2x.png?raw=true\"\u003e\n\u003c/p\u003e\n\n---\n\n# What is Projectista?\n\nProjectista is a single binary written in go that helps developers\nbootstrap a new application in their favorite programming language / framework.\n\n# How to use it\n\nDownload the `pi` binary from the `Releases` section on `GitHub` and place it in your path.\n\nYou can proceed with the scaffolding.\n\nThis version only supports php packages, others options will be added.\n\n**Known issues**:\n\nOn `MacOS`, if you downloaded the binary using a browser, you need to remove the quarantine flag from the binary before being able to execute it:\n\n```bash\nxattr -d com.apple.quarantine pi\n```\n\n# Download from command line\n\nTo download the latest version of the `pi` executable, using command line, you can use the following command (Replace the file name with the correct one for your architecture / operating system):\n\n```bash\ncurl -s -L https://github.com/projectista/projectista/releases/latest/download/projectista_Darwin_arm64.tar.gz | gunzip -c - | tar xopf - pi\n```\n\nThis command will place the `pi` executable in the current folder, you are free to move it in your path.\n\n## Laravel Application\n\nTo scaffold a new Laravel Application:\n\n```bash\npi laravel application myapplication\n```\n\nThe project will be scaffolded in the current directory. To change directory use the provided flag:\n\n```bash\npi laravel application myapplication --folder=\"myapplication\"\n```\n\n**The folder must exists.**\n\nThe command provides other flags to specify:\n\n- **Author** of the project,\n- **Email** of the author of the project,\n- **Vendor** of the project,\n- **Description** of the project.\n\nYou can have more information using the bundled help:\n\n```bash\npi laravel application --help\n```\n\nSome examples:\n\n```bash\npi laravel application myapplication --author=\"Vincenzo Petrucci\" --vendor=\"illegal studio\"\n```\n\n```bash\npi laravel application myapplication --description=\"My new Laravel application\"\n```\n\n## Laravel package\n\nTo scaffold a new Laravel Package:\n\n```bash\npi laravel package mypackage\n```\n\nThe package will be scaffolded in the current directory. To change directory use the provided flag:\n\n```bash\npi laravel package mypackage --folder=\"myapplication\"\n```\n\n**The folder must exists.**\n\nThe command provides other flags to specify:\n\n- **Author** of the project,\n- **Email** of the author of the project,\n- **Vendor** of the project,\n- **Description** of the project.\n\nYou can have more information using the bundled help:\n\n```bash\npi laravel package --help\n```\n\nSome examples:\n\n```bash\npi laravel package mypackage --author=\"Vincenzo Petrucci\" --vendor=\"illegal studio\"\n```\n\n```bash\npi laravel package mypackage --description=\"My new Laravel package\"\n```\n\n## PHP package\n\nTo scaffold a new project:\n\n```bash\npi php package myproject\n```\n\nThe project will be scaffolded in the current directory. To change directory use the provided flag:\n\n```bash\npi php package myproject --folder=\"myproject\"\n```\n\n**The folder must exists.**\n\nThe command provides other flags to specify:\n\n- **Author** of the project,\n- **Email** of the author of the project,\n- **Vendor** of the project,\n- **Description** of the project.\n\nYou can have more information using the bundled help:\n\n```bash\npi php package --help\n```\n\nSome examples:\n\n```bash\npi php package mypackage --author=\"Vincenzo Petrucci\" --vendor=\"illegal studio\"\n```\n\n```bash\npi php package mypackage --description=\"My awesome project\"\n```\n\n# Build on your machine\n\nIf you want to build the project on your machine you have to first clone it:\n\n```bash\ngit clone --recurse-submodules git@github.com:projectista/projectista.git\n```\n\nThan you can proceed to the build stage:\n\n```bash\ncd projectista\ngo build\n```\n\nThe binary `projectista` will be available in the root of the project.\nRename to `pi` if you whish, and place it in your path.\n\n# Sponsor\n\nThis project is sponsored by [illegal studio](https://illegal.studio)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojectista%2Fprojectista","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprojectista%2Fprojectista","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprojectista%2Fprojectista/lists"}