-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.34 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
{
"name": "millon/php-refactoring",
"description": "Just another refactoring. Done from and on php.",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Millon\\PhpRefactoring\\": "src/",
"Millon\\PhpRefactoring\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Vitautas Brazas",
"email": "vbrazas15@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"symfony/console": "^6.3",
"guzzlehttp/guzzle": "^7.8",
"symfony/skeleton": "^6.3",
"symfony/flex": "^2.3",
"symfony/runtime": "^6.3",
"symfony/yaml": "^6.3",
"symfony/dotenv": "^6.3",
"phpdocumentor/reflection-docblock": "^5.3",
"phpstan/phpdoc-parser": "^1.23",
"symfony/property-access": "^6.3",
"symfony/property-info": "^6.3",
"symfony/serializer": "^6.3"
},
"require-dev": {
"symfony/maker-bundle": "^1.50",
"phpunit/phpunit": "^10.3"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}