-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 855 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 855 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "coco/source-watcher-api",
"description": "",
"type": "project",
"authors": [
{
"name": "Jean Paul Ruiz",
"email": "jpruiz114@gmail.com"
}
],
"repositories": [
{
"type": "path",
"url": "../source-watcher-core",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^8.4",
"coco/source-watcher": "@dev",
"doctrine/orm": "^2.9",
"ext-pdo": "*",
"firebase/php-jwt": "^7.0",
"monolog/monolog": "^2.3",
"robmorgan/phinx": "^0.12.7",
"vlucas/phpdotenv": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Coco\\SourceWatcherApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Coco\\SourceWatcherApi\\": "src/",
"Coco\\SourceWatcherApi\\Tests\\": "tests/"
}
}
}