-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.22 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "coco/source-watcher",
"description": "Project which allows to watch different sources of data",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Jean Paul Ruiz",
"email": "jpruiz114@gmail.com"
}
],
"require": {
"php": "^8.4",
"doctrine/dbal": "^3.0 || ^4.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-pgsql": "*",
"monolog/monolog": "^2.0 || ^3.0",
"ramsey/uuid": "^4.0 || ^5.0",
"softcreatr/jsonpath": "^0.6.0",
"symfony/yaml": "^5.0 || ^6.0",
"tuqqu/gender-detector": "^0.3.0",
"vlucas/phpdotenv": "^5.0"
},
"autoload": {
"psr-4": {
"Coco\\SourceWatcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Coco\\SourceWatcher\\": "src/",
"Coco\\SourceWatcher\\Tests\\": "tests/"
}
},
"require-dev": {
"phpspec/prophecy": "^1.16",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"post-install-cmd": ["@php scripts/patch-jsonpath-deprecations.php"],
"post-update-cmd": ["@php scripts/patch-jsonpath-deprecations.php"]
}
}