This file contains hidden or 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
| #!/bin/bash | |
| # Laravel Entra SSO Setup Script | |
| # This script sets up an existing Laravel app to use the Entra SSO package | |
| set -e | |
| # Colors for output | |
| GREEN='\033[0;32m' | |
| BLUE='\033[0;34m' |
This file contains hidden or 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
| #!/bin/bash | |
| # Entra SSO Package Generator | |
| # This script creates the complete package structure with all files | |
| set -e | |
| # Configuration | |
| PACKAGE_NAME="entra-sso" | |
| VENDOR_NAME="YourCompany" |
This file contains hidden or 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
| #!/bin/bash | |
| # Package Creator - Fixed Version | |
| # Creates Laravel packages with proper composer.json structure | |
| read -p "Enter vendor name (default: Dcplibrary): " vendor | |
| vendor=${vendor:-Dcplibrary} | |
| read -p "Enter package name: " package | |
| read -p "Enter Laravel project directory path (optional, press enter to skip): " laravel_path |
This file contains hidden or 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
| <?php | |
| use Goutte\Client; | |
| class CatalogSignupTest extends PHPUnit_Framework_TestCase | |
| { | |
| public function test_successful_catalog_purchase_where_shipping_and_billing_are_the_same_in_washington() | |
| { | |
| $email = 'rick' . mt_rand() . '@example.com'; |
This file contains hidden or 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
| <div class="container"> | |
| <div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 sidebar"> | |
| <div id="datepicker"></div> | |
| </div> | |
| <div class="col-lg-9 col-md-8 col-sm-6 col-xs-12"> | |
| <h2>Selected Date Displays Below</h2> | |
| <div class="well" id="selectedDate"></div> | |
| </div> | |
| </div> |
This file contains hidden or 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
| ### Laravel ### | |
| /vendor/ | |
| node_modules/ | |
| npm-debug.log | |
| yarn-error.log | |
| # Laravel 4 specific | |
| bootstrap/compiled.php | |
| app/storage/ |
This file contains hidden or 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
| web: vendor/bin/heroku-php-apache2 public/ |