-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·37 lines (37 loc) · 1.01 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
{
"name": "turbolabit/php-symfony-basecommand",
"description": "A Symfony bundle to build your own CLI commands even faster",
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"TurboLabIt\\BaseCommand\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TurboLabIt\\BaseCommand\\tests\\": "tests/"
}
},
"authors": [{"name": "Zane"}],
"require": {
"php": "^8.1",
"symfony/console": "@stable",
"symfony/lock": "@stable",
"league/csv": "@stable",
"symfony/string": "@stable",
"symfony/translation-contracts": "@stable",
"league/html-to-markdown": "@stable"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"symfony/dependency-injection": "@stable",
"symfony/config": "@stable",
"symfony/http-kernel": "@stable",
"symfony/yaml": "@stable"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": false
}
}
}