积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(14)PHP(14)Laravel(14)

语言

全部英语(9)中文(简体)(5)

格式

全部PDF文档 PDF(14)
 
本次搜索耗时 0.100 秒,为您找到相关结果约 14 个.
  • 全部
  • 后端开发
  • PHP
  • Laravel
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Learning Laravel

    existing third-party packages. Main Features MVC Laravel uses the MVC model, therefore there are three core-parts of the framework which work https://riptutorial.com/ 2 together: models, views and controllers Database Transactions in Unit Test Laravel allows database to rollback all the change during the tests. For testing multiple database connections, you need to set $connectionsToTransact properties use app directory to src. Override Application class The directories name app is hardcoded into the core Application class, so it has to be overridden. Create a new file Application.php. I prefer to keep
    0 码力 | 216 页 | 1.58 MB | 1 年前
    3
  • pdf文档 Laravel 5.6 中文文档

    public (应 用根目录下的 public 目录)目录下生成一个软连接 storage 指向这个目录。你可以通过 php artisan storage:link 命令生成这个软链接。 Tests 目录 tests 目录包含自动化测试文件,其中默认已经提供了一个开箱即用的 PHPUnit 示例;每一个测试类都要以 Test 开头,你可以通过 phpunit 或 php vendor/bin/phpunit 我们可以这样编写测试来验证 Cache::get 方法以我们期望的方式被调用: use Illuminate\Support\Facades\Cache; /** * A basic functional test example. * * @return void */ public function testBasicExample() { Cache::shouldReceive('get') 方法,因此,尽管我们使用这个辅助函数,我们还是可以编写如下测试来验证这个方法以我 们期望的方式和参数被调用: use Illuminate\Support\Facades\Cache; /** * A basic functional test example. * * @return void */ public function testBasicExample() { Cache::shouldReceive('get')
    0 码力 | 377 页 | 14.56 MB | 1 年前
    3
  • pdf文档 Laravel 5.3 中文文档

    访问的目的,你还需要在 public 目录下生成一个软连接 storage 指向这个目录。你可以通过 php artisan storage:link 命令生成这个软链接。 Tests 目录 tests 目录包含自动化测试,其中已经提供了一个开箱即用的 PHPUnit 示例;每一个测试类都要 以 Test 开头,你可以通过 phpunit 或 php vendor/bin/phpunit 我们可以这样编写测试来验证 Cache::get 方法以我们期望的方式被调用: use Illuminate\Support\Facades\Cache; /** * A basic functional test example. * * @return void */ public function testBasicExample() { Cach Laravel 学院(LaravelAcademy.org)提供 Laravel 学院致力于提供优质 Laravel 中文学习资源 88 /** * A basic functional test example. * * @return void */ public function testBasicExample() { Cach
    0 码力 | 691 页 | 9.37 MB | 1 年前
    3
  • pdf文档 Laravel 6.0 中文文档

    (应用根目录下的 public 目录)目录下生成一个软连 接 storage 指向这个目录。你可以通过 php artisan storage:link 命令生成这个软链接。 测试目录 tests 目录包含自动化测试文件,其中默认已经提供了一个开箱即用 的 PHPUnit 示例;每一个测试类都要以 Test 开头,你可以通 过 phpunit 或 php vendor/bin/phpunit 我们可以这样编写测试来验证 Cache::get 方法以我们期望的方式 被调用: use Illuminate\Support\Facades\Cache; /** * A basic functional test example. * * @return void */ public function testBasicExample() { Cache::shouldReceive('get') Laravel 中文学习资源:https://xueyuanjun.com 142 use Illuminate\Support\Facades\Cache; /** * A basic functional test example. * * @return void */ public function testBasicExample() { Cache::shouldReceive('get')
    0 码力 | 1442 页 | 14.66 MB | 1 年前
    3
  • pdf文档 Laravel 3.2 Documentation

    .......... 74 Running Tests ............................................................................................................. 74 Calling Controllers From Tests ........................ .............................................................................. 120 x Unit Tests (More Information) .............................................................................. date, too!  Unit-Testing is an important part of Laravel. Laravel itself sports hundreds of tests to help ensure that new changes don't unexpectedly break anything. This is one of the reasons why
    0 码力 | 139 页 | 1.13 MB | 1 年前
    3
  • pdf文档 Laravel 5.0 Documentation

    4.1.26 From <= 4.1.25 v. Upgrading To 4.1 From 4.0 iii. Contribution Guide i. Bug Reports ii. Core Development Discussion iii. Which Branch? iv. Security Vulnerabilities v. Coding Style 3. Setup Introduction ii. Creating Commands iii. Dispatching Commands iv. Queued Commands v. Command Pipeline vi. Core Extension i. Managers & Factories ii. Cache iii. Session iv. Authentication v. IoC Based Extension Extending Blade xxi. Unit Testing i. Introduction ii. Defining & Running Tests iii. Test Environment iv. Calling Routes From Tests v. Mocking Facades vi. Framework Assertions vii. Helper Methods viii
    0 码力 | 242 页 | 1.44 MB | 1 年前
    3
  • pdf文档 Laravel 5.2 中文文档

    目录包含 应用的日志文件; 本文档由 Laravel 学院(LaravelAcademy.org)提供 Laravel 学院致力于提供优质 Laravel 中文学习资源 71 tests 目录包含自动化测试,其中已经提供了一个开箱即用的 PHPUnit 示例; vendor 目录包含 Composer 依赖; 3、App 目录 应用的核心代码位于 app 目录下,默认情况下,该目录位于命名空间 植根于测试,实际上,内置使用 PHPUnit 对测试提供支持是即开即用的,并且 phpunit.xml 文件已经为应用设置好了。框架还提供了方便的辅助方法允许你对应用进行 富有表现力的测试。 tests 目录中提供了一个 ExampleTest.php 文件,安装完新的 Laravel 应用后,只需简单 在命令行运行 phpunit 来运行测试。 1.1 测试环境 运行测试的时候,Laravel 文 件中配置。 1.2 定义&运行测试 要创建一个新的测试用例,可以使用如下 Artisan 命令: php artisan make:test UserTest 该命令将会在 tests 目录下生成一个新的 UserTest 类。然后你可以使用 PHPUnit 定义测 试方法。要运行测试,简单从终端执行 phpunit 命令即可:
    0 码力 | 377 页 | 4.56 MB | 1 年前
    3
  • pdf文档 《Slides Dev Web》02. Introduction aux frameworks PHP

    réutilisables (faible couplage) • Règles de codage et d’architecture • Code sûr et efficace • Facilite les tests et la gestion de projets complexes • Utilisation de Design Patterns dès que possible • Comportement contrôleurs Smart URL & SEO Autres Services • Migrations : Evolutions de la strucutre de la BDD • Tests • Génération, validation et traitement de formulaires • Authenfication, Sessions, Permissions, Roles 27https://httpd.apache.org/docs/current/mod/mod_rewrite.html 28http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files 18 // 04-routes/index.php $uri = $_SERVER['REQUEST_URI'], $matches = [];
    0 码力 | 24 页 | 1.03 MB | 1 年前
    3
  • pdf文档 The Laravel Handbook

    clean up the routes a bit, add a more beautiful design. I have this list of views we used in our tests: 37 Remove test.blade.php and welcome.blade.php . In routes/web.php we’re going to show the fan of investing some money and saving time instead. Forge in particular is official, made by the core team of Laravel, lots and lots of people use it (they claim over 500,000 sites are powered by Forge)
    0 码力 | 111 页 | 14.25 MB | 1 年前
    3
  • pdf文档 《Slides Dev Web》 03. Laravel

    Record) • Migrations • Moteur de templates (Blade) • Pagination • Authentification, sessions • Mail • Tests unitaires • Extensible par packages8 (bundles) via composer Le Front Controller Architecture MVC avec StyleCI11 • Editeurs et IDE : PhpStorm, glitch12, brackets, VS Code, repl.it13, Gitpod14… • Tests : unitaires, Jmeter, Selenium, … • Outils : devtools Chrome ou FF, Emmet15, git • Doc 8http://packalyst
    0 码力 | 8 页 | 224.34 KB | 1 年前
    3
共 14 条
  • 1
  • 2
前往
页
相关搜索词
LearningLaravel5.6中文文档5.36.03.2Documentation5.05.2SlidesDevWeb02IntroductionauxframeworksPHPTheHandbook03
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩