Skip to content

Commit b59ebb6

Browse files
author
Ayman Bedair
committed
Updating dependencies
1 parent 7ea63aa commit b59ebb6

File tree

4 files changed

+235
-146
lines changed

4 files changed

+235
-146
lines changed

composer.json

Lines changed: 48 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,52 @@
11
{
2-
"name": "aymanrb/php-unstructured-text-parser",
3-
"description": "A PHP Class to help extract text out of documents that are not structured in a processing friendly manner",
4-
"keywords": [
5-
"text parser", "extract data", "php parser", "templates parsing", "regex parsing", "form parsing", "text parse"
6-
],
7-
"version": "1.2.0",
8-
"type": "library",
9-
"license": "MIT",
10-
"authors": [
11-
{
12-
"name": "Ayman R. Bedair",
13-
"email": "aymanrb@gmail.com",
14-
"homepage": "http://www.aymanrb.com",
15-
"role": "Developer"
16-
},
17-
{
18-
"name": "Pavel",
19-
"homepage": "http://www.aisamiery.ru",
20-
"role": "Developer"
21-
}
22-
23-
],
24-
"homepage": "https://github.com/aymanrb/php-unstructured-text-parser",
25-
"support": {
26-
"issues": "https://github.com/aymanrb/php-unstructured-text-parser/issues",
27-
"source": "https://github.com/aymanrb/php-unstructured-text-parser"
2+
"name": "aymanrb/php-unstructured-text-parser",
3+
"description": "A PHP Class to help extract text out of documents that are not structured in a processing friendly manner",
4+
"keywords": [
5+
"text parser",
6+
"extract data",
7+
"php parser",
8+
"templates parsing",
9+
"regex parsing",
10+
"form parsing",
11+
"text parse"
12+
],
13+
"version": "1.2.2",
14+
"type": "library",
15+
"license": "MIT",
16+
"authors": [
17+
{
18+
"name": "Ayman R. Bedair",
19+
"email": "aymanrb@gmail.com",
20+
"homepage": "http://www.aymanrb.com",
21+
"role": "Developer"
2822
},
29-
"autoload": {
30-
"psr-4": {
31-
"aymanrb\\UnstructuredTextParser\\": "src/"
32-
}
33-
},
34-
"autoload-dev": {
35-
"psr-4": {
36-
"aymanrb\\UnstructuredTextParser\\Tests\\": "tests/"
37-
}
38-
},
39-
"require": {
40-
"php": ">=5.6.0",
41-
"monolog/monolog": "^1.23"
42-
},
43-
"require-dev": {
44-
"phpunit/phpunit": "^5.0"
23+
{
24+
"name": "Pavel",
25+
"homepage": "http://www.aisamiery.ru",
26+
"role": "Developer"
27+
}
28+
],
29+
"homepage": "https://github.com/aymanrb/php-unstructured-text-parser",
30+
"support": {
31+
"issues": "https://github.com/aymanrb/php-unstructured-text-parser/issues",
32+
"source": "https://github.com/aymanrb/php-unstructured-text-parser"
33+
},
34+
"autoload": {
35+
"psr-4": {
36+
"aymanrb\\UnstructuredTextParser\\": "src/"
37+
}
38+
},
39+
"autoload-dev": {
40+
"psr-4": {
41+
"aymanrb\\UnstructuredTextParser\\Tests\\": "tests/"
4542
}
43+
},
44+
"require": {
45+
"ext-json": "*",
46+
"php": ">=5.6.0",
47+
"monolog/monolog": "^1.23"
48+
},
49+
"require-dev": {
50+
"phpunit/phpunit": "^5.0"
51+
}
4652
}

0 commit comments

Comments
 (0)