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
# @(#)fontconfig.properties 1.5 04/01/28 | |
# | |
# Copyright 2003 Sun Microsystems, Inc. All rights reserved. | |
# | |
# Version | |
version=1 | |
# Component Font Mappings |
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
#!/usr/bin/env bash | |
apigen \ | |
--source ./vendor/laravel \ | |
--source ./vendor/symfony \ | |
--source ./vendor/monolog \ | |
--exclude "*/tests/*" \ | |
--exclude "*/Tests/*" \ | |
--destination ./ldocs/ --title "Laravel Framework 4.1" |
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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to make opened Markdown files always be soft wrapped: | |
# | |
# path = require 'path' | |
# |
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
<?php | |
function extractVendor($rootPath) | |
{ | |
$vendorArchive = "$rootPath/vendor.zip"; | |
$vendorDir = "$rootPath/vendor"; | |
if (!file_exists($vendorArchive)) { | |
return "$vendorArchive 文件不存在"; | |
} |
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
version: '3.1' | |
services: | |
db: | |
image: mysql:5.7 | |
restart: always | |
volumes: | |
- ./data:/var/lib/mysql | |
ports: |
OlderNewer