-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 839 Bytes
/
Copy pathcomposer.json
File metadata and controls
33 lines (33 loc) · 839 Bytes
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
{
"name": "sl5net/preg-contentfinder",
"description": "A class to find content based on regular expressions.",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Sebastian Lauffer",
"homepage": "https://sl5.de"
}
],
"require": {
"php": "^8.2 || ^8.3",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"monolog/monolog": "^3.9"
},
"require-dev": {
"php": "^8.2 || ^8.3",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"phpunit/phpunit": "@dev",
"monolog/monolog": "^3.9"
},
"autoload": {
"psr-4": {
"SL5\\PregContentFinder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SL5\\PregContentFinder\\Tests\\PHPUnit\\": "tests/PHPUnit/"
}
}
}