-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 831 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 831 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
{
"name": "ebay/event-notification-php-sdk",
"description": "A PHP SDK for processing eBay event notifications",
"keywords": ["eBay", "Event Notification", "SDK", "Endpoint Validation"],
"license": "ISC",
"version": "1.0.1",
"autoload": {
"psr-4": {
"EventNotificationPHPSdk\\": "src/"
}
},
"authors": [
{
"name": "Shuoyang Yao"
}
],
"require": {
"slim/slim": "4.*",
"slim/psr7": "^1.4",
"lrucache/lrucache": "master-dev",
"guzzlehttp/guzzle": "^7.4.3",
"spatie/async": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"start": "php -S localhost:9000 src/examples/example.php",
"test": "./vendor/bin/phpunit src/test/test.php"
}
}