A short description
Project description
Pocus - PHP Package Installer and Runner
Pocus is a Python tool that simplifies PHP package management and execution. It automatically detects and installs the required PHP version based on composer.json requirements, downloads PHP packages, and provides an easy way to run bin scripts and PHP files.
Features
- Automatic PHP Version Management: Detects required PHP version from composer.json and installs it
- Package Installation: Installs PHP packages using Composer
- Bin Script Execution: Runs bin scripts from installed packages
- GitHub Repository Support: Downloads and installs packages directly from GitHub URLs
- PHP File Execution: Runs PHP files using the installed PHP version
- Cross-Platform: Works on macOS, Linux, and Windows
- Multiple Architecture Support: Supports x86_64, arm64, and more
Installation
# Clone the repository
git clone https://github.com/pronskiy/pocus.git
cd pocus
# Install as a Python package (optional)
pip install -e .
Usage
Basic Usage
# Install a package and its dependencies
python -m pocus phpstan/phpstan
# Run a bin script from an installed package
python -m pocus phpstan/phpstan phpstan analyse path/to/code
# Run a PHP file using the installed PHP version
python -m pocus phpstan/phpstan script.php arg1 arg2
Installing from GitHub
# Install a package directly from GitHub
python -m pocus https://github.com/phpstan/phpstan
Version Constraints
Pocus supports various version constraints in composer.json:
{
"require": {
"php": "^7.4|^8.0" // Will use PHP 8.0
}
}
How It Works
- Pocus reads the PHP version requirement from composer.json
- It normalizes the PHP version to match available versions
- It downloads the appropriate PHP binary if it doesn't already exist
- It stores the PHP binary in ~/.pocus/{version}/
- It installs the requested package using Composer
- It executes bin scripts or PHP files as requested
Directory Structure
~/.pocus/
├── downloads/ # Temporary storage for downloaded archives
└── {version}/ # Extracted PHP binaries for each version
└── php # PHP binary executable
Requirements
- Python 3.6+
- Internet connection for downloading PHP binaries and packages
Contributing
Contributions are welcome! Feel free to submit issues or pull requests.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pocus-0.1.2.tar.gz.
File metadata
- Download URL: pocus-0.1.2.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ee1a2dac3ef53905a7084ab44aec35471e6943bc8c352ee7342c6218e3e203f
|
|
| MD5 |
222d793e9eb5fade923dba641edc2b66
|
|
| BLAKE2b-256 |
725380a6f11da4d2224b5e96be439c59b6dce49eb43aadb1bd1ecca391ce97ab
|
File details
Details for the file pocus-0.1.2-py3-none-any.whl.
File metadata
- Download URL: pocus-0.1.2-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67fa09d458c2ec2fbd0ddc06086918d45e6beb073cd4b190e21cf0875370a0ff
|
|
| MD5 |
51a9fdadf26b40920083bc323690d3b9
|
|
| BLAKE2b-256 |
2c141d12afe76ba0ff84d99faaf08b8a330c9e8ccbc9528c643fb1d2312d8cd6
|