Last active
July 8, 2022 19:22
-
-
Save imroca/ffc4fcbe4121e27f8c197499a1b166ff to your computer and use it in GitHub Desktop.
Write command line scripts with PHP and my favorite dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "ignacio/commandlineme", | |
"description": "Command line scripts with PHP", | |
"type": "project", | |
"require": { | |
"aws/aws-sdk-php": "^3.184", | |
"guzzlehttp/guzzle": "^7.3", | |
"illuminate/database": "^8.47", | |
"illuminate/http": "^8.63", | |
"laravel/helpers": "^1.4", | |
"monolog/monolog": "^2.2", | |
"nunomaduro/collision": "^5.10", | |
"nunomaduro/phpinsights": "^2.0", | |
"symfony/config": "^5.3", | |
"symfony/console": "^5.3", | |
"symfony/dependency-injection": "^5.3", | |
"symfony/filesystem": "^5.3", | |
"symfony/monolog-bridge": "^5.3", | |
"symfony/var-dumper": "^5.3", | |
"symfony/yaml": "^5.3", | |
"vlucas/phpdotenv": "^5.3" | |
}, | |
"license": "MIT", | |
"autoload": { | |
"psr-4": { | |
"Edge\\": "src/" | |
}, | |
"files": [ | |
"src/functions.php", | |
"vendor/illuminate/collections/helpers.php" | |
] | |
}, | |
"config": { | |
"optimize-autoloader": true, | |
"preferred-install": "dist", | |
"sort-packages": true, | |
"allow-plugins": { | |
"dealerdirect/phpcodesniffer-composer-installer": true, | |
"pestphp/pest-plugin": true | |
} | |
}, | |
"authors": [ | |
{ | |
"name": "Ignacio Rojas", | |
"email": "[email protected]" | |
} | |
], | |
"require-dev": { | |
"laravel/pint": "^0.2.1", | |
"pestphp/pest": "^1.21", | |
"rector/rector": "^0.12.18" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment