-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.8 KB
/
Copy pathcomposer.json
File metadata and controls
68 lines (68 loc) · 1.8 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "phunkie/console",
"description": "A console for Phunkie development",
"license": "MIT",
"authors": [
{
"name": "Marcello Duarte",
"email": "marcello.duarte@gmail.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/phunkie/effect"
}
],
"require": {
"php": "^8.2 || ^8.3 || ^8.4 || ^8.5",
"phunkie/phunkie": "^1.4",
"phunkie/effect": "^1.1",
"nikic/php-parser": "^5.6"
},
"require-dev": {
"phpunit/phpunit": "^11",
"behat/behat": "^3.22",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.90",
"phunkie/phpstan": "^1.0"
},
"autoload": {
"psr-4": {
"Phunkie\\Console\\": "src/"
},
"files": [
"src/Functions/common.php",
"src/Functions/parsing.php",
"src/Functions/evaluation.php",
"src/Functions/session.php",
"src/Functions/display.php",
"src/Functions/terminal.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Acceptance\\": "tests/Acceptance",
"Tests\\Phunkie\\Console\\": "tests/Unit"
}
},
"bin": [
"bin/phunkie"
],
"scripts": {
"test": "bin/run-behat-tests.sh",
"cs-fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run --diff --allow-risky=yes",
"phpstan": "phpstan analyse --memory-limit=512M",
"lint": [
"@cs-check",
"@phpstan"
],
"test-all": "scripts/test-all-versions.sh",
"check": [
"@lint",
"@test"
]
},
"prefer-stable": true
}