-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/sh | ||
composer install --no-dev -o | ||
composer install --no-dev -o --ansi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/sh | ||
composer install --no-dev -o | ||
composer install --no-dev -o --ansi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#!/bin/sh | ||
# create project | ||
rm -rf _benchmark/temp | ||
composer create-project fuel/fuel:^1.9.0 --prefer-dist ./_benchmark/temp | ||
composer create-project fuel/fuel:^1.9.0 --prefer-dist ./_benchmark/temp --ansi | ||
mv ./_benchmark/temp/{.,}* ./ | ||
|
||
# have the route & controller | ||
yes|cp -r _benchmark/fuel/* ./ | ||
|
||
# some enhancements | ||
composer config allow-plugins.composer/installers true | ||
composer install --no-dev -o | ||
composer install --no-dev -o --ansi | ||
rm ./public/.htaccess |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#!/bin/sh | ||
# create project | ||
rm -rf _benchmark/temp | ||
composer create-project --prefer-dist kumbia/framework:1.1.* ./_benchmark/temp | ||
composer create-project --prefer-dist kumbia/framework:1.1.* ./_benchmark/temp --ansi | ||
mv ./_benchmark/temp/{.,}* ./ | ||
|
||
# have the route & controller | ||
yes|cp -r _benchmark/kumbia/* ./ | ||
|
||
# some enhancements | ||
composer install --no-dev --optimize-autoloader | ||
composer install --no-dev --optimize-autoloader --ansi | ||
|
||
find . -name \*.htaccess -type f -delete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/sh | ||
composer install --no-dev -o | ||
composer install --no-dev -o --ansi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#!/bin/sh | ||
# create project | ||
rm -rf _benchmark/temp | ||
composer create-project --prefer-dist laravel/lumen:10.0.* ./_benchmark/temp | ||
composer create-project --prefer-dist laravel/lumen:10.0.* ./_benchmark/temp --ansi | ||
mv ./_benchmark/temp/{.,}* ./ | ||
|
||
# have the route & controller | ||
yes|cp -rf _benchmark/lumen/. ./ | ||
|
||
# some enhancements | ||
composer install --no-dev -o | ||
composer install --no-dev -o --ansi | ||
chmod -R o+w storage | ||
rm ./public/.htaccess |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/sh | ||
composer install --no-dev -o | ||
composer install --no-dev -o --ansi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/sh | ||
composer install --no-dev -o | ||
composer install --no-dev -o --ansi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/sh | ||
composer install --no-dev -o | ||
composer install --no-dev -o --ansi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/bin/sh | ||
# create project | ||
rm -rf _benchmark/temp | ||
composer create-project symfony/skeleton:5.4.* ./_benchmark/temp | ||
composer create-project symfony/skeleton:5.4.* ./_benchmark/temp --ansi | ||
mv ./_benchmark/temp/{.,}* ./ | ||
|
||
# have the route & controller | ||
yes|cp -r _benchmark/symfony/* ./ | ||
|
||
# some enhancements | ||
composer dump-env prod | ||
composer dump-env prod --ansi | ||
APP_ENV=prod APP_DEBUG=0 bin/console cache:clear | ||
composer install --no-dev --optimize-autoloader | ||
composer install --no-dev --optimize-autoloader --ansi | ||
chmod -R o+w var |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/bin/sh | ||
# create project | ||
rm -rf _benchmark/temp | ||
composer create-project symfony/skeleton:6.4.* ./_benchmark/temp | ||
composer create-project symfony/skeleton:6.4.* ./_benchmark/temp --ansi | ||
mv ./_benchmark/temp/{.,}* ./ | ||
|
||
# have the route & controller | ||
yes|cp -r _benchmark/symfony/* ./ | ||
|
||
# some enhancement | ||
composer dump-env prod | ||
composer dump-env prod --ansi | ||
APP_ENV=prod APP_DEBUG=0 bin/console cache:clear | ||
composer install --no-dev --optimize-autoloader | ||
composer install --no-dev --optimize-autoloader --ansi | ||
chmod -R o+w var |