-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
88 lines (88 loc) · 2.36 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "styleci/styleci",
"description": "StyleCI Is A PHP Coding Style Continuous Integration Service",
"keywords": ["laravel", "framework", "styleci", "ci", "cs", "coding standard", "StyleCI", "StyleCI", "Graham Campbell", "GrahamCampbell"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "graham@mineuk.com"
},
{
"name": "Joseph Cohen",
"email": "joseph.cohen@dinkbit.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/StyleCI/PHP-CS-Fixer"
},
{
"type": "vcs",
"url": "https://github.com/StyleCI/php-github-api"
},
{
"type": "vcs",
"url": "https://github.com/StyleCI/socialite"
}
],
"require": {
"php": ">=5.5.0",
"laravel/framework": "5.0.*",
"laravel/socialite": "~3.0",
"fideloper/proxy": "~3.0",
"guzzlehttp/guzzle": "~5.0",
"graham-campbell/binput": "~3.0",
"graham-campbell/exceptions": "~1.0",
"graham-campbell/core": "~2.0",
"graham-campbell/github": "~3.0",
"graham-campbell/htmlmin": "~3.0",
"knplabs/github-api": "~1.5",
"mccool/laravel-auto-presenter": "~3.0",
"styleci/fixer": "0.1.*",
"vinkla/pusher": "~1.0"
},
"require-dev": {
"graham-campbell/testbench": "~2.0"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"StyleCI\\StyleCI\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"StyleCI\\Tests\\StyleCI\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize --force"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize --force"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}