-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 1 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
{
"name": "jonathantorres/laravel-medium-sdk",
"description": "Laravel Service Provider for Medium's SDK for PHP.",
"keywords": ["laravel", "medium", "medium-api"],
"license": "MIT",
"authors": [
{
"name": "Jonathan Torres",
"email": "jonathantorres41@gmail.com"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^9.0",
"jonathantorres/medium-sdk": "^0.5.0"
},
"require-dev": {
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4": {
"JonathanTorres\\LaravelMediumSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JonathanTorres\\LaravelMediumSdk\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"configure-commit-template": "git config --add commit.template .gitmessage"
}
}