-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.25 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.25 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
{
"name": "aymanrb/php-unstructured-text-parser",
"description": "A PHP library to help extract text out of text documents",
"keywords": [
"text parser",
"extract data",
"php parser",
"templates parsing",
"regex parsing",
"form parsing",
"text parse"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ayman R. Bedair",
"email": "aymanrb@gmail.com",
"homepage": "http://www.aymanrb.com",
"role": "Developer"
},
{
"name": "Pavel",
"homepage": "http://www.aisamiery.ru",
"role": "Developer"
}
],
"homepage": "https://github.com/aymanrb/php-unstructured-text-parser",
"support": {
"issues": "https://github.com/aymanrb/php-unstructured-text-parser/issues",
"source": "https://github.com/aymanrb/php-unstructured-text-parser"
},
"autoload": {
"psr-4": {
"aymanrb\\UnstructuredTextParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"aymanrb\\UnstructuredTextParser\\Tests\\": "tests/"
}
},
"require": {
"ext-json": "*",
"php": "^8.1",
"psr/log": "^1.0.1 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"scripts": {
"test": "phpunit --configuration phpunit.xml"
}
}