This repository has been archived by the owner on Dec 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
86 lines (86 loc) · 1.9 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
{
"name": "wmde/phragile",
"description": "Sprint overviews and data visualizations for Phabricator projects.",
"keywords": ["Phragile", "Phabricator", "Agile", "Scrum", "Sprints", "Visualization", "Burndown", "Burnup"],
"license": "GPL-2.0",
"type": "project",
"repositories": [
{
"packagist": false,
"type": "package",
"package": {
"name": "libphutil",
"dist": {
"url": "https://github.com/wmde/libphutil/archive/master.zip",
"type": "zip"
},
"version": "1.2"
}
}
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"laravelcollective/html": "~5.1",
"laracasts/flash": "~1.0",
"guzzlehttp/guzzle": "~4.2",
"doctrine/dbal": "~2.4",
"libphutil": "1.2"
},
"require-dev": {
"behat/behat": "~3.1@RC",
"behat/mink": "~1.6",
"behat/mink-extension": "~2.0",
"behat/mink-goutte-driver": "~1.1",
"phpunit/phpunit": "~4.4",
"laracasts/behat-laravel-extension": "@dev",
"backup-manager/laravel": "~1.1",
"squizlabs/php_codesniffer": "~2.1",
"pragmarx/laravelcs": "dev-master",
"phpmd/phpmd": "~2.1"
},
"autoload": {
"classmap": [
"database",
"app/Http/Controllers",
"app/Models"
],
"psr-4": {
"App\\": "app/",
"Phragile\\": "app/Phragile"
}
},
"autoload-dev": {
"psr-4": {
"Phragile\\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 -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
],
"ci": [
"composer validate --no-interaction",
"vendor/bin/phpunit",
"composer phpcs"
],
"phpcs": [
"vendor/bin/phpcs app/* tests/* --standard=phpcs.xml --extensions=php -sp"
],
"phpmd": [
"vendor/bin/phpmd app/ text phpmd.xml"
]
},
"config": {
"preferred-install": "dist"
}
}