-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.35 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.35 KB
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
{
"name": "turbolabit/php-dev-pack",
"description": "A collection of reusable Symfony components by TurboLab.it",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Zane",
"email": "info@turbolab.it"
}
],
"autoload": {
"psr-4": {
"TurboLabIt\\TLIBaseBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TurboLabIt\\TLIBaseBundle\\tests\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"turbolabit/php-foreachable": "dev-main",
"turbolabit/php-encryptor": "dev-main",
"turbolabit/php-symfony-basecommand": "dev-main"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.3",
"symfony/browser-kit": "^5.3",
"symfony/framework-bundle": "^5.3",
"phpunit/phpunit": "^9"
},
"repositories": {
"turbolabit/php-foreachable": {
"type": "git",
"url": "https://github.com/TurboLabIt/php-foreachable.git"
},
"turbolabit/php-encryptor": {
"type": "git",
"url": "https://github.com/TurboLabIt/php-encryptor.git"
},
"turbolabit/php-symfony-basecommand": {
"type": "git",
"url": "https://github.com/TurboLabIt/php-symfony-basecommand.git"
}
}
}