-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1002 Bytes
/
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
{
"name": "php-xapi/client-bundle",
"type": "symfony-bundle",
"description": "Experience API (xAPI) client integration into the Symfony Framework",
"keywords": ["xAPI", "Experience API", "Tin Can API", "client", "Symfony", "bundle"],
"homepage": "https://github.com/php-xapi/client-bundle",
"license": "MIT",
"authors": [
{
"name": "Christian Flothmann",
"homepage": "https://github.com/xabbuh"
}
],
"require": {
"php": "^5.4 || ^7.0",
"php-xapi/client": "^0.5 || ^0.6",
"symfony/config": "^2.7 || ^3.1",
"symfony/dependency-injection": "^2.7 || ^3.1",
"symfony/http-kernel": "^2.7 || ^3.1"
},
"require-dev": {
"php-http/mock-client": "^0.3"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"XApi\\ClientBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}