-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.08 KB
/
composer.json
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
{
"name": "studoo/reader-api",
"type": "library",
"description": "Client library for readwise.io/reader API",
"keywords": ["reader", "api", "client", "readwise"],
"homepage": "https://github.com/studoo-app/reader-api",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Benoit Foujols",
"email": "Benoit.Foujols@ac-creteil.fr"
},
{
"name": "Studoo Community",
"homepage": "https://github.com/orgs/studoo-app/people"
}
],
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^7.5",
"symfony/dotenv": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": { "Studoo\\Api\\readwise\\reader\\": "src/" },
"exclude-from-classmap": [
"tests/",
"examples/"
]
},
"scripts": {
"start": [ "Composer\\Config::disableProcessTimeout",
"php -S localhost:8042 -t examples"
],
"test": "php vendor/bin/phpunit --testdox tests --coverage-clover clover.xml",
"docker-start": "docker compose up -d",
"docker-stop": "docker compose down"
}
}