-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (59 loc) · 1.67 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
{
"name" : "stelara/encore-webpack-standalone",
"type" : "library",
"version" : "1.0.0",
"description" : "Encore-Webpack standalone integration (without Symfony and Twig)",
"keywords": ["encore", "webpack", "symfony", "twig", "standalone"],
"license": "MIT",
"authors" : [
{
"name": "Stelio Stefanov",
"email": "stefanov.stelio@gmail.com"
}
],
"require": {
"php" : ">=7.3",
"vlucas/phpdotenv" : "^3.6"
},
"autoload": {
"psr-4": {
"Process\\" : "src/process/"
},
"files" : ["src/single/defines.php"],
"classmap" : []
},
"require-dev": {
"phpunit/phpunit": "^8",
"dg/bypass-finals": "^1.1"
},
"scripts" : {
"test" : "vendor/bin/phpunit --colors=always",
"serve": [
"@disableTimeout",
"php -S 0.0.0.0:8900 -t www"
],
"dev-compile" : [
"@disableTimeout",
"yarn dev",
"@movie-encore-config"
],
"dev-compile-watch" : [
"@disableTimeout",
"yarn watch",
"@movie-encore-config"
],
"prod-compile" : [
"@disableTimeout",
"yarn build",
"@movie-encore-config"
],
"disableTimeout": "Composer\\Config::disableProcessTimeout",
"movie-encore-config":"mv www/static/entrypoints.json www/static/manifest.json assets/config/"
},
"scripts-descriptions": {
"serve": "Run PHP dev server",
"test": "Run all unit tests",
"movie-encore-config": "Move encore configs outside www"
},
"minimum-stability": "dev"
}