-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 976 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
34
35
{
"name": "vendor/autoload",
"description": "This file is created by Composer and implements PSR-4/PSR-0 autoloading standards.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Vendor\\Autoload\\": "src/"
}
},
"authors": [
{
"name": "It eliminates the need for manual require or include statements for individual classes or files in your PHP project."
}
],
"require": {
"symfony/console": "^7.1",
"vlucas/phpdotenv": "^5.6",
"symfony/mailer": "^7.1"
},
"require-dev": {
"psy/psysh": "^0.12.4",
"filp/whoops": "^2.16",
"phpstan/phpstan": "^2.0",
"squizlabs/php_codesniffer": "^3.11",
"phpunit/phpunit": "^11.4",
"pestphp/pest": "^3.5",
"friendsofphp/php-cs-fixer": "^3.65"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}