-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
307 additions
and
499 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains 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
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" | ||
] | ||
} | ||
} |
Oops, something went wrong.