mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
REmoved dep because they get included via task
This commit is contained in:
39
roles/util-desk-dev-php/README.md
Normal file
39
roles/util-desk-dev-php/README.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# PHP Development Utilities 🐘
|
||||
|
||||
## Description
|
||||
|
||||
This Ansible role provides a minimal setup for PHP development on Arch Linux. It installs the PHP interpreter and establishes the foundation for web and backend development using PHP.
|
||||
|
||||
Explore more at the [PHP Official Site](https://www.php.net/), [Arch Wiki - PHP](https://wiki.archlinux.org/title/PHP), and [Wikipedia – PHP](https://en.wikipedia.org/wiki/PHP).
|
||||
|
||||
## Overview
|
||||
|
||||
The `util-desk-dev-php` role extends the base developer persona by adding support for PHP development. It's ideal for backend developers, web engineers, and students working with PHP-based applications and frameworks.
|
||||
|
||||
## Purpose
|
||||
|
||||
To equip developer environments with PHP so that users can begin writing and running PHP scripts or building full-stack applications with common PHP frameworks like Laravel or Symfony.
|
||||
|
||||
## Features
|
||||
|
||||
- **Installs PHP:** Adds the official PHP interpreter from the Arch package repositories.
|
||||
- **Lightweight & Extensible:** Can be extended with PHP modules, web servers, or frameworks.
|
||||
- **Persona Integration:** Builds on the `util-desk-dev-core` role for consistent tooling and workflow.
|
||||
|
||||
## Customization
|
||||
|
||||
This role can be extended with:
|
||||
- PHP extensions (`php-gd`, `php-pgsql`, etc.)
|
||||
- Composer (`composer`)
|
||||
- Web servers like Apache or NGINX
|
||||
- Frameworks like Laravel or Symfony
|
||||
|
||||
Let the role grow as your stack does.
|
||||
|
||||
## Credits 📝
|
||||
|
||||
Developed and maintained by **Kevin Veen-Birkenbach**.
|
||||
Learn more at [www.veen.world](https://www.veen.world)
|
||||
|
||||
Part of the [CyMaIS Project](https://github.com/kevinveenbirkenbach/cymais)
|
||||
License: [CyMaIS NonCommercial License (CNCL)](https://s.veen.world/cncl)
|
28
roles/util-desk-dev-php/meta/main.yml
Normal file
28
roles/util-desk-dev-php/meta/main.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
galaxy_info:
|
||||
author: "Kevin Veen-Birkenbach"
|
||||
description: "Installs PHP and related development tools on Linux for PHP software engineering."
|
||||
license: "CyMaIS NonCommercial License (CNCL)"
|
||||
license_url: "https://s.veen.world/cncl"
|
||||
company: |
|
||||
Kevin Veen-Birkenbach
|
||||
Consulting & Coaching Solutions
|
||||
https://www.veen.world
|
||||
min_ansible_version: "2.9"
|
||||
platforms:
|
||||
- name: Archlinux
|
||||
versions:
|
||||
- rolling
|
||||
galaxy_tags:
|
||||
- development
|
||||
- php
|
||||
- web
|
||||
- software
|
||||
- engineering
|
||||
- archlinux
|
||||
- persona
|
||||
repository: https://s.veen.world/cymais
|
||||
issue_tracker_url: https://s.veen.world/cymaisissues
|
||||
documentation: https://s.veen.world/cymais
|
||||
dependencies:
|
||||
- util-desk-dev-core
|
5
roles/util-desk-dev-php/tasks/main.yml
Normal file
5
roles/util-desk-dev-php/tasks/main.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
- name: install php developer tools
|
||||
community.general.pacman:
|
||||
name:
|
||||
- php
|
||||
state: present
|
Reference in New Issue
Block a user