-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.79 KB
/
Copy pathcomposer.json
File metadata and controls
66 lines (66 loc) · 1.79 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
{
"name": "valksor/php-dev",
"description": "Development tools and utilities for PHP projects including build automation, file watching, and custom PHP-CS-Fixer rules",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"php",
"development",
"tools",
"build",
"automation",
"php-cs-fixer",
"code-style",
"watching",
"dev-tools"
],
"homepage": "https://github.com/valksor/php-dev",
"require": {
"php": ">=8.4",
"ext-dom": "*",
"ext-inotify": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-zip": "*",
"friendsofphp/php-cs-fixer": "*",
"symfony/config": "*",
"symfony/console": "*",
"symfony/dependency-injection": "*",
"symfony/finder": "*",
"symfony/process": "*",
"valksor/php-bundle": "^1.0",
"valksor/php-functions-local": "^1.0",
"valksor/php-functions-preg": "^1.0",
"valksor/php-sse": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^12.0",
"roave/security-advisories": "dev-latest"
},
"replace": {
"valksor/php-dev-build": "self.version",
"valksor/php-dev-cs-fixer-custom-fixers": "self.version",
"valksor/php-dev-snapshot": "self.version"
},
"conflict": {
"doctrine/dbal": "<4.0",
"friendsofphp/php-cs-fixer": "<3.81.0",
"symfony/framework-bundle": "<7.4.0"
},
"minimum-stability": "dev",
"prefer-stable": false,
"autoload": {
"psr-4": {
"ValksorDev\\": "src/ValksorDev/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}