Skip to content

Commit 2f5b0af

Browse files
author
Peter Hildenbrand
committed
added slides
added demos
1 parent 6c58fd0 commit 2f5b0af

File tree

148 files changed

+18774
-35
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+18774
-35
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/vendor
2+
/build
3+
/logs/*
4+
!/logs/.gitkeep
5+
/cache/*
6+
!/cache/.gitkeep
7+
/cache/di/*
8+
!/cache/di/.gitkeep
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Changelog
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Contribution guide
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Readme
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0"?>
2+
<project basedir="." default="security:check">
3+
<import file="vendor/bitexpert/phing-securitychecker/build.xml" />
4+
5+
<target name="sniff">
6+
<exec executable="./vendor/bin/phpcs"
7+
passthru="true"
8+
checkreturn="true">
9+
<arg value="--standard=PSR2"/>
10+
<arg path="${phing.dir}/src"/>
11+
<arg path="${phing.dir}/tests"/>
12+
</exec>
13+
</target>
14+
15+
<target name="lint">
16+
<exec executable="php"
17+
passthru="true"
18+
checkreturn="true">
19+
<arg value="-l"/>
20+
<arg path="${phing.dir}/src"/>
21+
</exec>
22+
23+
<exec executable="php"
24+
passthru="true"
25+
checkreturn="true">
26+
<arg value="-l"/>
27+
<arg path="${phing.dir}/tests"/>
28+
</exec>
29+
</target>
30+
31+
<target name="unit">
32+
<exec executable="./vendor/bin/phpunit"
33+
passthru="true"
34+
checkreturn="true">
35+
</exec>
36+
</target>
37+
</project>

demo-productive-di-advanced/cache/.gitkeep

Whitespace-only changes.

demo-productive-di-advanced/cache/di/.gitkeep

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0
2+
a:1:{i:0;O:41:"bitExpert\Disco\Annotations\Configuration":0:{}}

0 commit comments

Comments
 (0)