-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.33 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
51
52
53
54
55
56
57
{
"name": "dew/cli",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Li Zhineng",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-zip": "*",
"ext-posix": "*",
"symfony/console": "^6.3",
"symfony/filesystem": "^6.3",
"symfony/finder": "^6.3",
"symfony/process": "^6.3",
"guzzlehttp/guzzle": "^7.7",
"symfony/yaml": "^6.3",
"illuminate/collections": "^10.0",
"illuminate/support": "^10.0",
"composer/semver": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"pestphp/pest": "^2.12",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-mockery": "^1.1",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": {
"Dew\\Cli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dew\\Cli\\Tests\\": "tests/"
}
},
"scripts": {
"refactor": "rector",
"lint": "phpstan analyse",
"test": "pest"
},
"bin": ["dew"],
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
}
}