author | ymh <ymh.work@gmail.com> |
Fri, 22 Apr 2016 11:20:17 +0200 | |
changeset 153 | 338bcc78d431 |
parent 129 | 4fca650b9b8a |
child 280 | 59a2c10ac9b8 |
permissions | -rw-r--r-- |
1
01a844d292ac
dev environment + first skeleton for bo
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
1 |
{ |
27 | 2 |
"name": "laravel/laravel", |
3 |
"description": "The Laravel Framework.", |
|
4 |
"keywords": ["framework", "laravel"], |
|
5 |
"license": "MIT", |
|
6 |
"type": "project", |
|
153
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
7 |
"repositories": [ |
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
8 |
{ |
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
9 |
"type": "vcs", |
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
10 |
"url": "https://github.com/phpseclib/phpseclib" |
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
11 |
} |
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
12 |
], |
27 | 13 |
"require": { |
14 |
"php": ">=5.5.9", |
|
15 |
"laravel/framework": "5.2.*", |
|
129 | 16 |
"easyrdf/easyrdf": "dev-master", |
27 | 17 |
"ml/json-ld": "*", |
18 |
"caseyamcl/phpoaipmh": "~2.4", |
|
153
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
19 |
"guzzlehttp/guzzle": ">=6.1", |
27 | 20 |
"laravelcollective/html": "5.2.*", |
107 | 21 |
"shift31/laravel-elasticsearch": "~1.0", |
22 |
"asm89/stack-cors": "dev-master as 0.2.2", |
|
153
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
23 |
"barryvdh/laravel-cors": "^0.7.3", |
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
24 |
"phpseclib/phpseclib": "^2.0" |
27 | 25 |
}, |
26 |
"require-dev": { |
|
27 |
"fzaninotto/faker": "~1.4", |
|
28 |
"phpunit/phpunit": "~5.0", |
|
29 |
"phpspec/phpspec": "~2.1", |
|
30 |
"fabpot/php-cs-fixer": "^1.9", |
|
31 |
"mockery/mockery": "dev-master", |
|
32 |
"symfony/dom-crawler": "~3.0", |
|
33 |
"symfony/css-selector": "~3.0" |
|
34 |
}, |
|
35 |
"autoload": { |
|
36 |
"classmap": [ |
|
37 |
"database" |
|
38 |
], |
|
39 |
"psr-4": { |
|
40 |
"CorpusParole\\": "app/" |
|
41 |
} |
|
42 |
}, |
|
43 |
"autoload-dev": { |
|
44 |
"classmap": [ |
|
45 |
"tests/TestCase.php" |
|
46 |
] |
|
47 |
}, |
|
48 |
"scripts": { |
|
49 |
"post-root-package-install": [ |
|
50 |
"php -r \"copy('.env.example', '.env');\"" |
|
51 |
], |
|
52 |
"post-create-project-cmd": [ |
|
53 |
"php artisan key:generate" |
|
54 |
], |
|
55 |
"post-install-cmd": [ |
|
56 |
"php artisan clear-compiled", |
|
57 |
"php artisan optimize" |
|
58 |
], |
|
59 |
"pre-update-cmd": [ |
|
60 |
"php artisan clear-compiled" |
|
61 |
], |
|
62 |
"post-update-cmd": [ |
|
63 |
"php artisan optimize" |
|
31 | 64 |
] |
27 | 65 |
}, |
129 | 66 |
"minimum-stability": "dev", |
67 |
"prefer-stable": true, |
|
27 | 68 |
"config": { |
69 |
"preferred-install": "dist" |
|
70 |
} |
|
1
01a844d292ac
dev environment + first skeleton for bo
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
71 |
} |