author | ymh <ymh.work@gmail.com> |
Wed, 09 Nov 2016 15:05:41 +0100 | |
changeset 406 | cf0f23803a53 |
parent 280 | 59a2c10ac9b8 |
child 537 | d2e6ee099125 |
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" |
406
cf0f23803a53
upgrade elasticsearch to 5.0, upgrade ember
ymh <ymh.work@gmail.com>
parents:
280
diff
changeset
|
11 |
}, |
cf0f23803a53
upgrade elasticsearch to 5.0, upgrade ember
ymh <ymh.work@gmail.com>
parents:
280
diff
changeset
|
12 |
{ |
cf0f23803a53
upgrade elasticsearch to 5.0, upgrade ember
ymh <ymh.work@gmail.com>
parents:
280
diff
changeset
|
13 |
"type": "vcs", |
cf0f23803a53
upgrade elasticsearch to 5.0, upgrade ember
ymh <ymh.work@gmail.com>
parents:
280
diff
changeset
|
14 |
"url": "https://github.com/IRI-Research/laravel-elasticsearch" |
153
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
15 |
} |
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
16 |
], |
27 | 17 |
"require": { |
280 | 18 |
"php": ">=5.6.4", |
19 |
"laravel/framework": "5.3.*", |
|
129 | 20 |
"easyrdf/easyrdf": "dev-master", |
27 | 21 |
"ml/json-ld": "*", |
280 | 22 |
"caseyamcl/phpoaipmh": "~2.5.1", |
23 |
"guzzlehttp/guzzle": ">=6.2", |
|
24 |
"laravelcollective/html": "5.3.*", |
|
406
cf0f23803a53
upgrade elasticsearch to 5.0, upgrade ember
ymh <ymh.work@gmail.com>
parents:
280
diff
changeset
|
25 |
"shift31/laravel-elasticsearch": "dev-master", |
280 | 26 |
"asm89/stack-cors": "~1.0", |
27 |
"barryvdh/laravel-cors": "^0.8.2", |
|
153
338bcc78d431
add HandleClient implementation + configuration + tests
ymh <ymh.work@gmail.com>
parents:
129
diff
changeset
|
28 |
"phpseclib/phpseclib": "^2.0" |
27 | 29 |
}, |
30 |
"require-dev": { |
|
280 | 31 |
"fzaninotto/faker": "~1.6", |
32 |
"phpunit/phpunit": "~5.5", |
|
33 |
"phpspec/phpspec": "~3.1", |
|
34 |
"friendsofphp/php-cs-fixer": "^1.12", |
|
35 |
"mockery/mockery": "~0.9.5", |
|
36 |
"symfony/dom-crawler": "~3.1", |
|
37 |
"symfony/css-selector": "~3.1" |
|
27 | 38 |
}, |
39 |
"autoload": { |
|
40 |
"classmap": [ |
|
41 |
"database" |
|
42 |
], |
|
43 |
"psr-4": { |
|
44 |
"CorpusParole\\": "app/" |
|
45 |
} |
|
46 |
}, |
|
47 |
"autoload-dev": { |
|
48 |
"classmap": [ |
|
49 |
"tests/TestCase.php" |
|
50 |
] |
|
51 |
}, |
|
52 |
"scripts": { |
|
53 |
"post-root-package-install": [ |
|
54 |
"php -r \"copy('.env.example', '.env');\"" |
|
55 |
], |
|
56 |
"post-create-project-cmd": [ |
|
57 |
"php artisan key:generate" |
|
58 |
], |
|
59 |
"post-install-cmd": [ |
|
60 |
"php artisan clear-compiled", |
|
61 |
"php artisan optimize" |
|
62 |
], |
|
63 |
"pre-update-cmd": [ |
|
64 |
"php artisan clear-compiled" |
|
65 |
], |
|
66 |
"post-update-cmd": [ |
|
67 |
"php artisan optimize" |
|
31 | 68 |
] |
27 | 69 |
}, |
129 | 70 |
"minimum-stability": "dev", |
71 |
"prefer-stable": true, |
|
27 | 72 |
"config": { |
73 |
"preferred-install": "dist" |
|
74 |
} |
|
1
01a844d292ac
dev environment + first skeleton for bo
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
75 |
} |