-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
54 lines (54 loc) · 1.69 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
{
"name": "tacnoman/dephpugger",
"description": "Debug for php in terminal.",
"scripts": {
"test":"php vendor/bin/phpunit",
"generate:phar": "php create-phar.php",
"lint:fix": "php vendor/bin/phpcbf --standard=PSR2 --ignore=vendor .",
"publish-docker": "./publish-docker.sh"
},
"require": {
"cboden/ratchet": "0.4.1",
"symfony/console": "^4.3.4",
"symfony/yaml": "^4.3.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5.0",
"phpunit/phpunit": "^8.3.5"
},
"autoload": {
"psr-4" : {
"Dephpug\\": "src/Dephpug",
"Dephpug\\Console\\": "src/Dephpug/Console/"
},
"files": [
"src/Dephpug/SplashScreen.php",
"src/Dephpug/Command/ContinueCommand.php",
"src/Dephpug/Command/DbgpCommand.php",
"src/Dephpug/Command/EvalCommand.php",
"src/Dephpug/Command/GetValueCommand.php",
"src/Dephpug/Command/HelpCommand.php",
"src/Dephpug/Command/ListCommand.php",
"src/Dephpug/Command/ListPreviousCommand.php",
"src/Dephpug/Command/NextCommand.php",
"src/Dephpug/Command/QuitCommand.php",
"src/Dephpug/Command/SetCommand.php",
"src/Dephpug/Command/SetValueCommand.php",
"src/Dephpug/Command/StepIntoCommand.php",
"src/Dephpug/Parser/CloseMessageEvent.php",
"src/Dephpug/Parser/ErrorMessageEvent.php",
"src/Dephpug/Parser/FilePrinterMessageEvent.php",
"src/Dephpug/Parser/InitMessageEvent.php",
"src/Dephpug/Parser/PropertyGetMessageEvent.php",
"src/Dephpug/Parser/VerboseModeMessageParse.php"
]
},
"bin": ["bin/dephpugger"],
"license": "MIT",
"authors": [
{
"name": "Tacnoman",
"email": "renatocassino@gmail.com"
}
]
}