-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
74 lines (74 loc) · 2.17 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "urbania/apple-news",
"description": "",
"keywords": [
"laravel"
],
"homepage": "http://github.com/Folkloreatelier",
"license": "MIT",
"authors": [
{
"name": "Folklore",
"email": "[email protected]",
"homepage": "http://folkloreinc.ca"
},
{
"name": "David Mongeau-Petitpas",
"email": "[email protected]",
"homepage": "http://mongo.ca",
"role": "Developer"
}
],
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.3",
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
"illuminate/contracts": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
"symfony/filesystem": "^3.0|^4.2",
"webmozart/assert": "^1.4",
"imangazaliev/didom": "^1.14",
"symfony/css-selector": "^2.7|^3.0|^4.2"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"orchestra/testbench": "3.1.*|3.2.*|3.3.*|3.4.*|3.5.*|3.6.*|3.7.*|3.8.*",
"mockery/mockery": "0.9.*|1.0.*",
"phpunit/phpunit": "~7.0|^7.5|^8.0",
"php-coveralls/php-coveralls": "^2.1",
"doctrine/dbal": "^2.0",
"vlucas/phpdotenv": "~1.0|^2.2",
"nette/php-generator": "^2.6|^3.2",
"symfony/finder": "^2.7|^3.0|^4.2",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"files": [
"src/Urbania/AppleNews/Laravel/helpers.php"
],
"psr-0": {
"Urbania\\AppleNews": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/fixture",
"scripts/stubs/",
"examples/lib"
],
"psr-4": {
"Urbania\\AppleNews\\Scripts\\": "scripts/lib",
"Urbania\\AppleNews\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Urbania\\AppleNews\\Laravel\\AppleNewsServiceProvider"
],
"aliases": {
"AppleNews": "Urbania\\AppleNews\\Laravel\\AppleNewsFacade"
}
}
}
}