-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.44 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
58
59
60
{
"name": "permafrost-dev/php-code-search",
"description": "Search PHP code for function & method calls, variable assignments, and more",
"keywords": [
"permafrost",
"code",
"search",
"sourcecode",
"php"
],
"homepage": "https://github.com/permafrost-dev/php-code-search",
"license": "MIT",
"authors": [
{
"name": "Patrick Organ",
"email": "[email protected]",
"homepage": "https://permafrost.dev",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"nikic/php-parser": "^5.0",
"permafrost-dev/code-snippets": "^1.2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
"autoload": {
"psr-4": {
"Permafrost\\PhpCodeSearch\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Permafrost\\PhpCodeSearch\\Tests\\": "tests"
},
"files": [
"tests/helpers.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/permafrost-dev"
}
]
}