-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) 路 2.32 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (85 loc) 路 2.32 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "jolicode/castor",
"description": "A lightweight and modern task runner. Automate everything. In PHP.",
"keywords": ["task", "runner", "async", "parallel", "process", "castor"],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Joel Wurtz",
"email": "jwurtz@jolicode.com"
},
{
"name": "Gr茅goire Pineau",
"email": "lyrixx@lyrixx.info"
},
{
"name": "Lo茂ck Piera",
"email": "pyrech@gmail.com"
}
],
"autoload": {
"psr-4": {
"Castor\\": "src/"
},
"files": [
"src/functions.php",
"src/functions-internal.php"
]
},
"autoload-dev": {
"psr-4": {
"Castor\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.4",
"composer/composer": "^2.10.2",
"jolicode/jolinotif": "^3.3.1",
"jolicode/php-os-helper": "^0.3.0",
"laravel/agent-detector": "^2.0.2",
"monolog/monolog": "^3.10.0",
"nikic/php-parser": "^5.8.0",
"phpstan/phpdoc-parser": "^2.3.3",
"spatie/ssh": "^1.13.2",
"symfony/cache": "^8.1.2",
"symfony/config": "^8.1.2",
"symfony/console": "^8.1.2",
"symfony/dependency-injection": "^8.1.2",
"symfony/deprecation-contracts": "^3.7.1",
"symfony/dotenv": "^8.1.2",
"symfony/error-handler": "^8.1.2",
"symfony/expression-language": "^8.1.1",
"symfony/filesystem": "^8.1.2",
"symfony/finder": "^8.1.1",
"symfony/http-client": "^8.1.3",
"symfony/mime": "^8.1.2",
"symfony/monolog-bridge": "^8.1.2",
"symfony/polyfill-php85": "^1.41.0",
"symfony/process": "^8.1",
"symfony/string": "^8.1.2",
"symfony/translation-contracts": "^3.7.1",
"symfony/var-dumper": "^8.1.2",
"symfony/yaml": "^8.1.2"
},
"require-dev": {
"phpunit/phpunit": "^13.2.6"
},
"bin": [
"bin/castor"
],
"config": {
"bump-after-update": true,
"platform": {
"php": "8.4.1"
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}