-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathcomposer.json
33 lines (33 loc) · 834 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "iamfreee/laracasts-downloader",
"description": "PHP library to download laracasts lessons",
"license": "MIT",
"scripts": {
"lint": "./vendor/bin/pint -v --test",
"lint:fix": "./vendor/bin/pint -v"
},
"require": {
"php": "^8.3",
"guzzlehttp/guzzle": "^7.9.2",
"league/flysystem": "^3.16.0",
"symfony/dom-crawler": "^7.2.0",
"symfony/css-selector": "^7.2.0",
"devster/ubench": "^2.1.0",
"ext-curl": "*",
"ext-json": "*",
"ext-xml": "*",
"vlucas/phpdotenv": "^5.6.1",
"cocur/slugify": "^4.6.0",
"guzzlehttp/psr7": "^2.7"
},
"require-dev": {
"digitalnature/php-ref": "^1.3",
"rector/rector": "^1.2.10",
"laravel/pint": "^1.18"
},
"autoload": {
"psr-4": {"App\\": "App/"}
},
"minimum-stability": "stable",
"prefer-stable": true
}