Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
leeovery committed Nov 30, 2021
1 parent 0e266b6 commit f08ed15
Show file tree
Hide file tree
Showing 3 changed files with 307 additions and 499 deletions.
Binary file added builds/cryptocredible
Binary file not shown.
127 changes: 67 additions & 60 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,64 +1,71 @@
{
"name": "laravel-zero/laravel-zero",
"description": "The Laravel Zero Framework.",
"keywords": ["framework", "laravel", "laravel zero", "console", "cli"],
"homepage": "https://laravel-zero.com",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/laravel-zero/laravel-zero/issues",
"source": "https://github.com/laravel-zero/laravel-zero"
},
"authors": [
{
"name": "Nuno Maduro",
"email": "[email protected]"
}
"name": "laravel-zero/laravel-zero",
"description": "The Laravel Zero Framework.",
"keywords": [
"framework",
"laravel",
"laravel zero",
"console",
"cli"
],
"homepage": "https://laravel-zero.com",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/laravel-zero/laravel-zero/issues",
"source": "https://github.com/laravel-zero/laravel-zero"
},
"authors": [
{
"name": "Nuno Maduro",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"bensampo/laravel-enum": "^4.1",
"brick/math": "^0.9.3",
"brick/money": "^0.5.3",
"guzzlehttp/guzzle": "^7.4",
"illuminate/http": "^8.0",
"laminas/laminas-text": "^2.8",
"laravel-zero/framework": "^8.8",
"league/csv": "^9.7"
},
"require-dev": {
"mockery/mockery": "^1.4.3",
"friendsofphp/php-cs-fixer": "^3.1",
"pestphp/pest": "^1.3"
},
"autoload": {
"files": [
"app/helpers.php"
],
"require": {
"php": "^8.0",
"bensampo/laravel-enum": "^4.1",
"brick/math": "^0.9.3",
"brick/money": "^0.5.3",
"guzzlehttp/guzzle": "^7.4",
"illuminate/http": "^8.0",
"laminas/laminas-text": "^2.8",
"laravel-zero/framework": "^8.8",
"league/csv": "^9.7",
"spatie/async": "^1.5"
},
"require-dev": {
"mockery/mockery": "^1.4.3",
"friendsofphp/php-cs-fixer": "^3.1",
"pestphp/pest": "^1.3"
},
"autoload": {
"files": [
"app/helpers.php"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["cryptocredible"],
"scripts": {
"lint-sniff": [
"./vendor/bin/php-cs-fixer fix -vvv --dry-run --show-progress=dots"
],
"lint-fix": [
"./vendor/bin/php-cs-fixer fix -vvv --show-progress=dots"
]
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"cryptocredible"
],
"scripts": {
"lint-sniff": [
"./vendor/bin/php-cs-fixer fix -vvv --dry-run --show-progress=dots"
],
"lint-fix": [
"./vendor/bin/php-cs-fixer fix -vvv --show-progress=dots"
]
}
}
Loading

0 comments on commit f08ed15

Please sign in to comment.