-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.27 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "atomescrochus/apple-epf-laravel",
"description": "Provides models and other tools to use Apple's EPF in Laravel.",
"keywords": [
"atomescrochus",
"apple-epf-laravel",
"itunes",
"epf"
],
"homepage": "https://github.com/atomescrochus/apple-epf-laravel",
"license": "MIT",
"authors": [
{
"name": "Jean-Philippe Murray",
"email": "jp@atomescroch.us",
"homepage": "https://atomescroch.us",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"symfony/dom-crawler": "^3.2",
"symfony/process": "^3.2",
"guzzlehttp/guzzle": "~6.0",
"nesbot/carbon": "~1.20",
"alchemy/zippy": " ~0.1"
},
"require-dev": {
"phpunit/phpunit": "5.*"
},
"autoload": {
"psr-4": {
"Atomescrochus\\EPF\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Atomescrochus\\EPF\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Atomescrochus\\EPF\\EPFServiceProvider"
]
}
}
}