1
1
New feature release:
2
2
3
- * add --scanoptions to the make command, allows configuring several things
4
- when generating package.xml. This option should specify the location of
5
- a php script that specifies 3 overrides to the default values for
6
- baseinstalldirs, for directory->role mapping, and for pathnames in package.xml
7
-
8
- For example:
9
- <?php
10
- // use "htdocs" as our web directory in the repository, instead of www
11
- $scanoptions['baseinstalldirs'] = array('htdocs' => '/');
12
- $scanoptions['rolemap'] = array('htdocs' => 'www');
13
- $scanoptions['mappath'] = array('htdocs' => 'www');
3
+ * Add --scanoptions to the make command [cellog]
4
+ This allows configuring several things when generating package.xml.
5
+ This option should specify the location of a php script that specifies 3
6
+ overrides to the default values for baseinstalldirs, for directory->role
7
+ mapping, and for pathnames in package.xml
8
+
9
+ For example:
10
+ <?php
11
+ // use "htdocs" as our web directory in the repository, instead of www
12
+ $scanoptions['baseinstalldirs'] = array('htdocs' => '/');
13
+ $scanoptions['rolemap'] = array('htdocs' => 'www');
14
+ $scanoptions['mappath'] = array('htdocs' => 'www');
15
+
16
+ // ignore a library directory we install using pyrus,
17
+ // and a specific file
18
+ $scanoptions['ignore'] = array('lib' => 'dir', 'some/file.txt' => 'file');
19
+ ?>
14
20
15
- // ignore a library directory we install using pyrus,
16
- // and a specific file
17
- $scanoptions['ignore'] = array('lib' => 'dir', 'some/file.txt' => 'file');
18
- ?>
19
-
20
- By default, the make command looks for scanoptions.php in the same directory
21
- as the package.xml
21
+ By default, the make command looks for scanoptions.php in the same directory
22
+ as the package.xml
23
+ * Update source layout so files can be autoloaded from checkout [saltybeagle]
24
+ * Add code coverage reporter to the www directory [saltybeagle]
25
+
26
+ Bugs fixed:
27
+
28
+ * Increase minimum PHP dependency to 5.3.1RC1 [saltybeagle]
29
+ * Prevent fatal errors when only a package2.xml is present, ala XML_RPC2 [clockwerx]
30
+ * Allow src/PEAR2 base directory for package layout [saltybeagle]
31
+ * Fix Bug #18123 Exception when using pyrus.phar make -n. [saltybeagle]
32
+ * Correct inconsitency of docs directory name. [saltybeagle]
0 commit comments