123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "name": "crazywhalecc/static-php-cli",
- "description": "Build single static PHP binary, with PHP project together, with popular extensions included.",
- "license": "MIT",
- "authors": [
- {
- "name": "jerry",
- "email": "admin@zhamao.me"
- }
- ],
- "require": {
- "php": ">= 8.1",
- "ext-mbstring": "*",
- "ext-pcntl": "*",
- "laravel/prompts": "^0.1.3",
- "symfony/console": "^6 || ^5 || ^4",
- "zhamao/logger": "^1.0"
- },
- "require-dev": {
- "nunomaduro/collision": "*",
- "friendsofphp/php-cs-fixer": "^3.2 != 3.7.0",
- "phpstan/phpstan": "^1.1",
- "captainhook/captainhook": "^5.10",
- "captainhook/plugin-composer": "^5.3"
- },
- "autoload": {
- "psr-4": {
- "SPC\\": "src/SPC"
- },
- "files": [
- "src/globals/defines.php",
- "src/globals/functions.php"
- ]
- },
- "bin": [
- "bin/spc"
- ],
- "scripts": {
- "analyse": "phpstan analyse --memory-limit 300M",
- "cs-fix": "php-cs-fixer fix",
- "test": "bin/phpunit --no-coverage"
- },
- "config": {
- "allow-plugins": {
- "phpstan/extension-installer": true,
- "captainhook/plugin-composer": true
- },
- "optimize-autoloader": true,
- "sort-packages": true
- }
- }
|