-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
composer.json
62 lines (62 loc) · 1.8 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "tomasvotruba/website",
"type": "project",
"license": "MIT",
"description": "Blog about hacking PHP, education and being the laziest PHP programmer in the world",
"require": {
"php": "^8.2",
"ext-gd": "*",
"ext-mbstring": "*",
"imagine/imagine": "^1.3",
"laravel/framework": "^11.21",
"league/commonmark": "^2.5",
"nesbot/carbon": "^2.72",
"nette/utils": "^4.0",
"noweh/twitter-api-v2-php": "^3.5",
"openai-php/client": "^0.10.1",
"symfony/yaml": "^6.4"
},
"require-dev": {
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.2",
"rector/swiss-knife": "^0.2",
"symplify/easy-coding-standard": "^12.3",
"symplify/phpstan-extensions": "^11.4",
"tomasvotruba/bladestan": "^0.5"
},
"autoload": {
"psr-4": {
"App\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan",
"check-cs": "vendor/bin/ecs",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true
}
}
}