-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (42 loc) · 1.16 KB
/
composer.json
File metadata and controls
43 lines (42 loc) · 1.16 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
{
"name": "automate/automate",
"description": "Deployment Tool",
"type": "project",
"require": {
"php": ">=8.3",
"symfony/console": "^7.1",
"symfony/yaml": "^7.1",
"symfony/event-dispatcher": "^7.1",
"symfony/serializer": "^7.1",
"symfony/config": "^7.1",
"symfony/filesystem": "^7.1",
"symfony/process": "^7.1",
"symfony/http-client": "^7.1",
"symfony/property-access": "^7.1",
"phpseclib/phpseclib": "^3.0",
"phpdocumentor/reflection-docblock": "^5.6",
"symfony/finder": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^11.4",
"phpstan/phpstan": "^1.12",
"rector/rector": "^1.2",
"mockery/mockery": "^1.6",
"friendsofphp/php-cs-fixer": "^3.65",
"symfony/var-dumper": "^7.1"
},
"license": "MIT",
"authors": [
{
"name": "Julien Jacottet",
"email": "jjacottet@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Automate\\": "src/Automate",
"Automate\\Tests\\": "tests/Automate"
}
}
}