-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
63 lines (63 loc) · 1.75 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
{
"name": "angelov/storgman",
"description": "Storgman - Student Organizations Management",
"keywords": ["storgman", "organization"],
"license": "GPL-3.0",
"require": {
"php": ">=5.6|7.0",
"laravel/framework": "5.2.*",
"twig/twig": "1.22.*",
"rcrowe/twigbridge": "0.9.*",
"ext-gd": "*",
"intervention/image": "2.*",
"intervention/imagecache": "2.*",
"nesbot/carbon": "1.*",
"laravel/socialite": "~2.0",
"laravelcollective/bus": "^5.2",
"knplabs/gaufrette": "^0.2.1",
"fabpot/goutte": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"mockery/mockery": "~0.9",
"fzaninotto/faker": "1.4.0",
"way/laravel-test-helpers": "dev-master",
"fabpot/php-cs-fixer": "^1.9",
"behat/behat": "^3.0",
"behat/mink": "^1.7",
"behat/mink-extension": "^2.1",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "^1.3",
"laracasts/behat-laravel-extension": "^1.0",
"knplabs/friendly-contexts": "^0.7.0"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"Angelov\\Storgman\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Angelov\\Storgman\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}